forked from expr-lang/expr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.go
382 lines (288 loc) · 6.66 KB
/
program.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
380
381
382
package vm
import (
"bytes"
"fmt"
"io"
"reflect"
"regexp"
"strings"
"text/tabwriter"
"github.com/expr-lang/expr/ast"
"github.com/expr-lang/expr/builtin"
"github.com/expr-lang/expr/file"
"github.com/expr-lang/expr/vm/runtime"
)
// Program represents a compiled expression.
type Program struct {
Bytecode []Opcode
Arguments []int
Constants []any
source file.Source
node ast.Node
locations []file.Location
variables int
functions []Function
debugInfo map[string]string
span *Span
}
// NewProgram returns a new Program. It's used by the compiler.
func NewProgram(
source file.Source,
node ast.Node,
locations []file.Location,
variables int,
constants []any,
bytecode []Opcode,
arguments []int,
functions []Function,
debugInfo map[string]string,
span *Span,
) *Program {
return &Program{
source: source,
node: node,
locations: locations,
variables: variables,
Constants: constants,
Bytecode: bytecode,
Arguments: arguments,
functions: functions,
debugInfo: debugInfo,
span: span,
}
}
// Source returns origin file.Source.
func (program *Program) Source() file.Source {
return program.source
}
// Node returns origin ast.Node.
func (program *Program) Node() ast.Node {
return program.node
}
// Locations returns a slice of bytecode's locations.
func (program *Program) Locations() []file.Location {
return program.locations
}
// Disassemble returns opcodes as a string.
func (program *Program) Disassemble() string {
var buf bytes.Buffer
w := tabwriter.NewWriter(&buf, 0, 0, 2, ' ', 0)
program.DisassembleWriter(w)
_ = w.Flush()
return buf.String()
}
// DisassembleWriter takes a writer and writes opcodes to it.
func (program *Program) DisassembleWriter(w io.Writer) {
ip := 0
for ip < len(program.Bytecode) {
pp := ip
op := program.Bytecode[ip]
arg := program.Arguments[ip]
ip += 1
code := func(label string) {
_, _ = fmt.Fprintf(w, "%v\t%v\n", pp, label)
}
jump := func(label string) {
_, _ = fmt.Fprintf(w, "%v\t%v\t<%v>\t(%v)\n", pp, label, arg, ip+arg)
}
jumpBack := func(label string) {
_, _ = fmt.Fprintf(w, "%v\t%v\t<%v>\t(%v)\n", pp, label, arg, ip-arg)
}
argument := func(label string) {
_, _ = fmt.Fprintf(w, "%v\t%v\t<%v>\n", pp, label, arg)
}
argumentWithInfo := func(label string, prefix string) {
_, _ = fmt.Fprintf(w, "%v\t%v\t<%v>\t%v\n", pp, label, arg, program.debugInfo[fmt.Sprintf("%s_%d", prefix, arg)])
}
constant := func(label string) {
var c any
if arg < len(program.Constants) {
c = program.Constants[arg]
} else {
c = "out of range"
}
if r, ok := c.(*regexp.Regexp); ok {
c = r.String()
}
if field, ok := c.(*runtime.Field); ok {
c = fmt.Sprintf("{%v %v}", strings.Join(field.Path, "."), field.Index)
}
if method, ok := c.(*runtime.Method); ok {
c = fmt.Sprintf("{%v %v}", method.Name, method.Index)
}
_, _ = fmt.Fprintf(w, "%v\t%v\t<%v>\t%v\n", pp, label, arg, c)
}
builtinArg := func(label string) {
_, _ = fmt.Fprintf(w, "%v\t%v\t<%v>\t%v\n", pp, label, arg, builtin.Builtins[arg].Name)
}
switch op {
case OpInvalid:
code("OpInvalid")
case OpPush:
constant("OpPush")
case OpInt:
argument("OpInt")
case OpPop:
code("OpPop")
case OpStore:
argumentWithInfo("OpStore", "var")
case OpLoadVar:
argumentWithInfo("OpLoadVar", "var")
case OpLoadConst:
constant("OpLoadConst")
case OpLoadField:
constant("OpLoadField")
case OpLoadFast:
constant("OpLoadFast")
case OpLoadMethod:
constant("OpLoadMethod")
case OpLoadFunc:
argumentWithInfo("OpLoadFunc", "func")
case OpLoadEnv:
code("OpLoadEnv")
case OpFetch:
code("OpFetch")
case OpFetchField:
constant("OpFetchField")
case OpMethod:
constant("OpMethod")
case OpTrue:
code("OpTrue")
case OpFalse:
code("OpFalse")
case OpNil:
code("OpNil")
case OpNegate:
code("OpNegate")
case OpNot:
code("OpNot")
case OpEqual:
code("OpEqual")
case OpEqualInt:
code("OpEqualInt")
case OpEqualString:
code("OpEqualString")
case OpJump:
jump("OpJump")
case OpJumpIfTrue:
jump("OpJumpIfTrue")
case OpJumpIfFalse:
jump("OpJumpIfFalse")
case OpJumpIfNil:
jump("OpJumpIfNil")
case OpJumpIfNotNil:
jump("OpJumpIfNotNil")
case OpJumpIfEnd:
jump("OpJumpIfEnd")
case OpJumpBackward:
jumpBack("OpJumpBackward")
case OpIn:
code("OpIn")
case OpLess:
code("OpLess")
case OpMore:
code("OpMore")
case OpLessOrEqual:
code("OpLessOrEqual")
case OpMoreOrEqual:
code("OpMoreOrEqual")
case OpAdd:
code("OpAdd")
case OpSubtract:
code("OpSubtract")
case OpMultiply:
code("OpMultiply")
case OpDivide:
code("OpDivide")
case OpModulo:
code("OpModulo")
case OpExponent:
code("OpExponent")
case OpRange:
code("OpRange")
case OpMatches:
code("OpMatches")
case OpMatchesConst:
constant("OpMatchesConst")
case OpContains:
code("OpContains")
case OpStartsWith:
code("OpStartsWith")
case OpEndsWith:
code("OpEndsWith")
case OpSlice:
code("OpSlice")
case OpCall:
argument("OpCall")
case OpCall0:
argumentWithInfo("OpCall0", "func")
case OpCall1:
argumentWithInfo("OpCall1", "func")
case OpCall2:
argumentWithInfo("OpCall2", "func")
case OpCall3:
argumentWithInfo("OpCall3", "func")
case OpCallN:
argument("OpCallN")
case OpCallFast:
argument("OpCallFast")
case OpCallSafe:
argument("OpCallSafe")
case OpCallTyped:
signature := reflect.TypeOf(FuncTypes[arg]).Elem().String()
_, _ = fmt.Fprintf(w, "%v\t%v\t<%v>\t%v\n", pp, "OpCallTyped", arg, signature)
case OpCallBuiltin1:
builtinArg("OpCallBuiltin1")
case OpArray:
code("OpArray")
case OpMap:
code("OpMap")
case OpLen:
code("OpLen")
case OpCast:
argument("OpCast")
case OpDeref:
code("OpDeref")
case OpIncrementIndex:
code("OpIncrementIndex")
case OpDecrementIndex:
code("OpDecrementIndex")
case OpIncrementCount:
code("OpIncrementCount")
case OpGetIndex:
code("OpGetIndex")
case OpGetCount:
code("OpGetCount")
case OpGetLen:
code("OpGetLen")
case OpGetAcc:
code("OpGetAcc")
case OpSetAcc:
code("OpSetAcc")
case OpSetIndex:
code("OpSetIndex")
case OpPointer:
code("OpPointer")
case OpThrow:
code("OpThrow")
case OpCreate:
argument("OpCreate")
case OpGroupBy:
code("OpGroupBy")
case OpSortBy:
code("OpSortBy")
case OpSort:
code("OpSort")
case OpProfileStart:
code("OpProfileStart")
case OpProfileEnd:
code("OpProfileEnd")
case OpBegin:
code("OpBegin")
case OpEnd:
code("OpEnd")
default:
_, _ = fmt.Fprintf(w, "%v\t%#x (unknown)\n", ip, op)
}
}
}