-
Notifications
You must be signed in to change notification settings - Fork 17
/
TAGS
1184 lines (1062 loc) · 37.7 KB
/
TAGS
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
cmd/gi/lua.help.lua,50
function locals(11,378
function upvalues(30,808
pkg/compiler/_templates/defer.lua,17
function f(3,14
pkg/compiler/_templates/deferinit.lua,18
function ts(4,75
pkg/compiler/_templates/flow1.lua,17
function f(8,72
pkg/compiler/_templates/flow10.lua,69
function deeper(21,302
function intermed(45,914
function f(50,954
pkg/compiler/_templates/flow11.lua,19
function f(15,140
pkg/compiler/_templates/flow2.lua,17
function f(9,73
pkg/compiler/_templates/flow3.lua,17
function f(8,72
pkg/compiler/_templates/flow4.lua,17
function f(7,71
pkg/compiler/_templates/flow5.lua,17
function f(8,72
pkg/compiler/_templates/flow6.lua,17
function f(8,72
pkg/compiler/_templates/flow7.lua,43
function deeper(12,130
function f(29,446
pkg/compiler/_templates/flow8.lua,69
function deeper(13,131
function intermed(28,445
function f(34,486
pkg/compiler/_templates/flow9.lua,17
function f(7,40
pkg/compiler/_templates/luadefer1_defer_panic_a_new_val.lua,17
function f(3,14
pkg/compiler/_templates/luadefer2_defer_error_a_new_val.lua,17
function f(3,14
pkg/compiler/_templates/new.defer.lua,17
function f(3,14
pkg/compiler/_templates/q.lua,230
function stack:new(3,12
function stack:new(new3,12
function stack:pop(7,51
function stack:pop(pop7,51
function stack:push(16,178
function stack:push(push16,178
function stack:show(20,228
function stack:show(show20,228
pkg/compiler/_templates/q2.lua,230
function stack.new(4,13
function stack.new(new4,13
function stack.pop(8,52
function stack.pop(pop8,52
function stack.push(17,183
function stack.push(push17,183
function stack.show(21,239
function stack.show(show21,239
pkg/compiler/_templates/recursive.xpcall.defer.lua,17
function f(3,14
pkg/compiler/_templates/test.lua,78
local function dofuss(5,77
local function w_(9,120
local function w(11,166
pkg/compiler/allport/fin.lua,573
function ___ipairsZeroCheck(18,444
function ___assertIsArray(96,2168
function ___lenz(108,2387
function ___st(118,2599
function ___mapAndJoinStrings(191,4329
function()(292,6934
function()(319,7681
function ___newAnyArrayValue(701,18535
function(this,(this813,21448
function ___methodSet(1135,32460
function ___Chan(1373,40010
function ___interfaceStrHelper(1415,41557
function ___basicValue2kind(1469,43229
function field2strHelper(1546,45325
function typeKeyHelper(1555,45541
function ___zipairs(1742,50887
pkg/compiler/allport/full.lua,91
function __assertIsArray(3,59
function __new(13,230
function __mapAndJoinStrings(22,486
pkg/compiler/allport/half.lua,398
function __newAnyArrayValue(5,83
function __assertIsArray(45,1197
function __new(55,1368
function __mapAndJoinStrings(64,1624
function()(169,4316
function()(196,5086
function __interfaceStrHelper(1357,37078
function field2strHelper(1452,39922
function typeKeyHelper(1463,40274
function()(1573,43228
function()(1728,47870
pkg/compiler/attic/array.lua,181
local function stateless_iter(79,2467
function __gi_NewArray(100,3066
function __gi_clone2(138,3982
function __gi_UnpackArrayRaw(187,5488
function __gi_ArrayRaw(205,5806
pkg/compiler/attic/slice.lua,301
local function stateless_iter(102,3394
function __gi_NewSlice(124,4009
function __gi_UnpackSliceRaw(192,5956
function __gi_Raw(228,6707
function append(238,6876
function appendSlice(297,8401
function __copySlice(302,8487
function __subslice(344,9681
function ___gi_makeSlice(368,10402
pkg/compiler/attic/struct.lua,1333
function __starToAsterisk(50,1168
function __gi_createNewPointer(93,2353
function __st(143,3417
function __show_methods_desc(211,4978
local function stateless_iter(239,5756
function __structPrinter(250,6046
function __ifacePrinter(280,6887
function __reg:RegisterStruct(318,7921
function __reg:RegisterStruct(RegisterStruct318,7921
function __reg:RegisterInterface(353,9055
function __reg:RegisterInterface(RegisterInterface353,9055
function __reg:IsInterface(381,9823
function __reg:IsInterface(IsInterface381,9823
function __reg:GetInterfaceMethods(386,9925
function __reg:GetInterfaceMethods(GetInterfaceMethods386,9925
function __reg:GetPointeeMethodset(391,10028
function __reg:GetPointeeMethodset(GetPointeeMethodset391,10028
function __reg:NewInstance(418,10905
function __reg:NewInstance(NewInstance418,10905
function __reg:RemoveMethod(440,11453
function __reg:RemoveMethod(RemoveMethod440,11453
function __reg:AddMethod(472,12403
function __reg:AddMethod(AddMethod472,12403
function __gi_methodVal(505,13346
function __gi_count_methods(532,14131
function __gi_assertType(571,15272
function __gi_NewType(942,25680
function __ptrType(1560,47439
function __gi_mapArray(1610,48830
function __mapFuncOverTable(1628,49305
function __sliceType(1781,54832
function __arrayType(1864,56609
pkg/compiler/prelude/chan.lua,350
local function random_choice(138,4285
local function scheduler(225,6294
function __task_ready(296,8609
local function spawn(310,8943
local function altcopy(348,10054
local function altalldequeue(391,11078
local function altcanexec(401,11323
local function __fldcnt(446,12661
local function select(460,12997
local function f(671,19442
pkg/compiler/prelude/chan_test.lua,531
local function counter(7,88
local function main(14,231
local function main(31,642
local function a(53,1221
local function a(85,2339
local function b(90,2436
local function fib(108,2877
local function main(115,3028
local function main(138,3593
local function counter(166,4518
local function filter(174,4662
local function sieve(183,4873
local function main(194,5179
local function counter(213,5662
local function main(221,5806
pkg/compiler/prelude/complex.lua,1480
local function __truncateToInt(24,713
local function complex(33,872
local function real(44,1184
local function imag(57,1467
local function cexp(93,2261
local function conj(97,2303
local function cabs(103,2441
local function phase(122,2920
local function polar(128,3067
local function rect(139,3415
local function clog(150,3767
local function clogf(157,3997
local function csqrt(210,5249
function cmath.Sin(234,5626
function cmath.Sin(Sin234,5626
function cmath.Cos(238,5726
function cmath.Cos(Cos238,5726
function cmath.Tan(242,5827
function cmath.Tan(Tan242,5827
function __reducePi(249,6005
function __tanSeries(265,6515
function cmath.Cot(326,7726
function cmath.Cot(Cot326,7726
function cmath.Sinh(338,7951
function cmath.Sinh(Sinh338,7951
function cmath.Cosh(342,8052
function cmath.Cosh(Cosh342,8052
function cmath.Tanh(346,8153
function cmath.Tanh(Tanh346,8153
function cmath.Asin(366,8529
function cmath.Asin(Asin366,8529
function cmath.Acos(383,8970
function cmath.Acos(Acos383,8970
function cmath.Atan(386,9034
function cmath.Atan(Atan386,9034
function cmath.Atan2(391,9212
function cmath.Atan2(Atan2391,9212
function cmath.Asinh(400,9524
function cmath.Asinh(Asinh400,9524
function cmath.Acosh(403,9580
function cmath.Acosh(Acosh403,9580
function cmath.Atanh(406,9651
function cmath.Atanh(Atanh406,9651
function cmath.ComplexLog(413,9809
function cmath.ComplexLog(ComplexLog413,9809
function check(471,11633
pkg/compiler/prelude/defer.lua,20
function __ts(4,75
pkg/compiler/prelude/dfs.lua,392
function __isBasicTyp(13,246
local function __makeRequiredTypes(38,927
function __newDfsNode(53,1283
function __addChild(96,2419
function __markGraphUnVisited(162,4156
function __emptyOutGraph(170,4311
function __dfsHelper(178,4515
function __showDFSOrder(196,4928
function __doDFS(205,5126
function __hasTypes(213,5277
function __NewDFSState(218,5339
function __testDFS(241,5877
pkg/compiler/prelude/int64.lua,33
function __newByteArray(66,1517
pkg/compiler/prelude/math.lua,46
function __max(40,801
function __min(47,877
pkg/compiler/prelude/prelude.lua,70
function __gi_GetRangeCheck(4,84
function __gi_SetRangeCheck(21,599
pkg/compiler/prelude/rune.lua,27
function __decodeRune(1,0
pkg/compiler/prelude/tsys.lua,1483
function __storeBuiltins(35,908
function __sorted_keys(44,1106
function __gls(54,1264
function __ls(64,1478
function __lst(83,2017
function __glst(96,2357
function __minifs.renameBasedFileExists(159,3795
function __minifs.renameBasedFileExists(renameBasedFileExists159,3795
function __minifs.dirExists(170,4026
function __minifs.dirExists(dirExists170,4026
function __lenz(264,6760
function __lenzi(284,7220
function __ipairsZeroCheck(299,7534
function __assertIsArray(403,9837
function __addressof(413,10008
function __st(425,10344
function __mapAndJoinStrings(544,13706
function()(646,16355
function()(674,17190
local function stateless_iter(957,25220
function __starToAsterisk(1210,33714
function __newAnyArrayValue(1249,34866
function(getter,(getter1430,39823
function __methodSet(1970,59222
function __gijitTypeToGoType(2181,66159
function __Chan(2235,67742
function __Chan_GopherJS(2271,68643
function __addChildTypesHelper(2291,69331
function __interfaceStrHelper(2346,71720
local function stateless_iter(2557,77849
function __basicValue2kind(2683,81638
function __field2strHelper(2773,84150
function __typeKeyHelper(2782,84375
function __zipairs(3008,90609
function __elim0(3031,91155
function __unpack0(3074,91876
function __lazy_ellipsis(3090,92114
function __printHelper(3099,92276
function __gijit_printQuoted(3116,92641
function __get_local_value(3339,99562
pkg/compiler/prelude/tutil.lua,51
function __ValEq(5,51
function __expectEq(43,897
pkg/compiler/prelude/utf8.lua,986
local function utf8charbytes 82,3119
local function utf8len 179,5201
local function utf8sub 200,5699
local function utf8replace 244,6572
local function utf8upper 272,7232
local function utf8lower 277,7384
local function utf8reverse 283,7517
local function utf8char(313,8122
local function utf8gensub(389,10163
local function binsearch(411,10690
local function classMatchGenerator(432,11206
local function inRanges(543,14655
local function utf8subWithBytes 564,15139
local function matcherGenerator(613,16094
local function simple(623,16282
local function star(633,16444
local function minus(643,16618
local function question(651,16761
local function capture(661,16931
local function captureStart(676,17357
local function captureStop(682,17485
local function balancer(689,17617
local function utf8find(945,24032
local function utf8match(951,24201
local function utf8gmatch(963,24445
local function replace(978,24825
local function utf8gsub(1012,25463
pkg/compiler/prelude/zgoro.lua,22
function __go(12,331
pkg/compiler/prelude/zgoro_test.lua,57
local function counter(7,71
local function main(15,187
pkg/utf8/utf8.lua,986
local function utf8charbytes 82,3157
local function utf8len 179,5239
local function utf8sub 200,5737
local function utf8replace 244,6610
local function utf8upper 272,7270
local function utf8lower 277,7422
local function utf8reverse 283,7555
local function utf8char(313,8160
local function utf8gensub(389,10141
local function binsearch(411,10668
local function classMatchGenerator(432,11164
local function inRanges(543,14613
local function utf8subWithBytes 564,15097
local function matcherGenerator(613,16052
local function simple(623,16240
local function star(633,16402
local function minus(643,16576
local function question(651,16719
local function capture(661,16889
local function captureStart(676,17315
local function captureStop(682,17443
local function balancer(689,17575
local function utf8find(945,23990
local function utf8match(951,24159
local function utf8gmatch(963,24403
local function replace(978,24783
local function utf8gsub(1012,25421
vendor/github.com/glycerine/golua/example/calls.lua,66
function call3(3,74
function call2(9,140
function call1(15,198
vendor/github.com/LuaJIT/LuaJIT/dynasm/dasm_arm.lua,1526
local function dumpactions(67,2072
local function writeactions(77,2374
local function wputxw(90,2813
local function waction(96,3008
local function wflush(104,3323
local function wputw(113,3722
local function wpos(119,3838
local function wputpos(126,3959
local function dumpglobals(149,4660
local function writeglobals(160,4921
local function writeglobalnames(171,5204
local function dumpexterns(197,5982
local function writeexternnames(206,6184
function _M.revdef(228,6850
function _M.revdef(revdef228,6850
local function parse_gpr(536,17004
local function parse_gpr_pm(554,17460
local function parse_vr(559,17587
local function parse_reglist(571,17880
local function parse_vrlist(585,18270
local function parse_imm(600,18751
local function parse_imm12(622,19375
local function parse_imm16(637,19690
local function parse_imm_load(650,20043
local function parse_shift(672,20568
local function parse_label(688,21023
local function parse_load(718,21856
local function parse_vload(790,24257
local function parse_template(829,25356
local function dumptypes(1053,32684
function _M.section(1069,33121
function _M.section(section1069,33121
function _M.dumparch(1077,33339
function _M.dumparch(dumparch1077,33339
function _M.dumpdef(1084,33531
function _M.dumpdef(dumpdef1084,33531
function _M.passcb(1093,33759
function _M.passcb(passcb1093,33759
function _M.setup(1099,33898
function _M.setup(setup1099,33898
function _M.mergemaps(1104,34011
function _M.mergemaps(mergemaps1104,34011
vendor/github.com/LuaJIT/LuaJIT/dynasm/dasm_arm64.lua,1819
local function dumpactions(67,2075
local function writeactions(77,2377
local function wputxw(90,2816
local function waction(96,3011
local function wflush(104,3326
local function wputw(113,3725
local function wpos(119,3841
local function wputpos(126,3962
local function dumpglobals(149,4663
local function writeglobals(160,4924
local function writeglobalnames(171,5207
local function dumpexterns(197,5985
local function writeexternnames(206,6187
function _M.revdef(228,6869
function _M.revdef(revdef228,6869
local function parse_reg(249,7354
local function parse_reg_base(275,8097
local function parse_number(294,8616
local function parse_imm(305,8830
local function parse_imm12(327,9458
local function parse_imm13(344,9867
local function parse_imm6(380,11035
local function parse_imm_load(395,11412
local function parse_fpimm(411,11876
local function parse_shift(429,12391
local function parse_lslx16(436,12600
local function parse_extend(446,12884
local function parse_cond(457,13193
local function parse_load(463,13354
local function parse_load_pair(534,15434
local function parse_label(563,16369
local function branch_type(593,17202
local function op_alias(610,17849
local function alias_bfx(618,18061
local function alias_bfiz(622,18148
local function parse_template(883,26187
function op_template(976,28938
local function dumptypes(1106,33216
function _M.section(1122,33653
function _M.section(section1122,33653
function _M.dumparch(1130,33871
function _M.dumparch(dumparch1130,33871
function _M.dumpdef(1137,34063
function _M.dumpdef(dumpdef1137,34063
function _M.passcb(1146,34291
function _M.passcb(passcb1146,34291
function _M.setup(1152,34430
function _M.setup(setup1152,34430
function _M.mergemaps(1157,34543
function _M.mergemaps(mergemaps1157,34543
vendor/github.com/LuaJIT/LuaJIT/dynasm/dasm_mips.lua,1200
local function dumpactions(69,2034
local function writeactions(79,2336
local function wputxw(92,2775
local function waction(98,2970
local function wflush(106,3298
local function wputw(115,3697
local function wpos(121,3813
local function wputpos(128,3934
local function dumpglobals(147,4540
local function writeglobals(158,4801
local function writeglobalnames(169,5084
local function dumpexterns(195,5862
local function writeexternnames(204,6064
function _M.revdef(221,6615
function _M.revdef(revdef221,6615
local function parse_gpr(660,19484
local function parse_fpr(678,19948
local function parse_imm(687,20142
local function parse_disp(711,20860
local function parse_index(734,21489
local function parse_label(744,21713
local function dumptypes(948,28763
function _M.section(964,29200
function _M.section(section964,29200
function _M.dumparch(972,29418
function _M.dumparch(dumparch972,29418
function _M.dumpdef(979,29610
function _M.dumpdef(dumpdef979,29610
function _M.passcb(988,29838
function _M.passcb(passcb988,29838
function _M.setup(994,29977
function _M.setup(setup994,29977
function _M.mergemaps(999,30090
function _M.mergemaps(mergemaps999,30090
vendor/github.com/LuaJIT/LuaJIT/dynasm/dasm_ppc.lua,1483
local function dumpactions(69,2046
local function writeactions(79,2348
local function wputxw(92,2787
local function waction(98,2982
local function wflush(106,3297
local function wputw(115,3696
local function wpos(121,3810
local function wputpos(128,3931
local function dumpglobals(147,4537
local function writeglobals(158,4798
local function writeglobalnames(169,5081
local function dumpexterns(195,5859
local function writeexternnames(204,6061
function _M.revdef(221,6603
function _M.revdef(revdef221,6603
local function op_alias(235,6874
local function parse_gpr(1455,42793
local function parse_fpr(1473,43257
local function parse_vr(1482,43451
local function parse_vs(1491,43644
local function parse_cr(1500,43838
local function parse_cond(1506,44000
local function parse_number(1527,44537
local function parse_imm(1538,44751
local function parse_shiftmask(1562,45476
local function parse_disp(1580,45999
local function parse_u5disp(1599,46595
local function parse_label(1618,47212
local function dumptypes(1859,55898
function _M.section(1875,56335
function _M.section(section1875,56335
function _M.dumparch(1883,56553
function _M.dumparch(dumparch1883,56553
function _M.dumpdef(1890,56745
function _M.dumpdef(dumpdef1890,56745
function _M.passcb(1899,56973
function _M.passcb(passcb1899,56973
function _M.setup(1905,57112
function _M.setup(setup1905,57112
function _M.mergemaps(1910,57225
function _M.mergemaps(mergemaps1910,57225
vendor/github.com/LuaJIT/LuaJIT/dynasm/dasm_x86.lua,1860
local function dumpactions(110,3427
local function writeactions(120,3729
local function wputxb(140,4282
local function waction(146,4470
local function wvreg(153,4710
local function wcall(168,5109
local function dedupechunk(173,5281
local function wflush(186,5672
local function wputb(197,6101
local function dumpglobals(216,6687
local function writeglobals(227,6948
local function writeglobalnames(238,7248
local function dumpexterns(262,7980
local function writeexternnames(273,8243
local function mkrmap(301,9392
function _M.revdef(403,12660
function _M.revdef(revdef403,12660
local function dumpregs(408,12760
local function wputlabel(426,13327
local function wputsbarg(442,13664
local function wputbarg(453,13925
local function wputwarg(463,14150
local function wputdarg(473,14415
local function wputszarg(488,14765
local function wputop(497,15072
local function wputmodrm(561,16949
local function wputmrmsib(567,17158
local function opmodestr(656,20052
local function toint(666,20281
local function immexpr(677,20518
local function dispexpr(709,21328
local function rtexpr(733,22072
local function parseoperand(752,22672
local function dopattern(1791,56348
local function templatehelp(1937,61052
local function matchtm(1951,61461
function map_op.mov64_2(2034,63914
function map_op.mov64_2(mov64_22034,63914
local function op_data(2077,65188
local function dumptypes(2231,70129
function _M.section(2247,70590
function _M.section(section2247,70590
function _M.dumparch(2256,70817
function _M.dumparch(dumparch2256,70817
function _M.dumpdef(2264,71025
function _M.dumpdef(dumpdef2264,71025
function _M.passcb(2273,71253
function _M.passcb(passcb2273,71253
function _M.setup(2279,71392
function _M.setup(setup2279,71392
function _M.mergemaps(2284,71505
function _M.mergemaps(mergemaps2284,71505
vendor/github.com/LuaJIT/LuaJIT/dynasm/dynasm.lua,2323
local function wline(72,2733
local function wcomment(79,2955
local function wsync(86,3105
local function wflush(94,3342
local function wdumplines(98,3410
local function werror(112,3811
local function wfatal(117,3963
local function wwarn(123,4074
local function wprinterr(129,4258
local function opterror(153,4896
local function optparam(160,5029
function opt_map.D(196,6072
function opt_map.D(D196,6072
function opt_map.U(209,6406
function opt_map.U(U209,6406
local function definesubst_one(221,6612
local function definesubst(227,6786
local function dumpdefines(239,7099
local function cond_eval(261,7684
local function stmtskip(284,8321
local function checkconds(345,9824
local function pathopen(354,10120
local function dumpmacros(475,14219
local function checkmacros(493,14679
local function dumpcaptures(554,16287
local function checkcaptures(571,16723
local function dumpsections(609,17935
function require(622,18293
local function loadarch(631,18525
function opt_map.dumparch(642,18928
function opt_map.dumparch(dumparch642,18928
local function dumpdef(728,21238
local function splitstmt_one(743,21593
local function splitstmt(760,22052
local function doline(827,23958
local function dasmhead(874,24992
local function writefile(908,25693
local function translate(929,26139
function opt_map.help(972,27040
function opt_map.help(help972,27040
function opt_map.version(1003,28182
function opt_map.version(version1003,28182
function opt_map.outfile(1010,28379
function opt_map.outfile(outfile1010,28379
function opt_map.include(1011,28445
function opt_map.include(include1011,28445
function opt_map.ccomment(1012,28521
function opt_map.ccomment(ccomment1012,28521
function opt_map.cppcomment(1013,28601
function opt_map.cppcomment(cppcomment1013,28601
function opt_map.nocomment(1014,28680
function opt_map.nocomment(nocomment1014,28680
function opt_map.maccomment(1015,28735
function opt_map.maccomment(maccomment1015,28735
function opt_map.nolineno(1016,28793
function opt_map.nolineno(nolineno1016,28793
function opt_map.flushline(1017,28843
function opt_map.flushline(flushline1017,28843
function opt_map.dumpdef(1018,28899
function opt_map.dumpdef(dumpdef1018,28899
local function parseopt(1032,29343
local function parseargs(1042,29612
vendor/github.com/LuaJIT/LuaJIT/src/host/genlibbc.lua,343
local function usage(18,730
local function parse_arg(24,872
local function read_files(38,1139
local function transform_lua(48,1329
local function read_uleb128(63,1719
local function fixup_dump(89,2280
local function find_defs(135,3326
local function gen_header(147,3680
local function w(149,3727
local function write_file(175,4471
vendor/github.com/LuaJIT/LuaJIT/src/host/genminilua.lua,831
local function usage(14,602
local function find_sources(20,747
local function read_sources(142,4351
local function merge_includes(155,4617
local function get_license(168,5032
local function fold_lines(172,5121
local function save_str(178,5209
local function save_strings(184,5308
local function restore_strings(189,5429
local function def_istrue(195,5563
local function preprocess(216,6010
local function merge_header(261,7254
local function strip_unused1(269,7540
local function strip_unused2(275,7706
local function strip_unused3(279,7794
local function strip_comments(307,9096
local function strip_whitespace(311,9172
local function rename_tokens1(319,9380
local function rename_tokens2(325,9551
local function func_gather(330,9681
local function func_visit(383,10956
local function func_collect(398,11250
vendor/github.com/LuaJIT/LuaJIT/src/jit/bc.lua,230
local function ctlsub(57,2056
local function bcline(66,2268
local function bctargets(116,3813
local function bcdump(127,4107
local function h_list(154,4829
local function bclistoff(159,4913
local function bcliston(169,5141
vendor/github.com/LuaJIT/LuaJIT/src/jit/bcsave.lua,810
local function usage(22,800
local function check(41,1458
local function readfile(48,1597
local function savefile(54,1757
local function checkarg(75,2315
local function detecttype(81,2462
local function checkmodname(86,2588
local function detectmodname(91,2728
local function bcsave_tail(107,3207
local function bcsave_raw(113,3388
local function bcsave_c(118,3495
local function bcsave_elfobj(150,4236
local function f32(210,5851
function f16(214,5969
function fofs(217,6092
local function bcsave_peobj(294,8500
local function f32(348,9724
function f16(352,9823
local function bcsave_machobj(401,11228
local function aligned(502,13753
local function bcsave_obj(564,15849
local function bclist(578,16287
local function bcsave(583,16414
local function docmd(603,16845
vendor/github.com/LuaJIT/LuaJIT/src/jit/dis_arm.lua,343
local function putop(423,11574
local function unknown(445,12171
local function fmtload(450,12301
local function fmtvload(488,13580
local function fmtvr(500,13921
local function disass_ins(509,14194
local function disass_block(652,18482
local function create(661,18762
local function disass(673,19043
local function regname(678,19155
vendor/github.com/LuaJIT/LuaJIT/src/jit/dis_arm64.lua,471
local function putop(747,17880
local function unknown(767,18385
local function match_reg(771,18472
local function fmt_hex32(775,18574
local function decode_imm13(785,18765
local function parse_immpc(822,19894
local function parse_fpimm8(836,20342
local function prefer_bfx(843,20573
local function disass_ins(859,20956
local function disass_block(1179,30034
local function create(1188,30314
local function disass(1200,30595
local function regname(1205,30707
vendor/github.com/LuaJIT/LuaJIT/src/jit/dis_mips.lua,375
local function putop(248,8400
local function unknown(266,8893
local function get_be(270,8980
local function get_le(276,9152
local function disass_ins(283,9361
local function disass_block(392,12605
local function create(402,12920
local function create_el(414,13146
local function disass(421,13337
local function disass_el(425,13416
local function regname(430,13534
vendor/github.com/LuaJIT/LuaJIT/src/jit/dis_ppc.lua,276
local function condfmt(387,14260
local function putop(398,14578
local function unknown(416,15071
local function disass_ins(421,15195
local function disass_block(553,19404
local function create(563,19719
local function disass(575,20000
local function regname(580,20112
vendor/github.com/LuaJIT/LuaJIT/src/jit/dis_x86.lua,560
local function putop(401,16950
local function clearprefixes(444,18547
local function incomplete(451,18829
local function unknown(458,18978
local function getimm(464,19111
local function putpat(482,19578
local function getmrm(678,25818
local function dispatch(691,26093
local function dispatchmap(718,27175
local function disass_block(865,31298
local function create(880,31732
local function create64(894,32014
local function disass(903,32252
local function disass64(907,32331
local function regname(912,32447
local function regname64(917,32546
vendor/github.com/LuaJIT/LuaJIT/src/jit/dump.lua,793
local function fillsymtab_tr(85,3509
local function fillsymtab(102,3956
local function dumpwrite(133,4718
local function dump_mcode(138,4795
local function colorize_text(216,6240
local function colorize_ansi(220,6288
local function colorize_html(230,6588
local function ctlsub(292,8524
local function fmtfunc(300,8707
local function formatk(313,8955
local function printsnap(353,10095
local function dump_snap(377,10768
local function ridsp_name(388,11082
local function dumpcallfunc(400,11537
local function dumpcallargs(418,11977
local function dump_ir(439,12468
local function fmterr(541,15388
local function dump_trace(550,15605
local function dump_record(585,16869
local function dump_texit(611,17602
local function dumpoff(643,18435
local function dumpon(655,18721
vendor/github.com/LuaJIT/LuaJIT/src/jit/p.lua,209
local function prof_cb(71,2572
local function prof_top(121,3987
local function prof_annotate(151,4783
local function prof_finish(225,6765
local function prof_start(245,7210
local function start(296,8774
vendor/github.com/LuaJIT/LuaJIT/src/jit/v.lua,163
local function fmtfunc(76,3213
local function fmterr(90,3492
local function dump_trace(99,3709
local function dumpoff(142,5130
local function dumpon(152,5361
vendor/github.com/majek/lua-channels/examples/sieve.lua,116
local function counter(3,38
local function filter(11,140
local function sieve(20,303
local function main(31,549
vendor/github.com/majek/lua-channels/examples/test1.lua,42
function counter(3,38
function a(11,144
vendor/github.com/majek/lua-channels/examples/test2.lua,36
function a(4,39
function b(12,245
vendor/github.com/majek/lua-channels/lua-channels.lua,872
local function random_choice(82,2788
local function scheduler(166,4636
local function task_ready(199,5515
local function spawn(203,5586
local function altcopy(230,6390
local function altalldequeue(266,7254
local function altcanexec(276,7499
local function chanalt(312,8551
local function f(424,11677
local function counter(454,12344
local function main(461,12487
local function main(478,12898
local function a(500,13477
local function a(532,14575
local function b(537,14672
local function fib(555,15113
local function main(562,15264
local function main(585,15829
local function counter(613,16754
local function filter(621,16898
local function sieve(630,17109
local function main(641,17415
local function counter(660,17898
local function main(668,18042
vendor/github.com/stepelu/lua-sci/alg.lua,1444
local function array_alloc(48,1867
local function array_map(55,2104
local function array_copy_data(62,2339
local function array_copy_data_offset(67,2496
local function array_clear(72,2677
local function mem_stack_data(83,2973
local function new_mem_stack_ct(88,3074
local function stack_array(116,3813
local function stack_clear(122,4057
local function same_type_check_2(193,6114
local function same_type_check_3(199,6249
local function dimensions_mat(206,6426
local function dimensions_mat_same_check(214,6566
local function dimensions_mat_square_check(221,6746
local function dimensions_mul_check_2(227,6863
local function dimensions_mul_check_3(236,7121
local function dimensions_pow_check_1(242,7305
local function dimensions_pow_check_2(248,7448
local function __mul(254,7610
local function mul(269,7963
local function pow_recursive(276,8128
local function pow_dispatch(296,8696
local function __pow(310,9022
local function pow(318,9226
local function sum(326,9405
local function prod(332,9495
local function trace(338,9586
local function rep(349,9840
local function join_1(448,12081
local function join_${N}(456,12243
local function join_n(474,12729
local function unsupported_element_ct(513,13676
local function new_array_ct(517,13806
local function alg_typeof(709,19499
local function vec(723,19985
local function mat(730,20126
local function tovec(740,20359
local function tomat(752,20579
vendor/github.com/stepelu/lua-sci/complex.lua,28
local function cabs(35,925
vendor/github.com/stepelu/lua-sci/diff.lua,232
local function dnlogbeta(113,4085
local function dnbeta(121,4372
local function dphi(126,4472
local function dnmax(131,4598
local function dnmin(141,4949
local function derivativef(270,9350
local function gradientf(294,10224
vendor/github.com/stepelu/lua-sci/dist/_gamma.lua,65
local function marstang(25,987
local function sampleab(36,1325
vendor/github.com/stepelu/lua-sci/dist/_uniform.lua,31
local function mvdist(58,1476
vendor/github.com/stepelu/lua-sci/fmax.lua,29
local function tofmax(7,273
vendor/github.com/stepelu/lua-sci/fmin/_de.lua,762
local function rand_1_bin(34,1444
local function rand_2_bin(42,1674
local function randtobest_2_bin(50,1977
local function currenttorand_1(59,2335
local function sample_strategy_indices(75,2790
local function sample_int(86,3118
local function sample_distinct_indices(92,3328
local function sample_F(109,3994
local function sample_K(115,4084
local function sample_CR(123,4285
local function sample_mutations(131,4489
local function nan_to_inf(148,4873
local function compare(153,5011
local function updatemin(164,5399
local function range(174,5719
local function stop_x_range_no_violation(186,5970
local function linear_lt(203,6375
local function hyper_cube_constrain(207,6438
local function rows_as_vec(217,6631
local function optim(228,6818
vendor/github.com/stepelu/lua-sci/fmin/_lbfgs.lua,361
local function lbfgs_param(24,547
local function vecadd(132,5736
local function vecdiff(136,5813
local function vecmul(140,5889
local function vecset(145,5999
local function veccpy(149,6061