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
|
---@class vm
local vm = require 'vm.vm'
local util = require 'utility'
local guide = require 'parser.guide'
local config = require 'config'
vm.UNARY_OP = {
'unm',
'bnot',
'len',
}
vm.BINARY_OP = {
'add',
'sub',
'mul',
'div',
'mod',
'pow',
'idiv',
'band',
'bor',
'bxor',
'shl',
'shr',
'concat',
}
vm.OTHER_OP = {
'call',
}
local unaryMap = {
['-'] = 'unm',
['~'] = 'bnot',
['#'] = 'len',
}
local binaryMap = {
['+'] = 'add',
['-'] = 'sub',
['*'] = 'mul',
['/'] = 'div',
['%'] = 'mod',
['^'] = 'pow',
['//'] = 'idiv',
['&'] = 'band',
['|'] = 'bor',
['~'] = 'bxor',
['<<'] = 'shl',
['>>'] = 'shr',
['..'] = 'concat',
}
local otherMap = {
['()'] = 'call',
}
vm.OP_UNARY_MAP = util.revertMap(unaryMap)
vm.OP_BINARY_MAP = util.revertMap(binaryMap)
vm.OP_OTHER_MAP = util.revertMap(otherMap)
---@param operators parser.object[]
---@param op string
---@param value? parser.object
---@param result? vm.node
---@return vm.node?
local function checkOperators(operators, op, value, result)
for _, operator in ipairs(operators) do
if operator.op[1] ~= op
or not operator.extends then
goto CONTINUE
end
if value and operator.exp then
local valueNode = vm.compileNode(value)
local expNode = vm.compileNode(operator.exp)
local uri = guide.getUri(operator)
if not vm.isSubType(uri, valueNode, expNode) then
goto CONTINUE
end
end
if not result then
result = vm.createNode()
end
result:merge(vm.compileNode(operator.extends))
::CONTINUE::
end
return result
end
---@param op string
---@param exp parser.object
---@param value? parser.object
---@return vm.node?
function vm.runOperator(op, exp, value)
local uri = guide.getUri(exp)
local node = vm.compileNode(exp)
local result
for c in node:eachObject() do
if c.type == 'string'
or c.type == 'doc.type.string' then
c = vm.declareGlobal('type', 'string')
end
if c.type == 'global' and c.cate == 'type' then
---@cast c vm.global
for _, set in ipairs(c:getSets(uri)) do
if set.operators and #set.operators > 0 then
result = checkOperators(set.operators, op, value, result)
end
end
end
end
return result
end
vm.unarySwich = util.switch()
: case 'not'
: call(function (source)
local result = vm.testCondition(source[1])
if result == nil then
vm.setNode(source, vm.declareGlobal('type', 'boolean'))
else
vm.setNode(source, {
type = 'boolean',
start = source.start,
finish = source.finish,
parent = source,
[1] = not result,
})
end
end)
: case '#'
: call(function (source)
local node = vm.runOperator('len', source[1])
vm.setNode(source, node or vm.declareGlobal('type', 'integer'))
end)
: case '-'
: call(function (source)
local v = vm.getNumber(source[1])
if v == nil then
local uri = guide.getUri(source)
local infer = vm.getInfer(source[1])
if infer:hasType(uri, 'integer') then
vm.setNode(source, vm.declareGlobal('type', 'integer'))
elseif infer:hasType(uri, 'number') then
vm.setNode(source, vm.declareGlobal('type', 'number'))
else
local node = vm.runOperator('unm', source[1])
vm.setNode(source, node or vm.declareGlobal('type', 'number'))
end
else
vm.setNode(source, {
type = 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = -v,
})
end
end)
: case '~'
: call(function (source)
local v = vm.getInteger(source[1])
if v == nil then
local node = vm.runOperator('bnot', source[1])
vm.setNode(source, node or vm.declareGlobal('type', 'integer'))
else
vm.setNode(source, {
type = 'integer',
start = source.start,
finish = source.finish,
parent = source,
[1] = ~v,
})
end
end)
vm.binarySwitch = util.switch()
: case 'and'
: call(function (source)
local node1 = vm.compileNode(source[1])
local node2 = vm.compileNode(source[2])
local r1 = vm.testCondition(source[1])
if r1 == true then
vm.setNode(source, node2)
elseif r1 == false then
vm.setNode(source, node1)
else
local node = node1:copy():setFalsy():merge(node2)
vm.setNode(source, node)
end
end)
: case 'or'
: call(function (source)
local node1 = vm.compileNode(source[1])
local node2 = vm.compileNode(source[2])
local r1 = vm.testCondition(source[1])
if r1 == true then
vm.setNode(source, node1)
elseif r1 == false then
vm.setNode(source, node2)
else
local node = node1:copy():setTruthy():merge(node2)
vm.setNode(source, node)
end
end)
: case '=='
: case '~='
: call(function (source)
local result = vm.equal(source[1], source[2])
if result == nil then
vm.setNode(source, vm.declareGlobal('type', 'boolean'))
else
if source.op.type == '~=' then
result = not result
end
vm.setNode(source, {
type = 'boolean',
start = source.start,
finish = source.finish,
parent = source,
[1] = result,
})
end
end)
: case '<<'
: case '>>'
: case '&'
: case '|'
: case '~'
: call(function (source)
local a = vm.getInteger(source[1])
local b = vm.getInteger(source[2])
local op = source.op.type
if a and b then
local result = op == '<<' and a << b
or op == '>>' and a >> b
or op == '&' and a & b
or op == '|' and a | b
or op == '~' and a ~ b
vm.setNode(source, {
type = 'integer',
start = source.start,
finish = source.finish,
parent = source,
[1] = result,
})
else
local node = vm.runOperator(binaryMap[op], source[1], source[2])
vm.setNode(source, node or vm.declareGlobal('type', 'integer'))
end
end)
: case '+'
: case '-'
: case '*'
: case '/'
: case '%'
: case '//'
: case '^'
: call(function (source)
local a = vm.getNumber(source[1])
local b = vm.getNumber(source[2])
local op = source.op.type
local zero = b == 0
and ( op == '%'
or op == '/'
or op == '//'
)
if a and b and not zero then
local result = op == '+' and a + b
or op == '-' and a - b
or op == '*' and a * b
or op == '/' and a / b
or op == '%' and a % b
or op == '//' and a // b
or op == '^' and a ^ b
vm.setNode(source, {
type = math.type(result) == 'integer' and 'integer' or 'number',
start = source.start,
finish = source.finish,
parent = source,
[1] = result,
})
else
local node = vm.runOperator(binaryMap[op], source[1], source[2])
if node then
vm.setNode(source, node)
return
end
if op == '+'
or op == '-'
or op == '*'
or op == '//'
or op == '%' then
local uri = guide.getUri(source)
local infer1 = vm.getInfer(source[1])
local infer2 = vm.getInfer(source[2])
if infer1:hasType(uri, 'integer')
or infer2:hasType(uri, 'integer') then
if not infer1:hasType(uri, 'number')
and not infer2:hasType(uri, 'number') then
vm.setNode(source, vm.declareGlobal('type', 'integer'))
return
end
end
end
vm.setNode(source, node or vm.declareGlobal('type', 'number'))
end
end)
: case '..'
: call(function (source)
local a = vm.getString(source[1])
or vm.getNumber(source[1])
local b = vm.getString(source[2])
or vm.getNumber(source[2])
if a and b then
if type(a) == 'number' or type(b) == 'number' then
local uri = guide.getUri(source)
local version = config.get(uri, 'Lua.runtime.version')
if math.tointeger(a) and math.type(a) == 'float' then
if version == 'Lua 5.3' or version == 'Lua 5.4' then
a = ('%.1f'):format(a)
else
a = ('%.0f'):format(a)
end
end
if math.tointeger(b) and math.type(b) == 'float' then
if version == 'Lua 5.3' or version == 'Lua 5.4' then
b = ('%.1f'):format(b)
else
b = ('%.0f'):format(b)
end
end
end
vm.setNode(source, {
type = 'string',
start = source.start,
finish = source.finish,
parent = source,
[1] = a .. b,
})
else
local node = vm.runOperator(binaryMap[source.op.type], source[1], source[2])
vm.setNode(source, node or vm.declareGlobal('type', 'string'))
end
end)
: case '>'
: case '<'
: case '>='
: case '<='
: call(function (source)
local a = vm.getNumber(source[1])
local b = vm.getNumber(source[2])
if a and b then
local op = source.op.type
local result = op == '>' and a > b
or op == '<' and a < b
or op == '>=' and a >= b
or op == '<=' and a <= b
vm.setNode(source, {
type = 'boolean',
start = source.start,
finish = source.finish,
parent = source,
[1] =result,
})
else
vm.setNode(source, vm.declareGlobal('type', 'boolean'))
end
end)
|