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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
|
---@class vm
local vm = require 'vm.vm'
local guide = require 'parser.guide'
---@class vm.runner-bak
---@field loc parser.object
---@field mainBlock parser.object
---@field blocks table<parser.object, true>
---@field steps vm.runner.step[]
local mt = {}
mt.__index = mt
mt.index = 1
---@class parser.object
---@field _casts parser.object[]
---@class vm.runner.step
---@field type 'truthy' | 'falsy' | 'as' | 'add' | 'remove' | 'object' | 'save' | 'push' | 'merge' | 'cast'
---@field pos integer
---@field order? integer
---@field node? vm.node
---@field object? parser.object
---@field name? string
---@field cast? parser.object
---@field tag? string
---@field copy? boolean
---@field new? boolean
---@field ref1? vm.runner.step
---@field ref2? vm.runner.step
---@param filter parser.object
---@param outStep vm.runner.step
---@param blockStep vm.runner.step
function mt:_compileNarrowByFilter(filter, outStep, blockStep)
if not filter then
return
end
if filter.type == 'paren' then
if filter.exp then
self:_compileNarrowByFilter(filter.exp, outStep, blockStep)
end
return
end
if filter.type == 'unary' then
if not filter.op
or not filter[1] then
return
end
if filter.op.type == 'not' then
local exp = filter[1]
if exp.type == 'getlocal' and exp.node == self.loc then
self.steps[#self.steps+1] = {
type = 'falsy',
pos = filter.finish,
new = true,
}
self.steps[#self.steps+1] = {
type = 'truthy',
pos = filter.finish,
ref1 = outStep,
}
end
end
elseif filter.type == 'binary' then
if not filter.op
or not filter[1]
or not filter[2] then
return
end
if filter.op.type == 'and' then
local dummyStep = {
type = 'save',
copy = true,
ref1 = outStep,
pos = filter.start - 1,
}
self.steps[#self.steps+1] = dummyStep
self:_compileNarrowByFilter(filter[1], dummyStep, blockStep)
self:_compileNarrowByFilter(filter[2], dummyStep, blockStep)
end
if filter.op.type == 'or' then
self:_compileNarrowByFilter(filter[1], outStep, blockStep)
local dummyStep = {
type = 'push',
copy = true,
ref1 = outStep,
pos = filter.op.finish,
}
self.steps[#self.steps+1] = dummyStep
self:_compileNarrowByFilter(filter[2], outStep, dummyStep)
self.steps[#self.steps+1] = {
type = 'push',
tag = 'or reset',
ref1 = blockStep,
pos = filter.finish,
}
end
if filter.op.type == '=='
or filter.op.type == '~=' then
local loc, exp
for i = 1, 2 do
loc = filter[i]
if loc.type == 'getlocal' and loc.node == self.loc then
exp = filter[i % 2 + 1]
break
end
end
if not loc or not exp then
return
end
if guide.isLiteral(exp) then
if filter.op.type == '==' then
self.steps[#self.steps+1] = {
type = 'remove',
name = exp.type,
pos = filter.finish,
ref1 = outStep,
}
self.steps[#self.steps+1] = {
type = 'as',
name = exp.type,
pos = filter.finish,
new = true,
}
end
if filter.op.type == '~=' then
self.steps[#self.steps+1] = {
type = 'as',
name = exp.type,
pos = filter.finish,
ref1 = outStep,
}
self.steps[#self.steps+1] = {
type = 'remove',
name = exp.type,
pos = filter.finish,
new = true,
}
end
end
end
else
if filter.type == 'getlocal' and filter.node == self.loc then
self.steps[#self.steps+1] = {
type = 'truthy',
pos = filter.finish,
new = true,
}
self.steps[#self.steps+1] = {
type = 'falsy',
pos = filter.finish,
ref1 = outStep,
}
end
end
end
---@param block parser.object
function mt:_compileBlock(block)
if self.blocks[block] then
return
end
self.blocks[block] = true
if block == self.mainBlock then
return
end
local parentBlock = guide.getParentBlock(block)
self:_compileBlock(parentBlock)
if block.type == 'if' then
---@type vm.runner.step[]
local finals = {}
for i, childBlock in ipairs(block) do
local blockStep = {
type = 'save',
tag = 'block',
copy = true,
pos = childBlock.start,
}
local outStep = {
type = 'save',
tag = 'out',
copy = true,
pos = childBlock.start,
}
self.steps[#self.steps+1] = blockStep
self.steps[#self.steps+1] = outStep
self.steps[#self.steps+1] = {
type = 'push',
ref1 = blockStep,
pos = childBlock.start,
}
self:_compileNarrowByFilter(childBlock.filter, outStep, blockStep)
if not childBlock.hasReturn
and not childBlock.hasGoTo
and not childBlock.hasBreak then
local finalStep = {
type = 'save',
pos = childBlock.finish,
tag = 'final #' .. i,
}
finals[#finals+1] = finalStep
self.steps[#self.steps+1] = finalStep
end
self.steps[#self.steps+1] = {
type = 'push',
tag = 'reset child',
ref1 = outStep,
pos = childBlock.finish,
}
end
self.steps[#self.steps+1] = {
type = 'push',
tag = 'reset if',
pos = block.finish,
copy = true,
}
for _, final in ipairs(finals) do
self.steps[#self.steps+1] = {
type = 'merge',
ref2 = final,
pos = block.finish,
}
end
end
if block.type == 'function'
or block.type == 'while'
or block.type == 'loop'
or block.type == 'in'
or block.type == 'repeat'
or block.type == 'for' then
local savePoint = {
type = 'save',
copy = true,
pos = block.start,
}
self.steps[#self.steps+1] = {
type = 'push',
copy = true,
pos = block.start,
}
self.steps[#self.steps+1] = savePoint
self.steps[#self.steps+1] = {
type = 'push',
pos = block.finish,
ref1 = savePoint,
}
end
end
---@return parser.object[]
function mt:_getCasts()
local root = guide.getRoot(self.loc)
if not root._casts then
root._casts = {}
local docs = root.docs
for _, doc in ipairs(docs) do
if doc.type == 'doc.cast' and doc.loc then
root._casts[#root._casts+1] = doc
end
end
end
return root._casts
end
function mt:_preCompile()
local startPos = self.loc.start
local finishPos = 0
for _, ref in ipairs(self.loc.ref) do
self.steps[#self.steps+1] = {
type = 'object',
object = ref,
pos = ref.range or ref.start,
}
if ref.start > finishPos then
finishPos = ref.start
end
local block = guide.getParentBlock(ref)
self:_compileBlock(block)
end
for i, step in ipairs(self.steps) do
if step.type ~= 'object' then
step.order = i
end
end
local casts = self:_getCasts()
for _, cast in ipairs(casts) do
if cast.loc[1] == self.loc[1]
and cast.start > startPos
and cast.finish < finishPos
and guide.getLocal(self.loc, self.loc[1], cast.start) == self.loc then
self.steps[#self.steps+1] = {
type = 'cast',
cast = cast,
pos = cast.start,
}
end
end
table.sort(self.steps, function (a, b)
if a.pos == b.pos then
return (a.order or 0) < (b.order or 0)
else
return a.pos < b.pos
end
end)
end
---@param loc parser.object
---@param node vm.node
---@return vm.node
local function checkAssert(loc, node)
local parent = loc.parent
if parent.type == 'binary' then
if parent.op and (parent.op.type == '~=' or parent.op.type == '==') then
local exp
for i = 1, 2 do
if parent[i] == loc then
exp = parent[i % 2 + 1]
end
end
if exp and guide.isLiteral(exp) then
local callargs = parent.parent
if callargs.type == 'callargs'
and callargs.parent.node.special == 'assert'
and callargs[1] == parent then
if parent.op.type == '~=' then
node:remove(exp.type)
end
if parent.op.type == '==' then
node = vm.compileNode(exp)
end
end
end
end
end
if parent.type == 'callargs'
and parent.parent.node.special == 'assert'
and parent[1] == loc then
node:setTruthy()
end
return node
end
---@param callback fun(src: parser.object, node: vm.node)
function mt:launch(callback)
local topNode = vm.getNode(self.loc):copy()
for _, step in ipairs(self.steps) do
local node = step.ref1 and step.ref1.node or topNode
if step.type == 'truthy' then
if step.new then
node = node:copy()
topNode = node
end
node:setTruthy()
elseif step.type == 'falsy' then
if step.new then
node = node:copy()
topNode = node
end
node:setFalsy()
elseif step.type == 'as' then
if step.new then
topNode = vm.createNode(vm.getGlobal('type', step.name))
else
node:clear()
node:merge(vm.getGlobal('type', step.name))
end
elseif step.type == 'add' then
if step.new then
node = node:copy()
topNode = node
end
node:merge(vm.getGlobal('type', step.name))
elseif step.type == 'remove' then
if step.new then
node = node:copy()
topNode = node
end
node:remove(step.name)
elseif step.type == 'object' then
topNode = callback(step.object, node) or node
if step.object.type == 'getlocal' then
topNode = checkAssert(step.object, node)
end
elseif step.type == 'save' then
if step.copy then
node = node:copy()
end
step.node = node
elseif step.type == 'push' then
if step.copy then
node = node:copy()
end
topNode = node
elseif step.type == 'merge' then
node:merge(step.ref2.node)
elseif step.type == 'cast' then
topNode = node:copy()
for _, cast in ipairs(step.cast.casts) do
if cast.mode == '+' then
if cast.optional then
topNode:addOptional()
end
if cast.extends then
topNode:merge(vm.compileNode(cast.extends))
end
elseif cast.mode == '-' then
if cast.optional then
topNode:removeOptional()
end
if cast.extends then
topNode:removeNode(vm.compileNode(cast.extends))
end
else
if cast.extends then
topNode:clear()
topNode:merge(vm.compileNode(cast.extends))
end
end
end
end
end
end
---@param loc parser.object
---@return vm.runner
function vm.launchRunner(loc)
local self = setmetatable({
loc = loc,
mainBlock = guide.getParentBlock(loc),
blocks = {},
steps = {},
}, mt)
self:_preCompile()
return self
end
|