-
Notifications
You must be signed in to change notification settings - Fork 0
/
vm.go
379 lines (345 loc) · 9.62 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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
package main
import (
"bytes"
"fmt"
"slices"
)
// type Opcode byte
// type BinaryOpcode byte
// TODO: don't want to be casting `byte(opcode)` all the time
const (
OpPop byte = iota
OpBinary
OpNot
OpJumpIfFalse
OpJumpForward
OpJumpBack
OpInlineNumber
OpLoadConstant
OpReadVariable
OpSetVariable
OpInstantiate
OpCallBuiltin
OpCallFunction
OpCallVariadicFunction
OpFieldAccess
OpSetField
OpDuplicate
InvalidOp
)
const (
MaxBlockSize = 60_000
MaxConstants = 250
)
const (
OpBinaryPlus byte = iota
OpBinarySubtract
OpBinaryMultiply
OpBinaryDivide
OpBinaryRemainder
OpBinaryEqual
OpBinaryGreaterThan
OpBinaryLessThan
OpBinaryBinaryOr
OpBinaryBinaryXor
OpBinaryBinaryAnd
OpBinaryConcat
)
type VmType struct {
Name string
Fields []string
FieldMap map[string]int
}
type VmInstance struct {
vmType *VmType
values []any
}
func (instance *VmInstance) print(out *bytes.Buffer) {
out.WriteString(instance.vmType.Name)
out.WriteRune('{')
for i := range len(instance.values) {
fieldName := instance.vmType.Fields[i]
fieldValue := instance.values[i]
if i != 0 {
out.WriteRune(',')
}
out.WriteString(fieldName)
out.WriteRune('=')
writeValue(fieldValue, out)
}
out.WriteRune('}')
}
type VmFunction struct {
params []string
ops []byte
variableDefinitions []string
hasOutVar bool
}
type Vm struct {
ops []byte
constants []any
variableDefinitions []string
variables []any
functions map[string]VmFunction
types map[string]VmType
}
const maxStack = 50
func execute(ops []byte, constants []any, variableDefinitions []string, functions map[string]VmFunction, types map[string]VmType) error {
variables := make([]any, len(variableDefinitions))
vm := &Vm{
ops: ops,
constants: constants,
functions: functions,
types: types,
variableDefinitions: variableDefinitions,
variables: variables,
}
stack := make([]any, maxStack)
err := vm.execute(stack)
return err
}
func (vm *Vm) execute(stack []any) error {
constants, ops, functions, types := vm.constants, vm.ops, vm.functions, vm.types
ip := 0
readOpByte := func() byte {
op := ops[ip]
ip++
return op
}
getConstant := func(index int) (string, error) {
constant := constants[index]
constantString, ok := constant.(string)
if !ok {
return "", fmt.Errorf("expected constant %d to be a string, but was '%v' at %d", index, constant, ip)
}
return constantString, nil
}
readConstantString := func() (string, error) {
return getConstant(int(readOpByte()))
}
stackNext := 0
popStack := func() any {
stackNext -= 1
return stack[stackNext]
}
pushStack := func(v any) {
if stackNext == maxStack {
panic(fmt.Sprintf("stack overflow: attempting to push '%v' onto the stack with maximum size %d", v, maxStack))
}
stack[stackNext] = v
stackNext += 1
}
for ip < len(ops) {
instruction := readOpByte()
switch instruction {
case OpPop:
_ = popStack()
case OpBinary:
binop := readOpByte()
right := popStack()
left := popStack()
var result any
var err error
switch binop {
case OpBinaryPlus:
result, err = intBinaryOp(left, right, "+", func(l int, r int) int { return l + r })
case OpBinarySubtract:
result, err = intBinaryOp(left, right, "-", func(l int, r int) int { return l - r })
case OpBinaryMultiply:
result, err = intBinaryOp(left, right, "*", func(l int, r int) int { return l * r })
case OpBinaryDivide:
result, err = intBinaryOp(left, right, "/", func(l int, r int) int { return l / r })
case OpBinaryRemainder:
result, err = intBinaryOp(left, right, "%", func(l int, r int) int { return l % r })
case OpBinaryBinaryAnd:
result, err = intBinaryOp(left, right, "%", func(l int, r int) int { return l & r })
case OpBinaryBinaryOr:
result, err = intBinaryOp(left, right, "%", func(l int, r int) int { return l | r })
case OpBinaryBinaryXor:
result, err = intBinaryOp(left, right, "%", func(l int, r int) int { return l ^ r })
case OpBinaryEqual:
result = boolToInt(isEqual(left, right))
case OpBinaryGreaterThan:
result, err = intBinaryOp(left, right, ">", func(l int, r int) int { return boolToInt(l > r) })
case OpBinaryLessThan:
result, err = intBinaryOp(left, right, "<", func(l int, r int) int { return boolToInt(l < r) })
case OpBinaryConcat:
result, err = stringConcat(left, right)
default:
return fmt.Errorf("unsupported binary operator %v at %d", binop, ip)
}
if err != nil {
return err
}
pushStack(result)
case OpNot:
v := popStack()
i, ok := v.(int)
if !ok {
return fmt.Errorf("operand of NOT operation must be int, but was '%v' at %d", v, ip)
}
pushStack(boolToInt(!intToBool(i)))
case OpJumpIfFalse:
b1 := int(readOpByte())
b2 := int(readOpByte())
jumpAmount := b1*256 + b2
v := popStack()
if !isWeirdlyTrue(v) {
ip += jumpAmount
}
case OpJumpForward:
b1 := int(readOpByte())
b2 := int(readOpByte())
jumpAmount := b1*256 + b2
ip += jumpAmount
case OpJumpBack:
b1 := int(readOpByte())
b2 := int(readOpByte())
jumpAmount := b1*256 + b2
ip -= jumpAmount
case OpInlineNumber:
v := int(readOpByte())
pushStack(v)
case OpLoadConstant:
index := int(readOpByte())
pushStack(constants[index])
case OpReadVariable:
index := int(readOpByte())
value := vm.variables[index]
if value == nil {
variableName := vm.variableDefinitions[index]
return fmt.Errorf("variable '%v' not defined at %d", variableName, ip)
}
pushStack(value)
case OpSetVariable:
index := int(readOpByte())
vm.variables[index] = popStack()
case OpInstantiate:
typeName, err := readConstantString()
if err != nil {
return err
}
vmType, found := types[typeName]
if !found {
return fmt.Errorf("type '%v' not found at %d", typeName, ip)
}
fieldValues := make([]any, len(vmType.Fields))
for i := range vmType.Fields {
fieldValues[i] = popStack()
}
slices.Reverse(fieldValues) // Arguments were pushed onto the stack in left-to-right order, so we read them right-to-left
instance := VmInstance{
vmType: &vmType,
values: fieldValues,
}
pushStack(&instance)
case OpCallBuiltin:
functionName, err := readConstantString()
if err != nil {
return err
}
builtin, found := builtins[functionName]
if !found {
return fmt.Errorf("builtin function '%v' not found at %d", functionName, ip)
}
arguments := make([]any, builtin.Arity)
for i := 0; i < builtin.Arity; i++ {
arguments[i] = popStack()
}
slices.Reverse(arguments) // Arguments were pushed onto the stack in left-to-right order, so we read them right-to-left
returnValue, err := builtin.VmFunc(arguments)
if err != nil {
return err
}
pushStack(returnValue)
case OpCallFunction:
functionName, err := readConstantString()
if err != nil {
return err
}
function := functions[functionName]
functionVariables := make([]any, len(function.variableDefinitions))
for i := len(function.params) - 1; i >= 0; i-- {
functionVariables[i] = popStack()
}
functionVm := &Vm{
ops: function.ops,
constants: constants,
functions: functions,
variables: functionVariables,
variableDefinitions: function.variableDefinitions,
types: types,
}
err = functionVm.execute(stack[stackNext:])
if err != nil {
return err
}
var outVar any = nil
if function.hasOutVar {
// E.g. if a function has 2 input parameters, and 1 output parameter, then the variable spot for the
// output parameter is right after the input parameters, i.e. in the 3rd spot, or index 2, which is the
// length of the params slice
outVar = functionVariables[len(function.params)]
}
pushStack(outVar)
case OpCallVariadicFunction:
functionName, err := readConstantString()
if err != nil {
return err
}
builtin, found := builtins[functionName]
if !found {
return fmt.Errorf("builtin function '%v' not found at %d", functionName, ip)
}
argumentCount := int(readOpByte())
arguments := make([]any, argumentCount)
for i := 0; i < argumentCount; i++ {
arguments[i] = popStack()
}
slices.Reverse(arguments) // Arguments were pushed onto the stack in left-to-right order, so we read them right-to-left
returnValue, err := builtin.VmFunc(arguments)
if err != nil {
return err
}
pushStack(returnValue)
case OpFieldAccess:
identifier, err := readConstantString()
if err != nil {
return err
}
target := popStack()
instance, ok := target.(*VmInstance)
if !ok {
return fmt.Errorf("left-hand operand of '.' must be a type instance but was '%v'", target)
}
index, found := instance.vmType.FieldMap[identifier]
if !found {
return fmt.Errorf("field '%v' not found on type '%v'", identifier, instance.vmType.Name)
}
pushStack(instance.values[index])
case OpSetField:
identifier, err := readConstantString()
if err != nil {
return err
}
value := popStack()
target := popStack()
instance, ok := target.(*VmInstance)
if !ok {
return fmt.Errorf("left-hand operand of '.' must be a type instance but was '%v'", target)
}
index, found := instance.vmType.FieldMap[identifier]
if !found {
return fmt.Errorf("field '%v' not found on type '%v'", identifier, instance.vmType.Name)
}
instance.values[index] = value
case OpDuplicate:
v := popStack()
pushStack(v)
pushStack(v)
default:
return fmt.Errorf("unknown instruction %v at %d", instruction, ip)
}
}
return nil
}