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
|
local env = require 'matcher.env'
local library = require 'matcher.library'
local DefaultSource = { start = 0, finish = 0 }
local mt = {}
mt.__index = mt
function mt:createLocal(key, source)
local loc = {
type = 'local',
key = key,
source = source or DefaultSource,
}
self.results.locals[#self.results.locals+1] = loc
self.scope.locals[key] = loc
return loc
end
function mt:createTable(source)
local tbl = {
type = 'table',
source = source or DefaultSource,
}
return tbl
end
function mt:setValue(var, value)
assert(value.type ~= 'list')
var.value = value
return value
end
function mt:getValue(var)
if not var.value then
var.value = self:createNil()
end
return var.value
end
function mt:createField(pValue, name, source)
local field = {
type = 'field',
key = name,
source = source or DefaultSource,
}
self.results.fields[#self.results.fields+1] = field
if not pValue.child then
pValue.child = {}
end
pValue.child[name] = field
return field
end
function mt:getField(pValue, name, source)
local field = (pValue.child and pValue.child[name])
or self:createField(pValue, name, source)
return field
end
function mt:createFunction(source)
local func = {
type = 'function',
source = source or DefaultSource,
}
return func
end
function mt:setFunctionReturn(index, value)
local func = self.func.func
if not func.returns then
func.returns = {
type = 'list',
}
end
func.returns[index] = value
end
function mt:setFunctionArg(func, index, value)
if not func.args then
func.args = {}
end
func.args[index] = value
end
function mt:getFunctionReturns(func)
if not func.returns then
func.returns = {
type = 'list',
[1] = self:createNil(),
}
end
return func.returns
end
function mt:createString(str, source)
return {
type = 'string',
source = source or DefaultSource,
value = str,
}
end
function mt:createBoolean(bool, source)
return {
type = 'boolean',
source = source or DefaultSource,
value = bool or false,
}
end
function mt:createNumber(num, source)
return {
type = 'number',
source = source or DefaultSource,
value = num or 0.0,
}
end
function mt:createInteger(int, source)
return {
type = 'integer',
source = source or DefaultSource,
value = int or 0,
}
end
function mt:createNil(source)
return {
type = 'nil',
source = source or DefaultSource,
}
end
function mt:setLib(obj, lib)
obj.lib = lib
local tp = lib.type
if not tp then
return
end
if tp == 'table' then
self:setValue(obj, self:createTable())
elseif tp == 'function' then
self:setValue(obj, self:createFunction()) -- TODO
elseif tp == 'string' then
self:setValue(obj, self:createString(lib.value))
elseif tp == 'boolean' then
self:setValue(obj, self:createBoolean(lib.value))
elseif tp == 'number' then
self:setValue(obj, self:createNumber(lib.value))
elseif tp == 'integer' then
self:setValue(obj, self:createInteger(lib.value))
end
end
function mt:call(func, args)
for i, arg in ipairs(args) do
self:setFunctionArg(func, i, self:getExp(arg))
end
return self:getFunctionReturns(func)
end
function mt:getName(name, source)
local var = self.scope.locals[name]
or self:getField(self.scope.locals._ENV, name, source)
return var
end
function mt:getSimple(simple)
local value = self:getExp(simple[1])
local field
for i = 2, #simple do
local obj = simple[i]
local tp = obj.type
if tp == 'call' then
-- 函数的返回值一定是list
value = self:call(value, obj)
if i < #simple then
value = value[1]
end
elseif obj.index then
if tp == 'name' then
local var = self:getVar(obj[1])
field = self:getField(value, self:getValue(var), obj)
elseif (tp == 'string' or tp == 'number' or tp == 'boolean') then
field = self:getField(value, obj[1], obj)
else
local eValue = self:getExp(obj)
field = self:getField(value, eValue, obj)
end
value = self:getValue(field)
else
if tp == 'name' then
field = self:getField(value, obj[1])
value = self:getValue(field)
elseif tp == ':' then
if field then
field.oo = true
end
end
end
end
return value, field
end
function mt:getBinary(exp)
local v1 = self:getExp(exp[1])
local v2 = self:getExp(exp[2])
local op = exp.op
-- TODO 搜索元方法
if op == 'or'
or op == 'and'
or op == '<='
or op == '>='
or op == '<'
or op == '>'
or op == '~='
or op == '=='
then
return self:createBoolean()
elseif op == '|'
or op == '~'
or op == '&'
or op == '<<'
or op == '>>'
or op == '//'
then
return self:createInteger()
elseif op == '..' then
return self:createString()
elseif op == '+'
or op == '-'
or op == '*'
or op == '/'
or op == '^'
or op == '%'
then
return self:craeteNumber()
end
return nil
end
function mt:getUnary(exp)
local v1 = self:getExp(exp[1])
local op = exp.op
-- TODO 搜索元方法
if op == 'not' then
return self:createBoolean()
elseif op == '#' then
return self:createInteger()
elseif op == '-' then
return self:createNumber()
elseif op == '~' then
return self:createInteger()
end
return nil
end
function mt:getDots()
return self.func.dots
end
function mt:getExp(exp)
local tp = exp.type
if tp == 'nil' then
return self:createNil(exp)
elseif tp == 'string' then
return self:createString(exp[1], exp)
elseif tp == 'boolean' then
return self:createBoolean(exp[1], exp)
elseif tp == 'number' then
return self:createNumber(exp[1], exp)
elseif tp == 'name' then
local var = self:getVar(exp[1], exp)
return self:getValue(var)
elseif tp == 'simple' then
return self:getSimple(exp)
elseif tp == 'binary' then
return self:getBinary(exp)
elseif tp == 'unary' then
return self:getUnary(exp)
elseif tp == '...' then
return self:getDots(exp)
end
return nil
end
function mt:doDo(action)
self.scope:push()
self:doActions(action)
self.scope:pop()
end
function mt:doReturn(action)
for i, exp in ipairs(action) do
local value = self:getExp(exp)
self:setFunctionReturn(i, value)
end
end
function mt:doAction(action)
local tp = action.type
if tp == 'do' then
self:doDo(action)
elseif tp == 'break' then
elseif tp == 'return' then
self:doReturn(action)
end
end
function mt:doActions(actions)
for _, action in ipairs(actions) do
self:doAction(action)
end
end
function mt:createEnvironment()
-- 整个文件是一个函数
self.func.func = self:createFunction()
-- 所有脚本都有个隐藏的上值`_ENV`
local parent = self:createLocal('_ENV')
local pValue = self:setValue(parent, self:createTable())
-- 设置全局变量
for name, info in pairs(library.global) do
local field = self:createField(pValue, name)
if info.lib then
self:setLib(field, info.lib)
end
if info.child then
local fValue = self:getValue(field)
for fname, flib in pairs(info.child) do
local ffield = self:createField(fValue, fname)
self:setLib(ffield, flib)
end
end
end
end
local function compile(ast)
local vm = setmetatable({
scope = env {
locals = {},
},
func = env {
labels = {},
},
results = {
locals = {},
fields = {},
labels = {},
}
}, mt)
-- 创建初始环境
vm:createEnvironment()
-- 执行代码
vm:doActions(ast)
return vm.results
end
return function (ast)
if not ast then
return nil
end
local suc, res = xpcall(compile, log.error, ast)
if not suc then
return nil
end
return res
end
|