summaryrefslogtreecommitdiff
path: root/server/src/core/vm.lua
blob: f2d80b4cd27dd77009d176e83e73d5f0f5109b88 (plain)
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
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
local env = require 'core.env'
local library = require 'core.library'
local createValue = require 'core.value'

local DefaultSource = { start = 0, finish = 0 }
local GlobalChild

-- 根据赋值顺序决定遍历顺序的表
local function orderTable()
    local t = {}
    local list = {}
    local mark = {}
    return setmetatable(t, {
        __newindex = function (self, k, v)
            if not mark[k] then
                mark[k] = true
                list[#list+1] = k
            end
            rawset(self, k, v)
        end,
        __pairs = function (self)
            local i = 0
            return function ()
                while true do
                    i = i + 1
                    local k = list[i]
                    if not k then
                        return nil, nil
                    end
                    local v = t[k]
                    if v ~= nil then
                        return k, v
                    end
                end
            end
        end,
    })
end

local function readOnly(t)
    return setmetatable({}, {
        __index = function (self, k)
            if k == nil then
                return nil
            end
            local v = t[k]
            if type(v) == 'table' then
                v = readOnly(v)
            end
            self[k] = v
            return v
        end,
        __len = function (self)
            return #t
        end,
        __pairs = function (self)
            local keys = {}
            local mark = {}
            for k in next, self do
                keys[#keys+1] = k
            end
            for k in pairs(t) do
                if not mark[k] then
                    mark[k] = true
                    keys[#keys+1] = k
                end
            end
            local i = 0
            return function ()
                i = i + 1
                local k = keys[i]
                return k, self[k]
            end
        end,
        __source = t,
    })
end

local mt = {}
mt.__index = mt

function mt:createDummyVar(source, value)
    local loc = {
        type = 'local',
        key = '',
        source = source or DefaultSource,
    }
    self:setValue(loc, value, source)
    return loc
end

function mt:createLocal(key, source, value)
    local loc = {
        type = 'local',
        key = key,
        source = source or DefaultSource,
        close = self.scope.block.finish,
    }

    if source then
        source.isLocal = true
    end

    local shadow = self.scope.locals[key]
    if shadow then
        shadow.close = source and (source.start-1)
        local group
        if shadow.shadow then
            group = shadow.shadow
        else
            group = { shadow }
            shadow.shadow = group
        end
        group[#group+1] = loc
        loc.shadow = group
    end

    self.scope.locals[key] = loc
    self.results.locals[#self.results.locals+1] = loc

    self:addInfo(loc, 'local', source)
    self:setValue(loc, value, source)
    return loc
end

function mt:createArg(key, source, value)
    local loc = self:createLocal(key, source, value)
    if source then
        source.isArg = true
    end
    return loc
end

function mt:scopePush(block)
    if not block.start then
        error('Scope push without start!')
    end
    self.scope:push()
    self.scope.block = block
end

function mt:scopePop()
    self.scope:pop()
end

function mt:addInfo(obj, type, source)
    if source and not source.start then
        error('Miss start: ' .. table.dump(source))
    end
    obj[#obj+1] = {
        type = type,
        source = source or DefaultSource,
    }
    if source then
        source.uri = self.uri
        local other = self.results.sources[source]
        if other then
            if other.type == 'multi-source' then
                other[#other+1] = obj
            else
                other = {
                    type = 'multi-source',
                    [1] = other,
                    [2] = obj,
                }
            end
        else
            self.results.sources[source] = obj
        end
        if type == 'set' or type == 'return' then
            if not obj.declarat then
                obj.declarat = source
            end
        end
    end
    return obj
end

function mt:createDots(index, source)
    local dots = {
        type = 'dots',
        source = source or DefaultSource,
        func = self:getCurrentFunction(),
        index = index,
    }
    self.chunk.dots = dots
    return dots
end

function mt:buildTable(source)
    local tbl = self:createValue('table', source)
    if not source then
        return tbl
    end
    local n = 0
    for index, obj in ipairs(source) do
        if obj.type == 'pair' then
            local value = self:getExp(obj[2])
            local key   = obj[1]
            if key.index then
                local index = self:getIndex(key)
                local field = tbl:createField(index, key)
                if value.type == 'list' then
                    self:setValue(field, value[1], key)
                else
                    self:setValue(field, value, key)
                end
            else
                if key.type == 'name' then
                    local field = tbl:createField(key[1], key)
                    self.results.indexs[#self.results.indexs+1] = field
                    key.isIndex = true
                    if value.type == 'list' then
                        self:setValue(field, value[1], key)
                    else
                        self:setValue(field, value, key)
                    end
                end
            end
        else
            local value = self:getExp(obj)
            if value.type == 'list' then
                if index == #source then
                    for i, v in ipairs(value) do
                        local field = tbl:createField(n + i)
                        self:setValue(field, v)
                    end
                else
                    n = n + 1
                    local field = tbl:createField(n)
                    self:setValue(field, value[1])
                end
            else
                n = n + 1
                local field = tbl:createField(n)
                self:setValue(field, value)
            end
            -- 处理写了一半的 key = value,把name类的数组元素视为哈希键
            if obj.type == 'name' then
                obj.isIndex = true
            end
        end
    end
    return tbl
end

function mt:mergeValue(a, b, mark)
    if a == b then
        return
    end
    if not mark then
        mark = {}
    end
    if mark[a] or mark[b] then
        return
    end
    if a.uri ~= self.uri then
        return
    end
    mark[a] = true
    mark[b] = true
    self:mergeChild(a, b, mark)
    for k in pairs(a) do
        a[k] = nil
    end
    for k, v in pairs(b) do
        a[k] = v
    end
end

function mt:mergeField(a, b, mark)
    if a == b then
        return
    end
    if not mark then
        mark = {}
    end
    for i, info in ipairs(a) do
        a[i] = nil
        b[#b+1] = info
    end
    for i, v in ipairs(b) do
        a[i] = v
    end
    self:mergeValue(a.value, b.value, mark)
end

function mt:mergeChild(a, b, mark)
    if a == b then
        return
    end
    if not a.child and not b.child then
        return
    end
    if not mark then
        mark = {}
    end
    if a.uri ~= self.uri then
        return
    end
    if b.uri == self.uri then
        local child = a.child or orderTable()
        local other = b.child or orderTable()
        a.child = nil
        b.child = nil
        for k, v in pairs(other) do
            if child[k] then
                self:mergeField(child[k], v, mark)
            else
                child[k] = v
            end
        end
        a.child = child
        b.child = child
    else
        local child = a.child or orderTable()
        local other = b.child
        if not other then
            return
        end
        a.child = nil
        for k, v in pairs(other) do
            child[k] = v
        end
        a.child = child
    end
end

function mt:setValue(var, value, source)
    if value and value.type == 'list' then
        error('Cant set value list')
    end
    value = value or self:createValue('any', source)
    if source and source.start then
        self:addInfo(var, 'set', source)
        value:addInfo('set', source)
    end
    if var.value then
        if value.type == 'any' then
            self:mergeChild(var.value, value)
        elseif value.type == 'nil' then
            self:mergeValue(var.value, value)
        elseif var.value.uri == self.uri then
            var.value = value
        end
        value = var.value
    else
        var.value = value
    end
    return value
end

function mt:getValue(var)
    if not var.value then
        var.value = self:createValue('any')
    end
    return var.value
end

function mt:isGlobal(field)
    if field.type ~= 'field' then
        return false
    end
    if field.parent.value and field.parent.value.ENV then
        return true
    else
        return false
    end
end

function mt:buildFunction(exp, object)
    local func = self:createValue('function', exp)
    func.args = {}
    func.argValues = {}

    if not exp then
        return func
    end

    func.built = true

    self:scopePush(exp)
    self.chunk:push()
    self.chunk:cut 'dots'
    self.chunk:cut 'labels'
    self.chunk.func = func

    if object then
        local var = self:createArg('self', object.source, self:getValue(object))
        var.hide = true
        func.args[1] = var
    end

    local stop
    self:forList(exp.arg, function (arg)
        if stop then
            return
        end
        if arg.type == 'name' then
            local var = self:createArg(arg[1], arg)
            arg.isArg = true
            func.args[#func.args+1] = var
            func.argValues[#func.args] = self:getValue(var)
        elseif arg.type == '...' then
            self:createDots(#func.args+1, arg)
            func.hasDots = true
            for _ = 1, 10 do
                func.argValues[#func.argValues+1] = self:createValue('any', arg)
            end
            stop = true
        end
    end)

    self:doActions(exp)

    self.results.funcs[#self.results.funcs+1] = func

    self.chunk:pop()
    self:scopePop()

    return func
end

function mt:forList(list, callback)
    if not list then
        return
    end
    if list.type == 'list' then
        for i = 1, #list do
            callback(list[i])
        end
    else
        callback(list)
    end
end

function mt:countList(list)
    if not list then
        return 0
    end
    if list.type == 'list' then
        return #list
    end
    return 1
end

function mt:updateFunctionArgs(func)
    if not func.argValues then
        return
    end
    if not func.args then
        return
    end

    local values = func.argValues
    for i, var in ipairs(func.args) do
        if var.type == 'dots' then
            local list = {
                type = 'list',
            }
            for n = i, #values do
                list[n-i+1] = values[n]
            end
            self:setValue(var, list)
            break
        else
            self:setValue(var, values[i])
        end
    end
end

function mt:setFunctionArg(func, values)
    if func.uri ~= self.uri then
        return
    end
    if not func.argValues then
        func.argValues = {}
    end
    for i = 1, #values do
        if not func.argValues[i] then
            func.argValues[i] = values[i]
        end
        values[i]:inference(func.argValues[i].type)
        func.argValues[i]:inference(values[i].type)
    end

    self:updateFunctionArgs(func)
end

function mt:getFunctionArg(func, i)
    if not func.argValues then
        func.argValues = {}
    end
    if not func.argValues[i] then
        for n = #func.argValues+1, i do
            func.argValues[n] = self:createValue('any')
        end
    end
    return func.argValues[i]
end

function mt:checkMetaIndex(value, meta)
    local index = meta:getField('__index')
    if not index then
        return
    end
    local indexValue = self:getValue(index)
    -- TODO 支持function
    self:mergeChild(value, indexValue)
end

function mt:callSetMetaTable(func, values)
    if not values[1] then
        values[1] = self:createValue('any')
    end
    if not values[2] then
        values[2] = self:createValue('any')
    end
    self:setFunctionReturn(func, 1, values[1])

    values[1].metatable = values[2]
    -- 检查 __index
    self:checkMetaIndex(values[1], values[2])
end

function mt:getRequire(strValue, destVM)
    -- 取出对方的主函数
    local main = destVM.results.main
    -- 获取主函数返回值,注意不能修改对方的环境
    local mainValue
    if main.returns then
        mainValue = readOnly(main.returns[1])
    else
        mainValue = self:createValue('boolean', nil, true)
        mainValue.uri = destVM.uri
    end

    return mainValue
end

function mt:getLoadFile(strValue, destVM)
    -- 取出对方的主函数
    local main = destVM.results.main
    -- loadfile 的返回值就是对方的主函数
    local mainValue = readOnly(main)

    return mainValue
end

function mt:tryRequireOne(strValue, mode)
    if not self.lsp or not self.lsp.workspace then
        return nil
    end
    local str = strValue.value
    if type(str) == 'string' then
        -- 支持 require 'xxx' 的转到定义
        local strSource = strValue.source
        self.results.sources[strSource] = strValue
        strValue.isRequire = true

        local uri
        if mode == 'require' then
            uri = self.lsp.workspace:searchPath(self.uri, str)
        elseif mode == 'loadfile' then
            uri = self.lsp.workspace:loadPath(self.uri, str)
        elseif mode == 'dofile' then
            uri = self.lsp.workspace:loadPath(self.uri, str)
        end
        if not uri then
            return nil
        end

        strValue.uri = uri
        -- 如果取不到VM(不编译),则做个标记,之后再取一次
        local destVM = self.lsp:getVM(uri)
        self.lsp:compileChain(self.uri, uri)
        if destVM then
            if mode == 'require' then
                return self:getRequire(strValue, destVM)
            elseif mode == 'loadfile' then
                return self:getLoadFile(strValue, destVM)
            elseif mode == 'dofile' then
                return self:getRequire(strValue, destVM)
            end
        end
    end
    return nil
end

function mt:callRequire(func, values)
    if not values[1] then
        values[1] = self:createValue('any')
    end
    local str = values[1].value
    if type(str) ~= 'string' then
        return
    end
    local lib = library.library[str]
    if lib then
        local value = self:getLibValue(lib, 'library')
        self:setFunctionReturn(func, 1, value)
        return
    else
        local requireValue = self:tryRequireOne(values[1], 'require')
        if not requireValue then
            requireValue = self:createValue('boolean')
            requireValue.isRequire = true
        end
        self:setFunctionReturn(func, 1, requireValue)
    end
end

function mt:callLoadFile(func, values)
    if not values[1] then
        values[1] = self:createValue('any')
    end
    local str = values[1].value
    if type(str) ~= 'string' then
        return
    end
    local requireValue = self:tryRequireOne(values[1], 'loadfile')
    if not requireValue then
        requireValue = self:createValue('any')
        requireValue.isRequire = true
    end
    self:setFunctionReturn(func, 1, requireValue)
end

function mt:callDoFile(func, values)
    if not values[1] then
        values[1] = self:createValue('any')
    end
    local str = values[1].value
    if type(str) ~= 'string' then
        return
    end
    local requireValue = self:tryRequireOne(values[1], 'dofile')
    if not requireValue then
        requireValue = self:createValue('any')
        requireValue.isRequire = true
    end
    self:setFunctionReturn(func, 1, requireValue)
end

function mt:call(func, values)
    func:inference('function')
    local lib = func.lib
    if lib then
        if lib.args then
            for i, arg in ipairs(lib.args) do
                if arg.type == '...' then
                    self:getFunctionArg(func, i):inference('any')
                else
                    self:getFunctionArg(func, i):inference(arg.type or 'any')
                end
            end
        end
        if lib.returns then
            for i, rtn in ipairs(lib.returns) do
                if rtn.type == '...' then
                    self:getFunctionReturns(func, i):inference('any')
                else
                    self:getFunctionReturns(func, i):inference(rtn.type or 'any')
                end
            end
        end
        if lib.special then
            if lib.special == 'setmetatable' then
                self:callSetMetaTable(func, values)
            elseif lib.special == 'require' then
                self:callRequire(func, values)
            elseif lib.special == 'loadfile' then
                self:callLoadFile(func, values)
            elseif lib.special == 'dofile' then
                self:callDoFile(func, values)
            end
        end
    end

    self:setFunctionArg(func, values)

    return self:getFunctionReturns(func)
end

function mt:getCurrentFunction()
    return self.chunk.func
end

function mt:mergeFunctionReturn(func, index, value)
    if not func.returns[index] then
        func.returns[index] = value
        return
    end
    if value.type == 'nil' then
        return
    end
    if value == 'any' and func.returns[index] ~= 'nil' then
        return
    end
    func.returns[index] = value
end

function mt:setFunctionReturn(func, index, value)
    func.hasReturn = true
    if not func.returns then
        func.returns = {
            type = 'list',
        }
    end
    if value then
        if value.type == 'list' then
            for i, v in ipairs(value) do
                self:mergeFunctionReturn(func, index+i-1, v)
            end
        else
            self:mergeFunctionReturn(func, index, value)
        end
    else
        self:mergeFunctionReturn(func, index, self:createValue('any'))
    end
end

function mt:getFunctionReturns(func, i)
    if func.maxReturns and i and func.maxReturns < i then
        return self:createValue('nil')
    end
    if not func.returns then
        func.returns = {
            type = 'list',
        }
    end
    if i then
        if not func.returns[i] then
            for n = #func.returns+1, i do
                func.returns[n] = self:createValue('any')
            end
        end
        return func.returns[i]
    else
        return func.returns
    end
end

function mt:createValue(tp, source, v)
    local value = createValue(tp, source, v)
    local lib = library.object[tp]
    if lib then
        self:getLibChild(value, lib, 'object')
    end
    return value
end

function mt:getLibChild(value, lib, parentType)
    if lib.child then
        if self.libraryChild[lib] then
            value.child = self.libraryChild[lib]
            return
        end
        self.libraryChild[lib] = {}
        for fName, fLib in pairs(lib.child) do
            local fField = value:createField(fName)
            local fValue = self:getLibValue(fLib, parentType)
            self:setValue(fField, fValue)
        end
        value:eachField(function (k, v)
            self.libraryChild[lib][k] = v
        end)
        value.child = self.libraryChild[lib]
    end
end

function mt:getLibValue(lib, parentType, v)
    if self.libraryValue[lib] then
        return self.libraryValue[lib]
    end
    local tp = lib.type
    local value
    if     tp == 'table' then
        value = self:createValue('table')
    elseif tp == 'function' then
        value = self:createValue('function')
        if lib.returns then
            local dots
            for i, rtn in ipairs(lib.returns) do
                self:setFunctionReturn(value, i, self:getLibValue(rtn, parentType))
                if rtn.type == '...' then
                    dots = true
                end
            end
            if not dots then
                value.maxReturns = #lib.returns
            end
        else
            value.maxReturns = 0
        end
        if lib.args then
            local values = {}
            for i, arg in ipairs(lib.args) do
                values[i] = self:getLibValue(arg, parentType) or self:createValue('any')
            end
            self:setFunctionArg(value, values)
        end
    elseif tp == 'string' then
        value = self:createValue('string', nil, v or lib.value)
    elseif tp == 'boolean' then
        value = self:createValue('boolean', nil, v or lib.value)
    elseif tp == 'number' then
        value = self:createValue('number', nil, v or lib.value)
    elseif tp == 'integer' then
        value = self:createValue('integer', nil, v or lib.value)
    elseif tp == 'nil' then
        value = self:createValue('nil')
    elseif tp == '...' then
        value = self:createValue('any')
    else
        value = self:createValue(tp or 'any')
    end
    self.libraryValue[lib] = value
    value.lib = lib
    value.parentType = parentType

    self:getLibChild(value, lib, parentType)

    return value
end

function mt:getName(name, source)
    local loc = self.scope.locals[name]
    if loc then
        return loc
    end
    local ENV = self.scope.locals._ENV
    local global = self:getValue(ENV):getField(name, source)
    global.parent = ENV
    return global
end

function mt:getIndex(obj)
    local tp = obj.type
    if tp == 'name' then
        local var = self:getName(obj[1])
        local value = self:getValue(var)
        self:addInfo(var, 'get', obj)
        return value
    elseif (tp == 'string' or tp == 'number' or tp == 'boolean') then
        return obj[1]
    else
        return self:getExp(obj)
    end
end

-- expect表示遇到 ... 时,期待的返回数量
function mt:unpackDots(res, expect)
    local dots = self:getDots(1)
    local func = dots.func
    local start = dots.index
    if expect then
        local finish = start + expect - 1
        for i = start, finish do
            res[#res+1] = self:getFunctionArg(func, i)
        end
    else
        if not func.argValues then
            return
        end
        for i = start, #func.argValues do
            res[#res+1] = func.argValues[i]
        end
    end
end

function mt:unpackList(list, expect)
    local res = {
        type = 'list',
    }
    if not list then
        return res
    end
    if list.type == 'list' or list.type == 'call' then
        for i, exp in ipairs(list) do
            if exp.type == '...' then
                self:unpackDots(res, expect)
                break
            end
            local value = self:getExp(exp)
            if value.type == 'list' then
                if i == #list then
                    for _, v in ipairs(value) do
                        res[#res+1] = v
                    end
                else
                    res[#res+1] = value[1]
                end
            else
                res[#res+1] = value
            end
        end
    elseif list.type == '...' then
        self:unpackDots(res, expect)
    else
        local value = self:getExp(list)
        if value.type == 'list' then
            for i, v in ipairs(value) do
                res[i] = v
            end
        else
            res[1] = value
        end
    end
    for _, v in ipairs(res) do
        if v.type == 'list' then
            error('Unpack list')
        end
    end
    return res
end

function mt:getSimple(simple, mode)
    local value = self:getExp(simple[1])
    local field
    local parentName
    local tp = simple[1].type
    if tp == 'name' then
        field = self:getName(simple[1][1])
        parentName = field.key
    elseif tp == 'string' or tp == 'number' or tp == 'nil' or tp == 'boolean' then
        local v = self:createValue(tp, simple[1], simple[1][1])
        field = self:createDummyVar(simple[1], v)
        parentName = '*' .. tp
    else
        local v = self:createValue('any', simple[1])
        field = self:createDummyVar(simple[1], v)
        parentName = '?'
    end
    local object
    local lastField = field
    for i = 2, #simple do
        local obj = simple[i]
        local tp  = obj.type

        if     tp == 'call' then
            local args = self:unpackList(obj)
            if object then
                table.insert(args, 1, self:getValue(object))
            end
            local func = value
            -- 函数的返回值一定是list
            value = self:call(func, args)
            if i < #simple then
                value = value[1] or self:createValue('any')
            end
            self.results.calls[#self.results.calls+1] = {
                args = obj,
                lastObj = simple[i-1],
                nextObj = simple[i+1],
                func = func,
            }
            parentName = parentName .. '(...)'
        elseif tp == 'index' then
            local child = obj[1]
            local index = self:getIndex(child)
            field = value:getField(index, child)
            field.parentValue = value
            value = self:getValue(field)
            if mode == 'value' or i < #simple then
                self:addInfo(field, 'get', obj)
            end
            field.parent = lastField
            lastField = field
            obj.object = object
            obj.parentName = parentName
            if obj[1].type == 'string' then
                parentName = ('%s[%q]'):format(parentName, index)
            elseif obj[1].type == 'number' or obj[1].type == 'boolean' then
                parentName = ('%s[%s]'):format(parentName, index)
            else
                parentName = ('%s[?]'):format(parentName)
            end
        elseif tp == 'name' then
            field = value:getField(obj[1], obj)
            field.parentValue = value
            value = self:getValue(field)
            if mode == 'value' or i < #simple then
                self:addInfo(field, 'get', obj)
            end
            field.parent = lastField
            lastField = field
            obj.object = object
            obj.parentName = parentName
            parentName = parentName .. '.' .. field.key
        elseif tp == ':' then
            object = field
            simple[i-1].colon = obj
        elseif tp == '.' then
            simple[i-1].dot = obj
        end
    end
    if mode == 'value' then
        return value, object
    elseif mode == 'field' then
        return field, object
    end
    error('Unknow simple mode: ' .. mode)
end

function mt:isTrue(v)
    if v.type == 'nil' then
        return false
    end
    if v.type == 'boolean' and not v.value then
        return false
    end
    return true
end

function mt:selectList(list, n)
    if list.type ~= 'list' then
        return list
    end
    return list[n] or self:createValue('nil')
end

function mt:getBinary(exp)
    local v1 = self:getExp(exp[1])
    local v2 = self:getExp(exp[2])
    v1 = self:selectList(v1, 1)
    v2 = self:selectList(v2, 1)
    local op = exp.op
    -- TODO 搜索元方法
    if     op == 'or' then
        if self:isTrue(v1) then
            return v1
        else
            return v2
        end
    elseif op == 'and' then
        if self:isTrue(v1) then
            return v2
        else
            return v1
        end
    elseif op == '<='
        or op == '>='
        or op == '<'
        or op == '>'
    then
        v1:inference('number')
        v2:inference('number')
        return self:createValue('boolean')
    elseif op == '~='
        or op == '=='
    then
        return self:createValue('boolean')
    elseif op == '|'
        or op == '~'
        or op == '&'
        or op == '<<'
        or op == '>>'
    then
        v1:inference('integer')
        v2:inference('integer')
        if math.type(v1.value) == 'integer' and math.type(v2.value) == 'integer' then
            if op == '|' then
                return self:createValue('integer', v1.value | v2.value)
            elseif op == '~' then
                return self:createValue('integer', v1.value ~ v2.value)
            elseif op == '&' then
                return self:createValue('integer', v1.value &v2.value)
            elseif op == '<<' then
                return self:createValue('integer', v1.value << v2.value)
            elseif op == '>>' then
                return self:createValue('integer', v1.value >> v2.value)
            end
        end
        return self:createValue('integer')
    elseif op == '..' then
        v1:inference('string')
        v2:inference('string')
        if type(v1.value) == 'string' and type(v2.value) == 'string' then
            return self:createValue('string', nil, v1.value .. v2.value)
        end
        return self:createValue('string')
    elseif op == '+'
        or op == '-'
        or op == '*'
        or op == '/'
        or op == '^'
        or op == '%'
        or op == '//'
    then
        v1:inference('number')
        v2:inference('number')
        if type(v1.value) == 'number' and type(v2.value) == 'number' then
            if op == '+' then
                return self:createValue('number', nil, v1.value + v2.value)
            elseif op == '-' then
                return self:createValue('number', nil, v1.value - v2.value)
            elseif op == '*' then
                return self:createValue('number', nil, v1.value * v2.value)
            elseif op == '/' then
                if v2.value ~= 0 then
                    return self:createValue('number', nil, v1.value / v2.value)
                end
            elseif op == '^' then
                return self:createValue('number', nil, v1.value ^ v2.value)
            elseif op == '%' then
                if v2.value ~= 0 then
                    return self:createValue('number', nil, v1.value % v2.value)
                end
            elseif op == '//' then
                if v2.value ~= 0 then
                    return self:createValue('number', nil, v1.value // v2.value)
                end
            end
        end
        return self:createValue('number')
    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:createValue('boolean')
    elseif op == '#' then
        v1:inference('table')
        if type(v1.value) == 'string' then
            return self:createValue('integer', nil, #v1.value)
        end
        return self:createValue('integer')
    elseif op == '-' then
        v1:inference('number')
        if type(v1.value) == 'number' then
            return self:createValue('number', nil, -v1.value)
        end
        return self:createValue('number')
    elseif op == '~' then
        v1:inference('integer')
        if math.type(v1.value) == 'integer' then
            return self:createValue('integer', nil, ~v1.value)
        end
        return self:createValue('integer')
    end
    return nil
end

function mt:getDots()
    if not self.chunk.dots then
        self:createDots(1)
    end
    return self.chunk.dots
end

function mt:getExp(exp)
    local tp = exp.type
    if     tp == 'nil' then
        return self:createValue('nil', exp)
    elseif tp == 'string' then
        self.results.strings[#self.results.strings+1] = exp
        return self:createValue('string', exp, exp[1])
    elseif tp == 'boolean' then
        return self:createValue('boolean', exp, exp[1])
    elseif tp == 'number' then
        return self:createValue('number', exp, exp[1])
    elseif tp == 'name' then
        local var = self:getName(exp[1], exp)
        local value = self:getValue(var)
        self:addInfo(var, 'get', exp)
        return value
    elseif tp == 'simple' then
        return self:getSimple(exp, 'value')
    elseif tp == 'binary' then
        return self:getBinary(exp)
    elseif tp == 'unary' then
        return self:getUnary(exp)
    elseif tp == 'function' then
        return self:buildFunction(exp)
    elseif tp == 'table' then
        return self:buildTable(exp)
    elseif tp == '...' then
        local value = { type = 'list' }
        self:unpackDots(value)
        return value
    end
    error('Unkown exp type: ' .. tostring(tp))
end

function mt:doDo(action)
    self:scopePush(action)
    self:doActions(action)
    self:scopePop()
end

function mt:doReturn(action)
    self:getCurrentFunction().hasReturn = true
    for i, exp in ipairs(action) do
        local value = self:getExp(exp)
        if value.type == 'list' then
            if i == #action then
                if #value == 0 then
                    value[1] = self:createValue('any', exp)
                end
                for x, v in ipairs(value) do
                    v:addInfo('return', exp)
                    self:setFunctionReturn(self:getCurrentFunction(), i + x - 1, v)
                end
                break
            else
                local v = value[1] or self:createValue('nil', exp)
                v:addInfo('return', exp)
                self:setFunctionReturn(self:getCurrentFunction(), i, v)
            end
        else
            value:addInfo('return', exp)
            self:setFunctionReturn(self:getCurrentFunction(), i, value)
        end
    end
end

function mt:createLabel(action)
    local name = action[1]
    if not self.chunk.labels[name] then
        local label = {
            type = 'label',
            key = name,
        }
        self.chunk.labels[name] = label
        self.results.labels[#self.results.labels+1] = label
    end
    return self.chunk.labels[name]
end

function mt:doSet(action)
    if not action[2] then
        return
    end
    local n = self:countList(action[1])
    -- 要先计算值
    local values = self:unpackList(action[2], n)
    self:forList(action[1], function (key)
        local value = table.remove(values, 1)
        if key.type == 'name' then
            local var = self:getName(key[1], key)
            self:setValue(var, value, key)
            if self:isGlobal(var) then
                self.results.globals[#self.results.globals+1] = {
                    type = 'global',
                    global = var,
                }
            end
        elseif key.type == 'simple' then
            local field = self:getSimple(key, 'field')
            self:setValue(field, value, key[#key])
            local var = field
            repeat
                if self:isGlobal(var) then
                    self.results.globals[#self.results.globals+1] = {
                        type = 'field',
                        global = var,
                    }
                    break
                end
                var = var.parent
            until not var
        end
    end)
end

function mt:doLocal(action)
    local n = self:countList(action[1])
    local values
    if action[2] then
        values = self:unpackList(action[2], n)
    end
    self:forList(action[1], function (key)
        local value
        if values then
            value = table.remove(values, 1)
        end
        self:createLocal(key[1], key, value)
    end)
end

function mt:doIf(action)
    for _, block in ipairs(action) do
        if block.filter then
            self:getExp(block.filter)
        end

        self:scopePush(block)
        self:doActions(block)
        self:scopePop()
    end
end

function mt:doLoop(action)

    local min = self:unpackList(action.min)[1]
    self:getExp(action.max)
    if action.step then
        self:getExp(action.step)
    end

    self:scopePush(action)
    self:createLocal(action.arg[1], action.arg, min)
    self:doActions(action)
    self:scopePop()
end

function mt:doIn(action)
    local args = self:unpackList(action.exp)

    self:scopePush(action)
    local func = table.remove(args, 1) or self:createValue('any')
    local values = self:call(func, args)
    self:forList(action.arg, function (arg)
        local value = table.remove(values, 1)
        self:createLocal(arg[1], arg, value)
    end)

    self:doActions(action)

    self:scopePop()
end

function mt:doWhile(action)

    self:getExp(action.filter)

    self:scopePush(action)
    self:doActions(action)
    self:scopePop()
end

function mt:doRepeat(action)
    self:scopePush(action)
    self:doActions(action)
    self:getExp(action.filter)
    self:scopePop()
end

function mt:doFunction(action)
    local name = action.name
    local var, object
    local source
    if name then
        if name.type == 'simple' then
            var, object = self:getSimple(name, 'field')
            source = name[#name]
        else
            var = self:getName(name[1], name)
            source = name
        end
    end
    local func = self:buildFunction(action, object)
    if var then
        self:setValue(var, func, source)
    end
end

function mt:doLocalFunction(action)
    local name = action.name
    local var, object
    local source
    if name then
        if name.type == 'simple' then
            var, object = self:getSimple(name, 'field')
            source = name[#name]
        else
            var = self:createLocal(name[1], name)
            source = name
        end
    end
    local func = self:buildFunction(action, object)
    if var then
        self:setValue(var, func, source)
    end
end

function mt:doAction(action)
    if not action then
        -- Skip
        return
    end
    local tp = action.type
    if     tp == 'do' then
        self:doDo(action)
    elseif tp == 'break' then
    elseif tp == 'return' then
        self:doReturn(action)
    elseif tp == 'label' then
        local label = self:createLabel(action)
        self:addInfo(label, 'set', action)
    elseif tp == 'goto' then
        local label = self:createLabel(action)
        self:addInfo(label, 'goto', action)
    elseif tp == 'set' then
        self:doSet(action)
    elseif tp == 'local' then
        self:doLocal(action)
    elseif tp == 'simple' then
        -- call
        self:getSimple(action, 'value')
    elseif tp == 'if' then
        self:doIf(action)
    elseif tp == 'loop' then
        self:doLoop(action)
    elseif tp == 'in' then
        self:doIn(action)
    elseif tp == 'while' then
        self:doWhile(action)
    elseif tp == 'repeat' then
        self:doRepeat(action)
    elseif tp == 'function' then
        self:doFunction(action)
    elseif tp == 'localfunction' then
        self:doLocalFunction(action)
    else
        self:getExp(action)
    end
end

function mt:doActions(actions)
    for _, action in ipairs(actions) do
        self:doAction(action)
        if coroutine.isyieldable() then
            coroutine.yield()
        end
    end
end

function mt:createEnvironment()
    self.scope.block = { start = 0, finish = math.maxinteger }
    -- 整个文件是一个函数
    self.chunk.func = self:buildFunction()
    self.results.main = self.chunk.func
    -- 隐藏的上值`_ENV`
    local parent = self:createLocal('_ENV')
    parent.hide = true
    local envValue = self:setValue(parent, self:buildTable())
    -- _ENV 有个特殊标记
    envValue.ENV = true
    -- 隐藏的参数`...`
    self:createDots(1)

    -- 设置全局变量
    if not GlobalChild then
        for name, lib in pairs(library.global) do
            local field = envValue:createField(name)
            local value = self:getLibValue(lib, 'global')
            value = self:setValue(field, value)
        end
        GlobalChild = envValue.child
    end
    envValue.child = readOnly(GlobalChild)

    -- 设置 _G 使用 _ENV 的child
    local g = envValue:getField('_G')
    local gValue = self:getValue(g)
    gValue.child = envValue.child
    self.env = envValue
end

local function compile(ast, lsp, uri)
    local vm = setmetatable({
        scope   = env {
            locals = {},
        },
        chunk   = env {
            labels = {},
        },
        results = {
            locals = {},
            labels = {},
            funcs  = {},
            calls  = {},
            sources= {},
            strings= {},
            indexs = {},
            globals= {},
            main   = nil,
        },
        libraryValue = {},
        libraryChild = {},
        lsp          = lsp,
        uri          = uri,
    }, mt)

    -- 创建初始环境
    vm:createEnvironment()

    -- 执行代码
    vm:doActions(ast)

    vm.scope = nil
    vm.chunk = nil
    vm.libraryValue = nil
    vm.libraryChild = nil

    return vm
end

return function (ast, lsp, uri)
    if not ast then
        return nil
    end
    local suc, res = xpcall(compile, log.error, ast, lsp, uri)
    if not suc then
        return nil
    end
    return res
end