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
|
---@class vm
local vm = require 'vm.vm'
local guide = require 'parser.guide'
local globalMgr = require 'vm.global-manager'
---@class vm.runner
---@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 _hasSorted boolean
---@class vm.runner.step
---@field type 'truthy' | 'falsy' | 'as' | 'add' | 'remove' | 'object' | 'save' | 'load' | 'merge'
---@field pos integer
---@field order? integer
---@field node? vm.node
---@field object? parser.object
---@field name? string
---@field tag? string
---@field copy? 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 = 'truthy',
pos = filter.finish,
ref1 = outStep,
}
self.steps[#self.steps+1] = {
type = 'falsy',
copy = true,
pos = filter.finish,
ref1 = blockStep,
}
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
self:_compileNarrowByFilter(filter[1], outStep, blockStep)
self:_compileNarrowByFilter(filter[2], outStep, blockStep)
end
if filter.op.type == 'or' then
local dummyStep = {
type = 'load',
tag = 'dummy',
copy = true,
ref1 = outStep,
pos = filter.start - 1,
}
self.steps[#self.steps+1] = dummyStep
self:_compileNarrowByFilter(filter[1], outStep, dummyStep)
dummyStep = {
type = 'load',
tag = 'dummy',
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 = 'load',
tag = '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,
copy = true,
pos = filter.finish,
ref1 = blockStep,
}
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,
copy = true,
pos = filter.finish,
ref1 = blockStep,
}
end
end
end
else
if filter.type == 'getlocal' and filter.node == self.loc then
self.steps[#self.steps+1] = {
type = 'falsy',
pos = filter.finish,
ref1 = outStep,
}
self.steps[#self.steps+1] = {
type = 'truthy',
copy = true,
pos = filter.finish,
ref1 = blockStep,
}
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 _, childBlock in ipairs(block) do
local outStep = {
type = 'save',
tag = 'out',
copy = true,
pos = block.start,
}
self.steps[#self.steps+1] = outStep
local blockStep = {
type = 'load',
tag = 'block',
copy = true,
pos = childBlock.start,
}
self.steps[#self.steps+1] = blockStep
self:_compileNarrowByFilter(childBlock.filter, outStep, blockStep)
if not childBlock.returns then
finals[#finals+1] = blockStep
end
self.steps[#self.steps+1] = {
type = 'load',
tag = 'final',
ref1 = outStep,
pos = childBlock.finish,
}
end
for i, final in ipairs(finals) do
self.steps[#self.steps+1] = {
type = 'merge',
ref2 = final,
pos = block.finish,
}
end
end
if block.type == 'function' then
self.steps[#self.steps+1] = {
type = 'load',
pos = block.start,
}
local savePoint = {
type = 'save',
copy = true,
pos = block.start,
}
self.steps[#self.steps+1] = savePoint
self.steps[#self.steps+1] = {
type = 'load',
pos = block.finish,
ref1 = savePoint,
}
end
end
function mt:_preCompile()
for _, ref in ipairs(self.loc.ref) do
self.steps[#self.steps+1] = {
type = 'object',
object = ref,
pos = ref.range or ref.start,
}
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
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()
---@type vm.runner.step
local context
for _, step in ipairs(self.steps) do
local node = (step.ref1 and step.ref1.node)
or (context and context.node)
or topNode
if step.copy then
node = node:copy()
if context then
context.node = node
end
end
if step.type == 'truthy' then
node:setTruthy()
elseif step.type == 'falsy' then
node:setFalsy()
elseif step.type == 'as' then
topNode = vm.createNode(globalMgr.getGlobal('type', step.name))
if step.ref1 then
step.ref1.node = topNode
elseif context then
context.node = topNode
end
elseif step.type == 'add' then
node:merge(globalMgr.getGlobal('type', step.name))
elseif step.type == 'remove' then
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
if step.ref1 then
step.ref1.node = topNode
elseif context then
context.node = topNode
end
elseif step.type == 'save' then
step.node = node
elseif step.type == 'load' then
step.node = node
context = step
elseif step.type == 'merge' then
node:merge(step.ref2.node)
end
end
end
---@param loc parser.object
---@return vm.runner
function vm.createRunner(loc)
local self = setmetatable({
loc = loc,
mainBlock = guide.getParentBlock(loc),
blocks = {},
steps = {},
}, mt)
self:_preCompile()
return self
end
|