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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
|
local vm = require 'vm.vm'
local typeSort = {
['boolean'] = 1,
['string'] = 2,
['integer'] = 3,
['number'] = 4,
['table'] = 5,
['function'] = 6,
['nil'] = math.maxinteger,
}
NIL = setmetatable({'<nil>'}, { __tostring = function () return 'nil' end })
local function merge(t, b)
for i = 1, #b do
local o = b[i]
if not t[o] then
t[o] = true
t[#t+1] = o
end
end
return t
end
local function alloc(o)
return {
[1] = o,
[o] = true,
}
end
local function insert(t, o)
if not t[o] then
t[o] = true
t[#t+1] = o
end
return t
end
local function checkLiteral(source)
if source.type == 'string' then
return alloc {
type = 'string',
value = source[1],
source = source,
}
elseif source.type == 'nil' then
return alloc {
type = 'nil',
value = NIL,
source = source,
}
elseif source.type == 'boolean' then
return alloc {
type = 'boolean',
value = source[1],
source = source,
}
elseif source.type == 'number' then
if math.type(source[1]) == 'integer' then
return alloc {
type = 'integer',
value = source[1],
source = source,
}
else
return alloc {
type = 'number',
value = source[1],
source = source,
}
end
elseif source.type == 'table' then
return alloc {
type = 'table',
source = source,
}
elseif source.type == 'function' then
return alloc {
type = 'function',
source = source,
}
end
end
local function checkUnary(source)
if source.type ~= 'unary' then
return
end
local op = source.op
if op.type == 'not' then
local checkTrue = vm.checkTrue(source[1])
local value = nil
if checkTrue == true then
value = false
elseif checkTrue == false then
value = true
end
return alloc {
type = 'boolean',
value = value,
source = source,
}
elseif op.type == '#' then
return alloc {
type = 'integer',
source = source,
}
elseif op.type == '~' then
local l = vm.getLiteral(source[1], 'integer')
return alloc {
type = 'integer',
value = l and ~l or nil,
source = source,
}
elseif op.type == '-' then
local v = vm.getLiteral(source[1], 'integer')
if v then
return alloc {
type = 'integer',
value = - v,
source = source,
}
end
v = vm.getLiteral(source[1], 'number')
return alloc {
type = 'number',
value = v and -v or nil,
source = source,
}
end
end
local function checkBinary(source)
if source.type ~= 'binary' then
return
end
local op = source.op
if op.type == 'and' then
local isTrue = vm.checkTrue(source[1])
if isTrue == true then
return vm.getValue(source[2])
elseif isTrue == false then
return vm.getValue(source[1])
else
return merge(
vm.getValue(source[1]),
vm.getValue(source[2])
)
end
elseif op.type == 'or' then
local isTrue = vm.checkTrue(source[1])
if isTrue == true then
return vm.getValue(source[1])
elseif isTrue == false then
return vm.getValue(source[2])
else
return merge(
vm.getValue(source[1]),
vm.getValue(source[2])
)
end
elseif op.type == '==' then
local value = vm.isSameValue(source[1], source[2])
if value ~= nil then
return alloc {
type = 'boolean',
value = value,
source = source,
}
end
local isSame = vm.isSameRef(source[1], source[2])
if isSame == true then
value = true
else
value = nil
end
return alloc {
type = 'boolean',
value = value,
source = source,
}
elseif op.type == '~=' then
local value = vm.isSameValue(source[1], source[2])
if value ~= nil then
return alloc {
type = 'boolean',
value = not value,
source = source,
}
end
local isSame = vm.isSameRef(source[1], source[2])
if isSame == true then
value = false
else
value = nil
end
return alloc {
type = 'boolean',
value = value,
source = source,
}
elseif op.type == '<=' then
local v1 = vm.getLiteral(source[1], 'integer') or vm.getLiteral(source[1], 'number')
local v2 = vm.getLiteral(source[2], 'integer') or vm.getLiteral(source[2], 'number')
local v
if v1 and v2 then
v = v1 <= v2
end
return alloc {
type = 'boolean',
value = v,
source = source,
}
elseif op.type == '>=' then
local v1 = vm.getLiteral(source[1], 'integer') or vm.getLiteral(source[1], 'number')
local v2 = vm.getLiteral(source[2], 'integer') or vm.getLiteral(source[2], 'number')
local v
if v1 and v2 then
v = v1 >= v2
end
return alloc {
type = 'boolean',
value = v,
source = source,
}
elseif op.type == '<' then
local v1 = vm.getLiteral(source[1], 'integer') or vm.getLiteral(source[1], 'number')
local v2 = vm.getLiteral(source[2], 'integer') or vm.getLiteral(source[2], 'number')
local v
if v1 and v2 then
v = v1 < v2
end
return alloc {
type = 'boolean',
value = v,
source = source,
}
elseif op.type == '>' then
local v1 = vm.getLiteral(source[1], 'integer') or vm.getLiteral(source[1], 'number')
local v2 = vm.getLiteral(source[2], 'integer') or vm.getLiteral(source[2], 'number')
local v
if v1 and v2 then
v = v1 > v2
end
return alloc {
type = 'boolean',
value = v,
source = source,
}
elseif op.type == '|' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
local v
if v1 and v2 then
v = v1 | v2
end
return alloc {
type = 'integer',
value = v,
source = source,
}
elseif op.type == '~' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
local v
if v1 and v2 then
v = v1 ~ v2
end
return alloc {
type = 'integer',
value = v,
source = source,
}
elseif op.type == '&' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
local v
if v1 and v2 then
v = v1 & v2
end
return alloc {
type = 'integer',
value = v,
source = source,
}
elseif op.type == '<<' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
local v
if v1 and v2 then
v = v1 << v2
end
return alloc {
type = 'integer',
value = v,
source = source,
}
elseif op.type == '>>' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
local v
if v1 and v2 then
v = v1 >> v2
end
return alloc {
type = 'integer',
value = v,
source = source,
}
elseif op.type == '..' then
local v1 = vm.getLiteral(source[1], 'string')
local v2 = vm.getLiteral(source[2], 'string')
local v
if v1 and v2 then
v = v1 .. v2
end
return alloc {
type = 'string',
value = v,
source = source,
}
elseif op.type == '^' then
local v1 = vm.getLiteral(source[1], 'integer') or vm.getLiteral(source[1], 'number')
local v2 = vm.getLiteral(source[2], 'integer') or vm.getLiteral(source[2], 'number')
local v
if v1 and v2 then
v = v1 ^ v2
end
return alloc {
type = 'number',
value = v,
source = source,
}
elseif op.type == '/' then
local v1 = vm.getLiteral(source[1], 'integer') or vm.getLiteral(source[1], 'number')
local v2 = vm.getLiteral(source[2], 'integer') or vm.getLiteral(source[2], 'number')
local v
if v1 and v2 then
v = v1 > v2
end
return alloc {
type = 'number',
value = v,
source = source,
}
-- 其他数学运算根据2侧的值决定,当2侧的值均为整数时返回整数
elseif op.type == '+' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
if v1 and v2 then
return alloc {
type = 'integer',
value = v1 + v2,
source = source,
}
end
v1 = v1 or vm.getLiteral(source[1], 'number')
v2 = v2 or vm.getLiteral(source[1], 'number')
return alloc {
type = 'number',
value = (v1 and v2) and (v1 + v2) or nil,
source = source,
}
elseif op.type == '-' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
if v1 and v2 then
return alloc {
type = 'integer',
value = v1 - v2,
source = source,
}
end
v1 = v1 or vm.getLiteral(source[1], 'number')
v2 = v2 or vm.getLiteral(source[1], 'number')
return alloc {
type = 'number',
value = (v1 and v2) and (v1 - v2) or nil,
source = source,
}
elseif op.type == '*' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
if v1 and v2 then
return alloc {
type = 'integer',
value = v1 * v2,
source = source,
}
end
v1 = v1 or vm.getLiteral(source[1], 'number')
v2 = v2 or vm.getLiteral(source[1], 'number')
return alloc {
type = 'number',
value = (v1 and v2) and (v1 * v2) or nil,
source = source,
}
elseif op.type == '%' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
if v1 and v2 then
return alloc {
type = 'integer',
value = v1 % v2,
source = source,
}
end
v1 = v1 or vm.getLiteral(source[1], 'number')
v2 = v2 or vm.getLiteral(source[1], 'number')
return alloc {
type = 'number',
value = (v1 and v2) and (v1 % v2) or nil,
source = source,
}
elseif op.type == '//' then
local v1 = vm.getLiteral(source[1], 'integer')
local v2 = vm.getLiteral(source[2], 'integer')
if v1 and v2 then
return alloc {
type = 'integer',
value = v1 // v2,
source = source,
}
end
v1 = v1 or vm.getLiteral(source[1], 'number')
v2 = v2 or vm.getLiteral(source[1], 'number')
return alloc {
type = 'number',
value = (v1 and v2) and (v1 // v2) or nil,
source = source,
}
end
end
local function checkValue(source)
if source.value then
return vm.getValue(source.value)
end
if source.type == 'paren' then
return vm.getValue(source.exp)
end
end
local function inferByCall(results, source)
if not source.parent then
return
end
if source.parent.type ~= 'call' then
return
end
if source.parent.node == source then
insert(results, {
type = 'function',
source = source,
})
return
end
end
local function inferByGetTable(results, source)
local next = source.next
if not next then
return
end
if next.type == 'getfield'
or next.type == 'getindex'
or next.type == 'getmethod'
or next.type == 'setfield'
or next.type == 'setindex'
or next.type == 'setmethod' then
insert(results, {
type = 'table',
source = source,
})
end
end
local function checkDef(results, source)
vm.eachDef(source, function (info)
local src = info.source
local tp = vm.getValue(src)
if tp then
merge(results, tp)
end
end)
end
local function checkLibrary(source)
local lib = vm.getLibrary(source)
if not lib then
return nil
end
return alloc {
type = lib.type,
value = lib.value,
source = vm.librarySource(lib),
}
end
local function checkLibraryReturn(source)
if source.type ~= 'select' then
return nil
end
local index = source.index
local call = source.vararg
if call.type ~= 'call' then
return nil
end
local func = call.node
local lib = vm.getLibrary(func)
if not lib then
return nil
end
if lib.type ~= 'function' then
return nil
end
if not lib.returns then
return nil
end
local rtn = lib.returns[index]
if not rtn then
return nil
end
return alloc {
type = rtn.type,
value = rtn.value,
source = vm.librarySource(rtn),
}
end
local function getValue(source)
local results = checkLiteral(source)
or checkValue(source)
or checkUnary(source)
or checkBinary(source)
or checkLibrary(source)
or checkLibraryReturn(source)
if results then
return results
end
results = {}
checkDef(results, source)
inferByCall(results, source)
inferByGetTable(results, source)
if #results == 0 then
return nil
end
return results
end
function vm.checkTrue(source)
local values = vm.getValue(source)
if not values then
return
end
-- 当前认为的结果
local current
for i = 1, #values do
-- 新的结果
local new
local v = values[i]
if v.type == 'nil' then
new = false
elseif v.type == 'boolean' then
if v.value == true then
new = true
elseif v.value == false then
new = false
end
end
if new ~= nil then
if current == nil then
current = new
else
-- 如果2个结果完全相反,则返回 nil 表示不确定
if new ~= current then
return nil
end
end
end
end
return current
end
--- 获取特定类型的字面量值
function vm.getLiteral(source, type)
local values = vm.getValue(source)
if not values then
return nil
end
for i = 1, #values do
local v = values[i]
if v.type == type and v.value ~= nil then
return v.value
end
end
return nil
end
function vm.isSameValue(a, b)
local valuesA = vm.getValue(a)
local valuesB = vm.getValue(b)
if valuesA == valuesB and valuesA ~= nil then
return true
end
local values = {}
for i = 1, #valuesA do
local value = valuesA[i]
local literal = value.value
if literal then
values[literal] = false
end
end
for i = 1, #valuesB do
local value = valuesA[i]
local literal = value.value
if literal then
if values[literal] == nil then
return false
end
values[literal] = true
end
end
for k, v in pairs(values) do
if v == false then
return false
end
end
return true
end
--- 是否包含某种类型
function vm.hasType(source, type)
local values = vm.getValue(source)
if not values then
return false
end
for i = 1, #values do
local value = values[i]
if value.type == type then
return true
end
end
return false
end
function vm.getType(source)
local values = vm.getValue(source)
if not values then
return 'any'
end
local types = {}
for i = 1, #values do
local tp = values[i].type
if not types[tp] then
types[tp] = true
types[#types+1] = tp
end
end
if #types == 0 then
return 'any'
end
if #types == 1 then
return types[1]
end
table.sort(types, function (a, b)
local sa = typeSort[a]
local sb = typeSort[b]
if sa and sb then
return sa < sb
end
if not sa and not sb then
return a < b
end
if sa and not sb then
return true
end
if not sa and sb then
return false
end
return false
end)
return table.concat(types, '|')
end
function vm.getValue(source)
if not source then
return
end
local cache = vm.cache.getValue[source]
if cache ~= nil then
return cache
end
local unlock = vm.lock('getValue', source)
if not unlock then
return
end
cache = getValue(source) or false
vm.cache.getValue[source] = cache
unlock()
return cache
end
|