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
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
#![allow(bad_style)]
use libc::*;
pub const JIT_NATIVE_INT64: u32 = 1;
pub const JIT_MEMORY_OK: u32 = 0;
pub const JIT_MEMORY_RESTART: u32 = 1;
pub const JIT_MEMORY_TOO_BIG: u32 = 2;
pub const JIT_MEMORY_ERROR: u32 = 3;
pub const JIT_OPTION_CACHE_LIMIT: u32 = 10000;
pub const JIT_OPTION_CACHE_PAGE_SIZE: u32 = 10001;
pub const JIT_OPTION_PRE_COMPILE: u32 = 10002;
pub const JIT_OPTION_DONT_FOLD: u32 = 10003;
pub const JIT_OPTION_POSITION_INDEPENDENT: u32 = 10004;
pub const JIT_OPTION_CACHE_MAX_PAGE_FACTOR: u32 = 10005;
pub const JIT_TYPE_INVALID: i32 = -1;
pub const JIT_TYPE_VOID: u32 = 0;
pub const JIT_TYPE_SBYTE: u32 = 1;
pub const JIT_TYPE_UBYTE: u32 = 2;
pub const JIT_TYPE_SHORT: u32 = 3;
pub const JIT_TYPE_USHORT: u32 = 4;
pub const JIT_TYPE_INT: u32 = 5;
pub const JIT_TYPE_UINT: u32 = 6;
pub const JIT_TYPE_NINT: u32 = 7;
pub const JIT_TYPE_NUINT: u32 = 8;
pub const JIT_TYPE_LONG: u32 = 9;
pub const JIT_TYPE_ULONG: u32 = 10;
pub const JIT_TYPE_FLOAT32: u32 = 11;
pub const JIT_TYPE_FLOAT64: u32 = 12;
pub const JIT_TYPE_NFLOAT: u32 = 13;
pub const JIT_TYPE_MAX_PRIMITIVE: u32 = 13;
pub const JIT_TYPE_STRUCT: u32 = 14;
pub const JIT_TYPE_UNION: u32 = 15;
pub const JIT_TYPE_SIGNATURE: u32 = 16;
pub const JIT_TYPE_PTR: u32 = 17;
pub const JIT_TYPE_FIRST_TAGGED: u32 = 32;
pub const JIT_TYPETAG_NAME: u32 = 10000;
pub const JIT_TYPETAG_STRUCT_NAME: u32 = 10001;
pub const JIT_TYPETAG_UNION_NAME: u32 = 10002;
pub const JIT_TYPETAG_ENUM_NAME: u32 = 10003;
pub const JIT_TYPETAG_CONST: u32 = 10004;
pub const JIT_TYPETAG_VOLATILE: u32 = 10005;
pub const JIT_TYPETAG_REFERENCE: u32 = 10006;
pub const JIT_TYPETAG_OUTPUT: u32 = 10007;
pub const JIT_TYPETAG_RESTRICT: u32 = 10008;
pub const JIT_TYPETAG_SYS_BOOL: u32 = 10009;
pub const JIT_TYPETAG_SYS_CHAR: u32 = 10010;
pub const JIT_TYPETAG_SYS_SCHAR: u32 = 10011;
pub const JIT_TYPETAG_SYS_UCHAR: u32 = 10012;
pub const JIT_TYPETAG_SYS_SHORT: u32 = 10013;
pub const JIT_TYPETAG_SYS_USHORT: u32 = 10014;
pub const JIT_TYPETAG_SYS_INT: u32 = 10015;
pub const JIT_TYPETAG_SYS_UINT: u32 = 10016;
pub const JIT_TYPETAG_SYS_LONG: u32 = 10017;
pub const JIT_TYPETAG_SYS_ULONG: u32 = 10018;
pub const JIT_TYPETAG_SYS_LONGLONG: u32 = 10019;
pub const JIT_TYPETAG_SYS_ULONGLONG: u32 = 10020;
pub const JIT_TYPETAG_SYS_FLOAT: u32 = 10021;
pub const JIT_TYPETAG_SYS_DOUBLE: u32 = 10022;
pub const JIT_TYPETAG_SYS_LONGDOUBLE: u32 = 10023;
pub const JIT_DEBUGGER_TYPE_QUIT: u32 = 0;
pub const JIT_DEBUGGER_TYPE_HARD_BREAKPOINT: u32 = 1;
pub const JIT_DEBUGGER_TYPE_SOFT_BREAKPOINT: u32 = 2;
pub const JIT_DEBUGGER_TYPE_USER_BREAKPOINT: u32 = 3;
pub const JIT_DEBUGGER_TYPE_ATTACH_THREAD: u32 = 4;
pub const JIT_DEBUGGER_TYPE_DETACH_THREAD: u32 = 5;
pub const JIT_DEBUGGER_FLAG_THREAD: u32 = 1;
pub const JIT_DEBUGGER_FLAG_FUNCTION: u32 = 2;
pub const JIT_DEBUGGER_FLAG_DATA1: u32 = 4;
pub const JIT_DEBUGGER_FLAG_DATA2: u32 = 8;
pub const JIT_DEBUGGER_DATA1_FIRST: u32 = 10000;
pub const JIT_DEBUGGER_DATA1_LINE: u32 = 10000;
pub const JIT_DEBUGGER_DATA1_ENTER: u32 = 10001;
pub const JIT_DEBUGGER_DATA1_LEAVE: u32 = 10002;
pub const JIT_DEBUGGER_DATA1_THROW: u32 = 10003;
pub const JIT_READELF_FLAG_FORCE: u32 = 1;
pub const JIT_READELF_FLAG_DEBUG: u32 = 2;
pub const JIT_READELF_OK: u32 = 0;
pub const JIT_READELF_CANNOT_OPEN: u32 = 1;
pub const JIT_READELF_NOT_ELF: u32 = 2;
pub const JIT_READELF_WRONG_ARCH: u32 = 3;
pub const JIT_READELF_BAD_FORMAT: u32 = 4;
pub const JIT_READELF_MEMORY: u32 = 5;
pub const JIT_RESULT_OK: u32 = 1;
pub const JIT_RESULT_OVERFLOW: u32 = 0;
pub const JIT_RESULT_ARITHMETIC: i32 = -1;
pub const JIT_RESULT_DIVISION_BY_ZERO: i32 = -2;
pub const JIT_RESULT_COMPILE_ERROR: i32 = -3;
pub const JIT_RESULT_OUT_OF_MEMORY: i32 = -4;
pub const JIT_RESULT_NULL_REFERENCE: i32 = -5;
pub const JIT_RESULT_NULL_FUNCTION: i32 = -6;
pub const JIT_RESULT_CALLED_NESTED: i32 = -7;
pub const JIT_RESULT_OUT_OF_BOUNDS: i32 = -8;
pub const JIT_RESULT_UNDEFINED_LABEL: i32 = -9;
pub const JIT_RESULT_MEMORY_FULL: i32 = -10000;
pub const JIT_OPTLEVEL_NONE: u32 = 0;
pub const JIT_OPTLEVEL_NORMAL: u32 = 1;
pub const JIT_CALL_NOTHROW: u32 = 1;
pub const JIT_CALL_NORETURN: u32 = 2;
pub const JIT_CALL_TAIL: u32 = 4;
pub const JITOM_MODIFIER_ACCESS_MASK: u32 = 7;
pub const JITOM_MODIFIER_PUBLIC: u32 = 0;
pub const JITOM_MODIFIER_PRIVATE: u32 = 1;
pub const JITOM_MODIFIER_PROTECTED: u32 = 2;
pub const JITOM_MODIFIER_PACKAGE: u32 = 3;
pub const JITOM_MODIFIER_PACKAGE_OR_PROTECTED: u32 = 4;
pub const JITOM_MODIFIER_PACKAGE_AND_PROTECTED: u32 = 5;
pub const JITOM_MODIFIER_OTHER1: u32 = 6;
pub const JITOM_MODIFIER_OTHER2: u32 = 7;
pub const JITOM_MODIFIER_STATIC: u32 = 8;
pub const JITOM_MODIFIER_VIRTUAL: u32 = 16;
pub const JITOM_MODIFIER_NEW_SLOT: u32 = 32;
pub const JITOM_MODIFIER_ABSTRACT: u32 = 64;
pub const JITOM_MODIFIER_LITERAL: u32 = 128;
pub const JITOM_MODIFIER_CTOR: u32 = 256;
pub const JITOM_MODIFIER_STATIC_CTOR: u32 = 512;
pub const JITOM_MODIFIER_DTOR: u32 = 1024;
pub const JITOM_MODIFIER_INTERFACE: u32 = 2048;
pub const JITOM_MODIFIER_VALUE: u32 = 4096;
pub const JITOM_MODIFIER_FINAL: u32 = 8192;
pub const JITOM_MODIFIER_DELETE: u32 = 16384;
pub const JITOM_MODIFIER_REFERENCE_COUNTED: u32 = 32768;
pub const JITOM_TYPETAG_CLASS: u32 = 11000;
pub const JITOM_TYPETAG_VALUE: u32 = 11001;
pub const JIT_OP_NOP: u32 = 0;
pub const JIT_OP_TRUNC_SBYTE: u32 = 1;
pub const JIT_OP_TRUNC_UBYTE: u32 = 2;
pub const JIT_OP_TRUNC_SHORT: u32 = 3;
pub const JIT_OP_TRUNC_USHORT: u32 = 4;
pub const JIT_OP_TRUNC_INT: u32 = 5;
pub const JIT_OP_TRUNC_UINT: u32 = 6;
pub const JIT_OP_CHECK_SBYTE: u32 = 7;
pub const JIT_OP_CHECK_UBYTE: u32 = 8;
pub const JIT_OP_CHECK_SHORT: u32 = 9;
pub const JIT_OP_CHECK_USHORT: u32 = 10;
pub const JIT_OP_CHECK_INT: u32 = 11;
pub const JIT_OP_CHECK_UINT: u32 = 12;
pub const JIT_OP_LOW_WORD: u32 = 13;
pub const JIT_OP_EXPAND_INT: u32 = 14;
pub const JIT_OP_EXPAND_UINT: u32 = 15;
pub const JIT_OP_CHECK_LOW_WORD: u32 = 16;
pub const JIT_OP_CHECK_SIGNED_LOW_WORD: u32 = 17;
pub const JIT_OP_CHECK_LONG: u32 = 18;
pub const JIT_OP_CHECK_ULONG: u32 = 19;
pub const JIT_OP_FLOAT32_TO_INT: u32 = 20;
pub const JIT_OP_FLOAT32_TO_UINT: u32 = 21;
pub const JIT_OP_FLOAT32_TO_LONG: u32 = 22;
pub const JIT_OP_FLOAT32_TO_ULONG: u32 = 23;
pub const JIT_OP_CHECK_FLOAT32_TO_INT: u32 = 24;
pub const JIT_OP_CHECK_FLOAT32_TO_UINT: u32 = 25;
pub const JIT_OP_CHECK_FLOAT32_TO_LONG: u32 = 26;
pub const JIT_OP_CHECK_FLOAT32_TO_ULONG: u32 = 27;
pub const JIT_OP_INT_TO_FLOAT32: u32 = 28;
pub const JIT_OP_UINT_TO_FLOAT32: u32 = 29;
pub const JIT_OP_LONG_TO_FLOAT32: u32 = 30;
pub const JIT_OP_ULONG_TO_FLOAT32: u32 = 31;
pub const JIT_OP_FLOAT32_TO_FLOAT64: u32 = 32;
pub const JIT_OP_FLOAT64_TO_INT: u32 = 33;
pub const JIT_OP_FLOAT64_TO_UINT: u32 = 34;
pub const JIT_OP_FLOAT64_TO_LONG: u32 = 35;
pub const JIT_OP_FLOAT64_TO_ULONG: u32 = 36;
pub const JIT_OP_CHECK_FLOAT64_TO_INT: u32 = 37;
pub const JIT_OP_CHECK_FLOAT64_TO_UINT: u32 = 38;
pub const JIT_OP_CHECK_FLOAT64_TO_LONG: u32 = 39;
pub const JIT_OP_CHECK_FLOAT64_TO_ULONG: u32 = 40;
pub const JIT_OP_INT_TO_FLOAT64: u32 = 41;
pub const JIT_OP_UINT_TO_FLOAT64: u32 = 42;
pub const JIT_OP_LONG_TO_FLOAT64: u32 = 43;
pub const JIT_OP_ULONG_TO_FLOAT64: u32 = 44;
pub const JIT_OP_FLOAT64_TO_FLOAT32: u32 = 45;
pub const JIT_OP_NFLOAT_TO_INT: u32 = 46;
pub const JIT_OP_NFLOAT_TO_UINT: u32 = 47;
pub const JIT_OP_NFLOAT_TO_LONG: u32 = 48;
pub const JIT_OP_NFLOAT_TO_ULONG: u32 = 49;
pub const JIT_OP_CHECK_NFLOAT_TO_INT: u32 = 50;
pub const JIT_OP_CHECK_NFLOAT_TO_UINT: u32 = 51;
pub const JIT_OP_CHECK_NFLOAT_TO_LONG: u32 = 52;
pub const JIT_OP_CHECK_NFLOAT_TO_ULONG: u32 = 53;
pub const JIT_OP_INT_TO_NFLOAT: u32 = 54;
pub const JIT_OP_UINT_TO_NFLOAT: u32 = 55;
pub const JIT_OP_LONG_TO_NFLOAT: u32 = 56;
pub const JIT_OP_ULONG_TO_NFLOAT: u32 = 57;
pub const JIT_OP_NFLOAT_TO_FLOAT32: u32 = 58;
pub const JIT_OP_NFLOAT_TO_FLOAT64: u32 = 59;
pub const JIT_OP_FLOAT32_TO_NFLOAT: u32 = 60;
pub const JIT_OP_FLOAT64_TO_NFLOAT: u32 = 61;
pub const JIT_OP_IADD: u32 = 62;
pub const JIT_OP_IADD_OVF: u32 = 63;
pub const JIT_OP_IADD_OVF_UN: u32 = 64;
pub const JIT_OP_ISUB: u32 = 65;
pub const JIT_OP_ISUB_OVF: u32 = 66;
pub const JIT_OP_ISUB_OVF_UN: u32 = 67;
pub const JIT_OP_IMUL: u32 = 68;
pub const JIT_OP_IMUL_OVF: u32 = 69;
pub const JIT_OP_IMUL_OVF_UN: u32 = 70;
pub const JIT_OP_IDIV: u32 = 71;
pub const JIT_OP_IDIV_UN: u32 = 72;
pub const JIT_OP_IREM: u32 = 73;
pub const JIT_OP_IREM_UN: u32 = 74;
pub const JIT_OP_INEG: u32 = 75;
pub const JIT_OP_LADD: u32 = 76;
pub const JIT_OP_LADD_OVF: u32 = 77;
pub const JIT_OP_LADD_OVF_UN: u32 = 78;
pub const JIT_OP_LSUB: u32 = 79;
pub const JIT_OP_LSUB_OVF: u32 = 80;
pub const JIT_OP_LSUB_OVF_UN: u32 = 81;
pub const JIT_OP_LMUL: u32 = 82;
pub const JIT_OP_LMUL_OVF: u32 = 83;
pub const JIT_OP_LMUL_OVF_UN: u32 = 84;
pub const JIT_OP_LDIV: u32 = 85;
pub const JIT_OP_LDIV_UN: u32 = 86;
pub const JIT_OP_LREM: u32 = 87;
pub const JIT_OP_LREM_UN: u32 = 88;
pub const JIT_OP_LNEG: u32 = 89;
pub const JIT_OP_FADD: u32 = 90;
pub const JIT_OP_FSUB: u32 = 91;
pub const JIT_OP_FMUL: u32 = 92;
pub const JIT_OP_FDIV: u32 = 93;
pub const JIT_OP_FREM: u32 = 94;
pub const JIT_OP_FREM_IEEE: u32 = 95;
pub const JIT_OP_FNEG: u32 = 96;
pub const JIT_OP_DADD: u32 = 97;
pub const JIT_OP_DSUB: u32 = 98;
pub const JIT_OP_DMUL: u32 = 99;
pub const JIT_OP_DDIV: u32 = 100;
pub const JIT_OP_DREM: u32 = 101;
pub const JIT_OP_DREM_IEEE: u32 = 102;
pub const JIT_OP_DNEG: u32 = 103;
pub const JIT_OP_NFADD: u32 = 104;
pub const JIT_OP_NFSUB: u32 = 105;
pub const JIT_OP_NFMUL: u32 = 106;
pub const JIT_OP_NFDIV: u32 = 107;
pub const JIT_OP_NFREM: u32 = 108;
pub const JIT_OP_NFREM_IEEE: u32 = 109;
pub const JIT_OP_NFNEG: u32 = 110;
pub const JIT_OP_IAND: u32 = 111;
pub const JIT_OP_IOR: u32 = 112;
pub const JIT_OP_IXOR: u32 = 113;
pub const JIT_OP_INOT: u32 = 114;
pub const JIT_OP_ISHL: u32 = 115;
pub const JIT_OP_ISHR: u32 = 116;
pub const JIT_OP_ISHR_UN: u32 = 117;
pub const JIT_OP_LAND: u32 = 118;
pub const JIT_OP_LOR: u32 = 119;
pub const JIT_OP_LXOR: u32 = 120;
pub const JIT_OP_LNOT: u32 = 121;
pub const JIT_OP_LSHL: u32 = 122;
pub const JIT_OP_LSHR: u32 = 123;
pub const JIT_OP_LSHR_UN: u32 = 124;
pub const JIT_OP_BR: u32 = 125;
pub const JIT_OP_BR_IFALSE: u32 = 126;
pub const JIT_OP_BR_ITRUE: u32 = 127;
pub const JIT_OP_BR_IEQ: u32 = 128;
pub const JIT_OP_BR_INE: u32 = 129;
pub const JIT_OP_BR_ILT: u32 = 130;
pub const JIT_OP_BR_ILT_UN: u32 = 131;
pub const JIT_OP_BR_ILE: u32 = 132;
pub const JIT_OP_BR_ILE_UN: u32 = 133;
pub const JIT_OP_BR_IGT: u32 = 134;
pub const JIT_OP_BR_IGT_UN: u32 = 135;
pub const JIT_OP_BR_IGE: u32 = 136;
pub const JIT_OP_BR_IGE_UN: u32 = 137;
pub const JIT_OP_BR_LFALSE: u32 = 138;
pub const JIT_OP_BR_LTRUE: u32 = 139;
pub const JIT_OP_BR_LEQ: u32 = 140;
pub const JIT_OP_BR_LNE: u32 = 141;
pub const JIT_OP_BR_LLT: u32 = 142;
pub const JIT_OP_BR_LLT_UN: u32 = 143;
pub const JIT_OP_BR_LLE: u32 = 144;
pub const JIT_OP_BR_LLE_UN: u32 = 145;
pub const JIT_OP_BR_LGT: u32 = 146;
pub const JIT_OP_BR_LGT_UN: u32 = 147;
pub const JIT_OP_BR_LGE: u32 = 148;
pub const JIT_OP_BR_LGE_UN: u32 = 149;
pub const JIT_OP_BR_FEQ: u32 = 150;
pub const JIT_OP_BR_FNE: u32 = 151;
pub const JIT_OP_BR_FLT: u32 = 152;
pub const JIT_OP_BR_FLE: u32 = 153;
pub const JIT_OP_BR_FGT: u32 = 154;
pub const JIT_OP_BR_FGE: u32 = 155;
pub const JIT_OP_BR_FLT_INV: u32 = 156;
pub const JIT_OP_BR_FLE_INV: u32 = 157;
pub const JIT_OP_BR_FGT_INV: u32 = 158;
pub const JIT_OP_BR_FGE_INV: u32 = 159;
pub const JIT_OP_BR_DEQ: u32 = 160;
pub const JIT_OP_BR_DNE: u32 = 161;
pub const JIT_OP_BR_DLT: u32 = 162;
pub const JIT_OP_BR_DLE: u32 = 163;
pub const JIT_OP_BR_DGT: u32 = 164;
pub const JIT_OP_BR_DGE: u32 = 165;
pub const JIT_OP_BR_DLT_INV: u32 = 166;
pub const JIT_OP_BR_DLE_INV: u32 = 167;
pub const JIT_OP_BR_DGT_INV: u32 = 168;
pub const JIT_OP_BR_DGE_INV: u32 = 169;
pub const JIT_OP_BR_NFEQ: u32 = 170;
pub const JIT_OP_BR_NFNE: u32 = 171;
pub const JIT_OP_BR_NFLT: u32 = 172;
pub const JIT_OP_BR_NFLE: u32 = 173;
pub const JIT_OP_BR_NFGT: u32 = 174;
pub const JIT_OP_BR_NFGE: u32 = 175;
pub const JIT_OP_BR_NFLT_INV: u32 = 176;
pub const JIT_OP_BR_NFLE_INV: u32 = 177;
pub const JIT_OP_BR_NFGT_INV: u32 = 178;
pub const JIT_OP_BR_NFGE_INV: u32 = 179;
pub const JIT_OP_ICMP: u32 = 180;
pub const JIT_OP_ICMP_UN: u32 = 181;
pub const JIT_OP_LCMP: u32 = 182;
pub const JIT_OP_LCMP_UN: u32 = 183;
pub const JIT_OP_FCMPL: u32 = 184;
pub const JIT_OP_FCMPG: u32 = 185;
pub const JIT_OP_DCMPL: u32 = 186;
pub const JIT_OP_DCMPG: u32 = 187;
pub const JIT_OP_NFCMPL: u32 = 188;
pub const JIT_OP_NFCMPG: u32 = 189;
pub const JIT_OP_IEQ: u32 = 190;
pub const JIT_OP_INE: u32 = 191;
pub const JIT_OP_ILT: u32 = 192;
pub const JIT_OP_ILT_UN: u32 = 193;
pub const JIT_OP_ILE: u32 = 194;
pub const JIT_OP_ILE_UN: u32 = 195;
pub const JIT_OP_IGT: u32 = 196;
pub const JIT_OP_IGT_UN: u32 = 197;
pub const JIT_OP_IGE: u32 = 198;
pub const JIT_OP_IGE_UN: u32 = 199;
pub const JIT_OP_LEQ: u32 = 200;
pub const JIT_OP_LNE: u32 = 201;
pub const JIT_OP_LLT: u32 = 202;
pub const JIT_OP_LLT_UN: u32 = 203;
pub const JIT_OP_LLE: u32 = 204;
pub const JIT_OP_LLE_UN: u32 = 205;
pub const JIT_OP_LGT: u32 = 206;
pub const JIT_OP_LGT_UN: u32 = 207;
pub const JIT_OP_LGE: u32 = 208;
pub const JIT_OP_LGE_UN: u32 = 209;
pub const JIT_OP_FEQ: u32 = 210;
pub const JIT_OP_FNE: u32 = 211;
pub const JIT_OP_FLT: u32 = 212;
pub const JIT_OP_FLE: u32 = 213;
pub const JIT_OP_FGT: u32 = 214;
pub const JIT_OP_FGE: u32 = 215;
pub const JIT_OP_FLT_INV: u32 = 216;
pub const JIT_OP_FLE_INV: u32 = 217;
pub const JIT_OP_FGT_INV: u32 = 218;
pub const JIT_OP_FGE_INV: u32 = 219;
pub const JIT_OP_DEQ: u32 = 220;
pub const JIT_OP_DNE: u32 = 221;
pub const JIT_OP_DLT: u32 = 222;
pub const JIT_OP_DLE: u32 = 223;
pub const JIT_OP_DGT: u32 = 224;
pub const JIT_OP_DGE: u32 = 225;
pub const JIT_OP_DLT_INV: u32 = 226;
pub const JIT_OP_DLE_INV: u32 = 227;
pub const JIT_OP_DGT_INV: u32 = 228;
pub const JIT_OP_DGE_INV: u32 = 229;
pub const JIT_OP_NFEQ: u32 = 230;
pub const JIT_OP_NFNE: u32 = 231;
pub const JIT_OP_NFLT: u32 = 232;
pub const JIT_OP_NFLE: u32 = 233;
pub const JIT_OP_NFGT: u32 = 234;
pub const JIT_OP_NFGE: u32 = 235;
pub const JIT_OP_NFLT_INV: u32 = 236;
pub const JIT_OP_NFLE_INV: u32 = 237;
pub const JIT_OP_NFGT_INV: u32 = 238;
pub const JIT_OP_NFGE_INV: u32 = 239;
pub const JIT_OP_IS_FNAN: u32 = 240;
pub const JIT_OP_IS_FINF: u32 = 241;
pub const JIT_OP_IS_FFINITE: u32 = 242;
pub const JIT_OP_IS_DNAN: u32 = 243;
pub const JIT_OP_IS_DINF: u32 = 244;
pub const JIT_OP_IS_DFINITE: u32 = 245;
pub const JIT_OP_IS_NFNAN: u32 = 246;
pub const JIT_OP_IS_NFINF: u32 = 247;
pub const JIT_OP_IS_NFFINITE: u32 = 248;
pub const JIT_OP_FACOS: u32 = 249;
pub const JIT_OP_FASIN: u32 = 250;
pub const JIT_OP_FATAN: u32 = 251;
pub const JIT_OP_FATAN2: u32 = 252;
pub const JIT_OP_FCEIL: u32 = 253;
pub const JIT_OP_FCOS: u32 = 254;
pub const JIT_OP_FCOSH: u32 = 255;
pub const JIT_OP_FEXP: u32 = 256;
pub const JIT_OP_FFLOOR: u32 = 257;
pub const JIT_OP_FLOG: u32 = 258;
pub const JIT_OP_FLOG10: u32 = 259;
pub const JIT_OP_FPOW: u32 = 260;
pub const JIT_OP_FRINT: u32 = 261;
pub const JIT_OP_FROUND: u32 = 262;
pub const JIT_OP_FSIN: u32 = 263;
pub const JIT_OP_FSINH: u32 = 264;
pub const JIT_OP_FSQRT: u32 = 265;
pub const JIT_OP_FTAN: u32 = 266;
pub const JIT_OP_FTANH: u32 = 267;
pub const JIT_OP_FTRUNC: u32 = 268;
pub const JIT_OP_DACOS: u32 = 269;
pub const JIT_OP_DASIN: u32 = 270;
pub const JIT_OP_DATAN: u32 = 271;
pub const JIT_OP_DATAN2: u32 = 272;
pub const JIT_OP_DCEIL: u32 = 273;
pub const JIT_OP_DCOS: u32 = 274;
pub const JIT_OP_DCOSH: u32 = 275;
pub const JIT_OP_DEXP: u32 = 276;
pub const JIT_OP_DFLOOR: u32 = 277;
pub const JIT_OP_DLOG: u32 = 278;
pub const JIT_OP_DLOG10: u32 = 279;
pub const JIT_OP_DPOW: u32 = 280;
pub const JIT_OP_DRINT: u32 = 281;
pub const JIT_OP_DROUND: u32 = 282;
pub const JIT_OP_DSIN: u32 = 283;
pub const JIT_OP_DSINH: u32 = 284;
pub const JIT_OP_DSQRT: u32 = 285;
pub const JIT_OP_DTAN: u32 = 286;
pub const JIT_OP_DTANH: u32 = 287;
pub const JIT_OP_DTRUNC: u32 = 288;
pub const JIT_OP_NFACOS: u32 = 289;
pub const JIT_OP_NFASIN: u32 = 290;
pub const JIT_OP_NFATAN: u32 = 291;
pub const JIT_OP_NFATAN2: u32 = 292;
pub const JIT_OP_NFCEIL: u32 = 293;
pub const JIT_OP_NFCOS: u32 = 294;
pub const JIT_OP_NFCOSH: u32 = 295;
pub const JIT_OP_NFEXP: u32 = 296;
pub const JIT_OP_NFFLOOR: u32 = 297;
pub const JIT_OP_NFLOG: u32 = 298;
pub const JIT_OP_NFLOG10: u32 = 299;
pub const JIT_OP_NFPOW: u32 = 300;
pub const JIT_OP_NFRINT: u32 = 301;
pub const JIT_OP_NFROUND: u32 = 302;
pub const JIT_OP_NFSIN: u32 = 303;
pub const JIT_OP_NFSINH: u32 = 304;
pub const JIT_OP_NFSQRT: u32 = 305;
pub const JIT_OP_NFTAN: u32 = 306;
pub const JIT_OP_NFTANH: u32 = 307;
pub const JIT_OP_NFTRUNC: u32 = 308;
pub const JIT_OP_IABS: u32 = 309;
pub const JIT_OP_LABS: u32 = 310;
pub const JIT_OP_FABS: u32 = 311;
pub const JIT_OP_DABS: u32 = 312;
pub const JIT_OP_NFABS: u32 = 313;
pub const JIT_OP_IMIN: u32 = 314;
pub const JIT_OP_IMIN_UN: u32 = 315;
pub const JIT_OP_LMIN: u32 = 316;
pub const JIT_OP_LMIN_UN: u32 = 317;
pub const JIT_OP_FMIN: u32 = 318;
pub const JIT_OP_DMIN: u32 = 319;
pub const JIT_OP_NFMIN: u32 = 320;
pub const JIT_OP_IMAX: u32 = 321;
pub const JIT_OP_IMAX_UN: u32 = 322;
pub const JIT_OP_LMAX: u32 = 323;
pub const JIT_OP_LMAX_UN: u32 = 324;
pub const JIT_OP_FMAX: u32 = 325;
pub const JIT_OP_DMAX: u32 = 326;
pub const JIT_OP_NFMAX: u32 = 327;
pub const JIT_OP_ISIGN: u32 = 328;
pub const JIT_OP_LSIGN: u32 = 329;
pub const JIT_OP_FSIGN: u32 = 330;
pub const JIT_OP_DSIGN: u32 = 331;
pub const JIT_OP_NFSIGN: u32 = 332;
pub const JIT_OP_CHECK_NULL: u32 = 333;
pub const JIT_OP_CALL: u32 = 334;
pub const JIT_OP_CALL_TAIL: u32 = 335;
pub const JIT_OP_CALL_INDIRECT: u32 = 336;
pub const JIT_OP_CALL_INDIRECT_TAIL: u32 = 337;
pub const JIT_OP_CALL_VTABLE_PTR: u32 = 338;
pub const JIT_OP_CALL_VTABLE_PTR_TAIL: u32 = 339;
pub const JIT_OP_CALL_EXTERNAL: u32 = 340;
pub const JIT_OP_CALL_EXTERNAL_TAIL: u32 = 341;
pub const JIT_OP_RETURN: u32 = 342;
pub const JIT_OP_RETURN_INT: u32 = 343;
pub const JIT_OP_RETURN_LONG: u32 = 344;
pub const JIT_OP_RETURN_FLOAT32: u32 = 345;
pub const JIT_OP_RETURN_FLOAT64: u32 = 346;
pub const JIT_OP_RETURN_NFLOAT: u32 = 347;
pub const JIT_OP_RETURN_SMALL_STRUCT: u32 = 348;
pub const JIT_OP_IMPORT: u32 = 349;
pub const JIT_OP_THROW: u32 = 350;
pub const JIT_OP_RETHROW: u32 = 351;
pub const JIT_OP_LOAD_PC: u32 = 352;
pub const JIT_OP_LOAD_EXCEPTION_PC: u32 = 353;
pub const JIT_OP_ENTER_FINALLY: u32 = 354;
pub const JIT_OP_LEAVE_FINALLY: u32 = 355;
pub const JIT_OP_CALL_FINALLY: u32 = 356;
pub const JIT_OP_ENTER_FILTER: u32 = 357;
pub const JIT_OP_LEAVE_FILTER: u32 = 358;
pub const JIT_OP_CALL_FILTER: u32 = 359;
pub const JIT_OP_CALL_FILTER_RETURN: u32 = 360;
pub const JIT_OP_ADDRESS_OF_LABEL: u32 = 361;
pub const JIT_OP_COPY_LOAD_SBYTE: u32 = 362;
pub const JIT_OP_COPY_LOAD_UBYTE: u32 = 363;
pub const JIT_OP_COPY_LOAD_SHORT: u32 = 364;
pub const JIT_OP_COPY_LOAD_USHORT: u32 = 365;
pub const JIT_OP_COPY_INT: u32 = 366;
pub const JIT_OP_COPY_LONG: u32 = 367;
pub const JIT_OP_COPY_FLOAT32: u32 = 368;
pub const JIT_OP_COPY_FLOAT64: u32 = 369;
pub const JIT_OP_COPY_NFLOAT: u32 = 370;
pub const JIT_OP_COPY_STRUCT: u32 = 371;
pub const JIT_OP_COPY_STORE_BYTE: u32 = 372;
pub const JIT_OP_COPY_STORE_SHORT: u32 = 373;
pub const JIT_OP_ADDRESS_OF: u32 = 374;
pub const JIT_OP_INCOMING_REG: u32 = 375;
pub const JIT_OP_INCOMING_FRAME_POSN: u32 = 376;
pub const JIT_OP_OUTGOING_REG: u32 = 377;
pub const JIT_OP_RETURN_REG: u32 = 378;
pub const JIT_OP_RETRIEVE_FRAME_POINTER: u32 = 379;
pub const JIT_OP_PUSH_INT: u32 = 380;
pub const JIT_OP_PUSH_LONG: u32 = 381;
pub const JIT_OP_PUSH_FLOAT32: u32 = 382;
pub const JIT_OP_PUSH_FLOAT64: u32 = 383;
pub const JIT_OP_PUSH_NFLOAT: u32 = 384;
pub const JIT_OP_PUSH_STRUCT: u32 = 385;
pub const JIT_OP_POP_STACK: u32 = 386;
pub const JIT_OP_FLUSH_SMALL_STRUCT: u32 = 387;
pub const JIT_OP_SET_PARAM_INT: u32 = 388;
pub const JIT_OP_SET_PARAM_LONG: u32 = 389;
pub const JIT_OP_SET_PARAM_FLOAT32: u32 = 390;
pub const JIT_OP_SET_PARAM_FLOAT64: u32 = 391;
pub const JIT_OP_SET_PARAM_NFLOAT: u32 = 392;
pub const JIT_OP_SET_PARAM_STRUCT: u32 = 393;
pub const JIT_OP_PUSH_RETURN_AREA_PTR: u32 = 394;
pub const JIT_OP_LOAD_RELATIVE_SBYTE: u32 = 395;
pub const JIT_OP_LOAD_RELATIVE_UBYTE: u32 = 396;
pub const JIT_OP_LOAD_RELATIVE_SHORT: u32 = 397;
pub const JIT_OP_LOAD_RELATIVE_USHORT: u32 = 398;
pub const JIT_OP_LOAD_RELATIVE_INT: u32 = 399;
pub const JIT_OP_LOAD_RELATIVE_LONG: u32 = 400;
pub const JIT_OP_LOAD_RELATIVE_FLOAT32: u32 = 401;
pub const JIT_OP_LOAD_RELATIVE_FLOAT64: u32 = 402;
pub const JIT_OP_LOAD_RELATIVE_NFLOAT: u32 = 403;
pub const JIT_OP_LOAD_RELATIVE_STRUCT: u32 = 404;
pub const JIT_OP_STORE_RELATIVE_BYTE: u32 = 405;
pub const JIT_OP_STORE_RELATIVE_SHORT: u32 = 406;
pub const JIT_OP_STORE_RELATIVE_INT: u32 = 407;
pub const JIT_OP_STORE_RELATIVE_LONG: u32 = 408;
pub const JIT_OP_STORE_RELATIVE_FLOAT32: u32 = 409;
pub const JIT_OP_STORE_RELATIVE_FLOAT64: u32 = 410;
pub const JIT_OP_STORE_RELATIVE_NFLOAT: u32 = 411;
pub const JIT_OP_STORE_RELATIVE_STRUCT: u32 = 412;
pub const JIT_OP_ADD_RELATIVE: u32 = 413;
pub const JIT_OP_LOAD_ELEMENT_SBYTE: u32 = 414;
pub const JIT_OP_LOAD_ELEMENT_UBYTE: u32 = 415;
pub const JIT_OP_LOAD_ELEMENT_SHORT: u32 = 416;
pub const JIT_OP_LOAD_ELEMENT_USHORT: u32 = 417;
pub const JIT_OP_LOAD_ELEMENT_INT: u32 = 418;
pub const JIT_OP_LOAD_ELEMENT_LONG: u32 = 419;
pub const JIT_OP_LOAD_ELEMENT_FLOAT32: u32 = 420;
pub const JIT_OP_LOAD_ELEMENT_FLOAT64: u32 = 421;
pub const JIT_OP_LOAD_ELEMENT_NFLOAT: u32 = 422;
pub const JIT_OP_STORE_ELEMENT_BYTE: u32 = 423;
pub const JIT_OP_STORE_ELEMENT_SHORT: u32 = 424;
pub const JIT_OP_STORE_ELEMENT_INT: u32 = 425;
pub const JIT_OP_STORE_ELEMENT_LONG: u32 = 426;
pub const JIT_OP_STORE_ELEMENT_FLOAT32: u32 = 427;
pub const JIT_OP_STORE_ELEMENT_FLOAT64: u32 = 428;
pub const JIT_OP_STORE_ELEMENT_NFLOAT: u32 = 429;
pub const JIT_OP_MEMCPY: u32 = 430;
pub const JIT_OP_MEMMOVE: u32 = 431;
pub const JIT_OP_MEMSET: u32 = 432;
pub const JIT_OP_ALLOCA: u32 = 433;
pub const JIT_OP_MARK_OFFSET: u32 = 434;
pub const JIT_OP_MARK_BREAKPOINT: u32 = 435;
pub const JIT_OP_JUMP_TABLE: u32 = 436;
pub const JIT_OP_NUM_OPCODES: u32 = 437;
pub const JIT_OPCODE_DEST_MASK: u32 = 15;
pub const JIT_OPCODE_DEST_EMPTY: u32 = 0;
pub const JIT_OPCODE_DEST_INT: u32 = 1;
pub const JIT_OPCODE_DEST_LONG: u32 = 2;
pub const JIT_OPCODE_DEST_FLOAT32: u32 = 3;
pub const JIT_OPCODE_DEST_FLOAT64: u32 = 4;
pub const JIT_OPCODE_DEST_NFLOAT: u32 = 5;
pub const JIT_OPCODE_DEST_ANY: u32 = 6;
pub const JIT_OPCODE_SRC1_MASK: u32 = 240;
pub const JIT_OPCODE_SRC1_EMPTY: u32 = 0;
pub const JIT_OPCODE_SRC1_INT: u32 = 16;
pub const JIT_OPCODE_SRC1_LONG: u32 = 32;
pub const JIT_OPCODE_SRC1_FLOAT32: u32 = 48;
pub const JIT_OPCODE_SRC1_FLOAT64: u32 = 64;
pub const JIT_OPCODE_SRC1_NFLOAT: u32 = 80;
pub const JIT_OPCODE_SRC1_ANY: u32 = 96;
pub const JIT_OPCODE_SRC2_MASK: u32 = 3840;
pub const JIT_OPCODE_SRC2_EMPTY: u32 = 0;
pub const JIT_OPCODE_SRC2_INT: u32 = 256;
pub const JIT_OPCODE_SRC2_LONG: u32 = 512;
pub const JIT_OPCODE_SRC2_FLOAT32: u32 = 768;
pub const JIT_OPCODE_SRC2_FLOAT64: u32 = 1024;
pub const JIT_OPCODE_SRC2_NFLOAT: u32 = 1280;
pub const JIT_OPCODE_SRC2_ANY: u32 = 1536;
pub const JIT_OPCODE_IS_BRANCH: u32 = 4096;
pub const JIT_OPCODE_IS_CALL: u32 = 8192;
pub const JIT_OPCODE_IS_CALL_EXTERNAL: u32 = 16384;
pub const JIT_OPCODE_IS_REG: u32 = 32768;
pub const JIT_OPCODE_IS_ADDROF_LABEL: u32 = 65536;
pub const JIT_OPCODE_IS_JUMP_TABLE: u32 = 131072;
pub const JIT_OPCODE_OPER_MASK: u32 = 32505856;
pub const JIT_OPCODE_OPER_NONE: u32 = 0;
pub const JIT_OPCODE_OPER_ADD: u32 = 1048576;
pub const JIT_OPCODE_OPER_SUB: u32 = 2097152;
pub const JIT_OPCODE_OPER_MUL: u32 = 3145728;
pub const JIT_OPCODE_OPER_DIV: u32 = 4194304;
pub const JIT_OPCODE_OPER_REM: u32 = 5242880;
pub const JIT_OPCODE_OPER_NEG: u32 = 6291456;
pub const JIT_OPCODE_OPER_AND: u32 = 7340032;
pub const JIT_OPCODE_OPER_OR: u32 = 8388608;
pub const JIT_OPCODE_OPER_XOR: u32 = 9437184;
pub const JIT_OPCODE_OPER_NOT: u32 = 10485760;
pub const JIT_OPCODE_OPER_EQ: u32 = 11534336;
pub const JIT_OPCODE_OPER_NE: u32 = 12582912;
pub const JIT_OPCODE_OPER_LT: u32 = 13631488;
pub const JIT_OPCODE_OPER_LE: u32 = 14680064;
pub const JIT_OPCODE_OPER_GT: u32 = 15728640;
pub const JIT_OPCODE_OPER_GE: u32 = 16777216;
pub const JIT_OPCODE_OPER_SHL: u32 = 17825792;
pub const JIT_OPCODE_OPER_SHR: u32 = 18874368;
pub const JIT_OPCODE_OPER_SHR_UN: u32 = 19922944;
pub const JIT_OPCODE_OPER_COPY: u32 = 20971520;
pub const JIT_OPCODE_OPER_ADDRESS_OF: u32 = 22020096;
pub const JIT_OPCODE_DEST_PTR: u32 = 2;
pub const JIT_OPCODE_SRC1_PTR: u32 = 32;
pub const JIT_OPCODE_SRC2_PTR: u32 = 512;
pub const JIT_OP_FEQ_INV: u32 = 210;
pub const JIT_OP_FNE_INV: u32 = 211;
pub const JIT_OP_DEQ_INV: u32 = 220;
pub const JIT_OP_DNE_INV: u32 = 221;
pub const JIT_OP_NFEQ_INV: u32 = 230;
pub const JIT_OP_NFNE_INV: u32 = 231;
pub const JIT_OP_BR_FEQ_INV: u32 = 150;
pub const JIT_OP_BR_FNE_INV: u32 = 151;
pub const JIT_OP_BR_DEQ_INV: u32 = 160;
pub const JIT_OP_BR_DNE_INV: u32 = 161;
pub const JIT_OP_BR_NFEQ_INV: u32 = 170;
pub const JIT_OP_BR_NFNE_INV: u32 = 171;
pub const JIT_FAST_GET_CURRENT_FRAME: u32 = 1;
pub type jit_sbyte = ::std::os::raw::c_char;
pub type jit_ubyte = ::std::os::raw::c_uchar;
pub type jit_short = ::std::os::raw::c_short;
pub type jit_ushort = ::std::os::raw::c_ushort;
pub type jit_int = ::std::os::raw::c_int;
pub type jit_uint = ::std::os::raw::c_uint;
pub type jit_nint = ::std::os::raw::c_long;
pub type jit_nuint = ::std::os::raw::c_ulong;
pub type jit_long = ::std::os::raw::c_long;
pub type jit_ulong = ::std::os::raw::c_ulong;
pub type jit_float32 = f32;
pub type jit_float64 = f64;
pub type jit_nfloat = jit_float64;
pub type jit_ptr = *mut ::std::os::raw::c_void;
pub type jit_size_t = jit_nuint;
pub type _jit_context = c_void;
pub type jit_context_t = *mut _jit_context;
pub type _jit_function = c_void;
pub type jit_function_t = *mut _jit_function;
pub type _jit_block = c_void;
pub type jit_block_t = *mut _jit_block;
pub type _jit_insn = c_void;
pub type jit_insn_t = *mut _jit_insn;
pub type _jit_value = c_void;
pub type jit_value_t = *mut _jit_value;
pub type _jit_type = c_void;
pub type jit_type_t = *mut _jit_type;
pub type jit_stack_trace = c_void;
pub type jit_stack_trace_t = *mut jit_stack_trace;
pub type jit_label_t = jit_nuint;
pub type jit_meta_free_func =
::std::option::Option<unsafe extern "C" fn(data: *mut ::std::os::raw::c_void)>;
pub type jit_on_demand_func =
::std::option::Option<unsafe extern "C" fn(func: jit_function_t) -> ::std::os::raw::c_int>;
pub type jit_on_demand_driver_func = ::std::option::Option<
unsafe extern "C" fn(func: jit_function_t) -> *mut ::std::os::raw::c_void,
>;
pub type jit_memory_context_t = *mut ::std::os::raw::c_void;
pub type jit_function_info_t = *mut ::std::os::raw::c_void;
pub type jit_memory_manager_t = *const jit_memory_manager;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct jit_memory_manager {
pub create:
::std::option::Option<unsafe extern "C" fn(context: jit_context_t) -> jit_memory_context_t>,
pub destroy: ::std::option::Option<unsafe extern "C" fn(memctx: jit_memory_context_t)>,
pub find_function_info: ::std::option::Option<
unsafe extern "C" fn(
memctx: jit_memory_context_t,
pc: *mut ::std::os::raw::c_void,
) -> jit_function_info_t,
>,
pub get_function: ::std::option::Option<
unsafe extern "C" fn(
memctx: jit_memory_context_t,
info: jit_function_info_t,
) -> jit_function_t,
>,
pub get_function_start: ::std::option::Option<
unsafe extern "C" fn(
memctx: jit_memory_context_t,
info: jit_function_info_t,
) -> *mut ::std::os::raw::c_void,
>,
pub get_function_end: ::std::option::Option<
unsafe extern "C" fn(
memctx: jit_memory_context_t,
info: jit_function_info_t,
) -> *mut ::std::os::raw::c_void,
>,
pub alloc_function:
::std::option::Option<unsafe extern "C" fn(memctx: jit_memory_context_t) -> jit_function_t>,
pub free_function: ::std::option::Option<
unsafe extern "C" fn(memctx: jit_memory_context_t, func: jit_function_t),
>,
pub start_function: ::std::option::Option<
unsafe extern "C" fn(
memctx: jit_memory_context_t,
func: jit_function_t,
) -> ::std::os::raw::c_int,
>,
pub end_function: ::std::option::Option<
unsafe extern "C" fn(
memctx: jit_memory_context_t,
result: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int,
>,
pub extend_limit: ::std::option::Option<
unsafe extern "C" fn(
memctx: jit_memory_context_t,
count: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int,
>,
pub get_limit: ::std::option::Option<
unsafe extern "C" fn(memctx: jit_memory_context_t) -> *mut ::std::os::raw::c_void,
>,
pub get_break: ::std::option::Option<
unsafe extern "C" fn(memctx: jit_memory_context_t) -> *mut ::std::os::raw::c_void,
>,
pub set_break: ::std::option::Option<
unsafe extern "C" fn(memctx: jit_memory_context_t, brk: *mut ::std::os::raw::c_void),
>,
pub alloc_trampoline: ::std::option::Option<
unsafe extern "C" fn(memctx: jit_memory_context_t) -> *mut ::std::os::raw::c_void,
>,
pub free_trampoline: ::std::option::Option<
unsafe extern "C" fn(memctx: jit_memory_context_t, ptr: *mut ::std::os::raw::c_void),
>,
pub alloc_closure: ::std::option::Option<
unsafe extern "C" fn(memctx: jit_memory_context_t) -> *mut ::std::os::raw::c_void,
>,
pub free_closure: ::std::option::Option<
unsafe extern "C" fn(memctx: jit_memory_context_t, ptr: *mut ::std::os::raw::c_void),
>,
pub alloc_data: ::std::option::Option<
unsafe extern "C" fn(
memctx: jit_memory_context_t,
size: jit_size_t,
align: jit_size_t,
) -> *mut ::std::os::raw::c_void,
>,
}
extern "C" {
pub fn jit_default_memory_manager() -> jit_memory_manager_t;
pub fn jit_context_create() -> jit_context_t;
pub fn jit_context_destroy(context: jit_context_t);
pub fn jit_context_build_start(context: jit_context_t);
pub fn jit_context_build_end(context: jit_context_t);
pub fn jit_context_set_on_demand_driver(
context: jit_context_t,
driver: jit_on_demand_driver_func,
);
pub fn jit_context_set_memory_manager(context: jit_context_t, manager: jit_memory_manager_t);
pub fn jit_context_set_meta(
context: jit_context_t,
type_: ::std::os::raw::c_int,
data: *mut ::std::os::raw::c_void,
free_data: jit_meta_free_func,
) -> ::std::os::raw::c_int;
pub fn jit_context_set_meta_numeric(
context: jit_context_t,
type_: ::std::os::raw::c_int,
data: jit_nuint,
) -> ::std::os::raw::c_int;
pub fn jit_context_get_meta(
context: jit_context_t,
type_: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
pub fn jit_context_get_meta_numeric(
context: jit_context_t,
type_: ::std::os::raw::c_int,
) -> jit_nuint;
pub fn jit_context_free_meta(context: jit_context_t, type_: ::std::os::raw::c_int);
pub static jit_type_void: jit_type_t;
pub static jit_type_sbyte: jit_type_t;
pub static jit_type_ubyte: jit_type_t;
pub static jit_type_short: jit_type_t;
pub static jit_type_ushort: jit_type_t;
pub static jit_type_int: jit_type_t;
pub static jit_type_uint: jit_type_t;
pub static jit_type_nint: jit_type_t;
pub static jit_type_nuint: jit_type_t;
pub static jit_type_long: jit_type_t;
pub static jit_type_ulong: jit_type_t;
pub static jit_type_float32: jit_type_t;
pub static jit_type_float64: jit_type_t;
pub static jit_type_nfloat: jit_type_t;
pub static jit_type_void_ptr: jit_type_t;
pub static jit_type_sys_bool: jit_type_t;
pub static jit_type_sys_char: jit_type_t;
pub static jit_type_sys_schar: jit_type_t;
pub static jit_type_sys_uchar: jit_type_t;
pub static jit_type_sys_short: jit_type_t;
pub static jit_type_sys_ushort: jit_type_t;
pub static jit_type_sys_int: jit_type_t;
pub static jit_type_sys_uint: jit_type_t;
pub static jit_type_sys_long: jit_type_t;
pub static jit_type_sys_ulong: jit_type_t;
pub static jit_type_sys_longlong: jit_type_t;
pub static jit_type_sys_ulonglong: jit_type_t;
pub static jit_type_sys_float: jit_type_t;
pub static jit_type_sys_double: jit_type_t;
pub static jit_type_sys_long_double: jit_type_t;
}
pub const jit_abi_t_jit_abi_cdecl: jit_abi_t = 0;
pub const jit_abi_t_jit_abi_vararg: jit_abi_t = 1;
pub const jit_abi_t_jit_abi_stdcall: jit_abi_t = 2;
pub const jit_abi_t_jit_abi_fastcall: jit_abi_t = 3;
pub type jit_abi_t = ::std::os::raw::c_uint;
extern "C" {
pub fn jit_type_copy(type_: jit_type_t) -> jit_type_t;
pub fn jit_type_free(type_: jit_type_t);
pub fn jit_type_create_struct(
fields: *mut jit_type_t,
num_fields: ::std::os::raw::c_uint,
incref: ::std::os::raw::c_int,
) -> jit_type_t;
pub fn jit_type_create_union(
fields: *mut jit_type_t,
num_fields: ::std::os::raw::c_uint,
incref: ::std::os::raw::c_int,
) -> jit_type_t;
pub fn jit_type_create_signature(
abi: jit_abi_t,
return_type: jit_type_t,
params: *mut jit_type_t,
num_params: ::std::os::raw::c_uint,
incref: ::std::os::raw::c_int,
) -> jit_type_t;
pub fn jit_type_create_pointer(type_: jit_type_t, incref: ::std::os::raw::c_int) -> jit_type_t;
pub fn jit_type_create_tagged(
type_: jit_type_t,
kind: ::std::os::raw::c_int,
data: *mut ::std::os::raw::c_void,
free_func: jit_meta_free_func,
incref: ::std::os::raw::c_int,
) -> jit_type_t;
pub fn jit_type_set_names(
type_: jit_type_t,
names: *mut *mut ::std::os::raw::c_char,
num_names: ::std::os::raw::c_uint,
) -> ::std::os::raw::c_int;
pub fn jit_type_set_size_and_alignment(type_: jit_type_t, size: jit_nint, alignment: jit_nint);
pub fn jit_type_set_offset(
type_: jit_type_t,
field_index: ::std::os::raw::c_uint,
offset: jit_nuint,
);
pub fn jit_type_get_kind(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_type_get_size(type_: jit_type_t) -> jit_nuint;
pub fn jit_type_get_alignment(type_: jit_type_t) -> jit_nuint;
pub fn jit_type_best_alignment() -> jit_nuint;
pub fn jit_type_num_fields(type_: jit_type_t) -> ::std::os::raw::c_uint;
pub fn jit_type_get_field(type_: jit_type_t, field_index: ::std::os::raw::c_uint)
-> jit_type_t;
pub fn jit_type_get_offset(type_: jit_type_t, field_index: ::std::os::raw::c_uint)
-> jit_nuint;
pub fn jit_type_get_name(
type_: jit_type_t,
index: ::std::os::raw::c_uint,
) -> *const ::std::os::raw::c_char;
pub fn jit_type_find_name(
type_: jit_type_t,
name: *const ::std::os::raw::c_char,
) -> ::std::os::raw::c_uint;
pub fn jit_type_num_params(type_: jit_type_t) -> ::std::os::raw::c_uint;
pub fn jit_type_get_return(type_: jit_type_t) -> jit_type_t;
pub fn jit_type_get_param(type_: jit_type_t, param_index: ::std::os::raw::c_uint)
-> jit_type_t;
pub fn jit_type_get_abi(type_: jit_type_t) -> jit_abi_t;
pub fn jit_type_get_ref(type_: jit_type_t) -> jit_type_t;
pub fn jit_type_get_tagged_type(type_: jit_type_t) -> jit_type_t;
pub fn jit_type_set_tagged_type(
type_: jit_type_t,
underlying: jit_type_t,
incref: ::std::os::raw::c_int,
);
pub fn jit_type_get_tagged_kind(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_type_get_tagged_data(type_: jit_type_t) -> *mut ::std::os::raw::c_void;
pub fn jit_type_set_tagged_data(
type_: jit_type_t,
data: *mut ::std::os::raw::c_void,
free_func: jit_meta_free_func,
);
pub fn jit_type_is_primitive(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_type_is_struct(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_type_is_union(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_type_is_signature(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_type_is_pointer(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_type_is_tagged(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_type_remove_tags(type_: jit_type_t) -> jit_type_t;
pub fn jit_type_normalize(type_: jit_type_t) -> jit_type_t;
pub fn jit_type_promote_int(type_: jit_type_t) -> jit_type_t;
pub fn jit_type_return_via_pointer(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_type_has_tag(
type_: jit_type_t,
kind: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
}
pub type jit_closure_func = ::std::option::Option<
unsafe extern "C" fn(
signature: jit_type_t,
result: *mut ::std::os::raw::c_void,
args: *mut *mut ::std::os::raw::c_void,
user_data: *mut ::std::os::raw::c_void,
),
>;
pub type jit_closure_va_list = c_void;
pub type jit_closure_va_list_t = *mut jit_closure_va_list;
extern "C" {
pub fn jit_apply(
signature: jit_type_t,
func: *mut ::std::os::raw::c_void,
args: *mut *mut ::std::os::raw::c_void,
num_fixed_args: ::std::os::raw::c_uint,
return_value: *mut ::std::os::raw::c_void,
);
pub fn jit_apply_raw(
signature: jit_type_t,
func: *mut ::std::os::raw::c_void,
args: *mut ::std::os::raw::c_void,
return_value: *mut ::std::os::raw::c_void,
);
pub fn jit_raw_supported(signature: jit_type_t) -> ::std::os::raw::c_int;
pub fn jit_closure_create(
context: jit_context_t,
signature: jit_type_t,
func: jit_closure_func,
user_data: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
pub fn jit_closure_va_get_nint(va: jit_closure_va_list_t) -> jit_nint;
pub fn jit_closure_va_get_nuint(va: jit_closure_va_list_t) -> jit_nuint;
pub fn jit_closure_va_get_long(va: jit_closure_va_list_t) -> jit_long;
pub fn jit_closure_va_get_ulong(va: jit_closure_va_list_t) -> jit_ulong;
pub fn jit_closure_va_get_float32(va: jit_closure_va_list_t) -> jit_float32;
pub fn jit_closure_va_get_float64(va: jit_closure_va_list_t) -> jit_float64;
pub fn jit_closure_va_get_nfloat(va: jit_closure_va_list_t) -> jit_nfloat;
pub fn jit_closure_va_get_ptr(va: jit_closure_va_list_t) -> *mut ::std::os::raw::c_void;
pub fn jit_closure_va_get_struct(
va: jit_closure_va_list_t,
buf: *mut ::std::os::raw::c_void,
type_: jit_type_t,
);
pub fn jit_block_get_function(block: jit_block_t) -> jit_function_t;
pub fn jit_block_get_context(block: jit_block_t) -> jit_context_t;
pub fn jit_block_get_label(block: jit_block_t) -> jit_label_t;
pub fn jit_block_get_next_label(block: jit_block_t, label: jit_label_t) -> jit_label_t;
pub fn jit_block_next(func: jit_function_t, previous: jit_block_t) -> jit_block_t;
pub fn jit_block_previous(func: jit_function_t, previous: jit_block_t) -> jit_block_t;
pub fn jit_block_from_label(func: jit_function_t, label: jit_label_t) -> jit_block_t;
pub fn jit_block_set_meta(
block: jit_block_t,
type_: ::std::os::raw::c_int,
data: *mut ::std::os::raw::c_void,
free_data: jit_meta_free_func,
) -> ::std::os::raw::c_int;
pub fn jit_block_get_meta(
block: jit_block_t,
type_: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
pub fn jit_block_free_meta(block: jit_block_t, type_: ::std::os::raw::c_int);
pub fn jit_block_is_reachable(block: jit_block_t) -> ::std::os::raw::c_int;
pub fn jit_block_ends_in_dead(block: jit_block_t) -> ::std::os::raw::c_int;
pub fn jit_block_current_is_dead(func: jit_function_t) -> ::std::os::raw::c_int;
}
pub type jit_debugger = c_void;
pub type jit_debugger_t = *mut jit_debugger;
pub type jit_debugger_thread_id_t = jit_nint;
pub type jit_debugger_breakpoint_id_t = jit_nint;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct jit_debugger_event {
pub type_: ::std::os::raw::c_int,
pub thread: jit_debugger_thread_id_t,
pub function: jit_function_t,
pub data1: jit_nint,
pub data2: jit_nint,
pub id: jit_debugger_breakpoint_id_t,
pub trace: jit_stack_trace_t,
}
pub type jit_debugger_event_t = jit_debugger_event;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct jit_debugger_breakpoint_info {
pub flags: ::std::os::raw::c_int,
pub thread: jit_debugger_thread_id_t,
pub function: jit_function_t,
pub data1: jit_nint,
pub data2: jit_nint,
}
pub type jit_debugger_breakpoint_info_t = *mut jit_debugger_breakpoint_info;
pub type jit_debugger_hook_func = ::std::option::Option<
unsafe extern "C" fn(func: jit_function_t, data1: jit_nint, data2: jit_nint),
>;
extern "C" {
pub fn jit_debugging_possible() -> ::std::os::raw::c_int;
pub fn jit_debugger_create(context: jit_context_t) -> jit_debugger_t;
pub fn jit_debugger_destroy(dbg: jit_debugger_t);
pub fn jit_debugger_get_context(dbg: jit_debugger_t) -> jit_context_t;
pub fn jit_debugger_from_context(context: jit_context_t) -> jit_debugger_t;
pub fn jit_debugger_get_self(dbg: jit_debugger_t) -> jit_debugger_thread_id_t;
pub fn jit_debugger_get_thread(
dbg: jit_debugger_t,
native_thread: *const ::std::os::raw::c_void,
) -> jit_debugger_thread_id_t;
pub fn jit_debugger_get_native_thread(
dbg: jit_debugger_t,
thread: jit_debugger_thread_id_t,
native_thread: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
pub fn jit_debugger_set_breakable(
dbg: jit_debugger_t,
native_thread: *const ::std::os::raw::c_void,
flag: ::std::os::raw::c_int,
);
pub fn jit_debugger_attach_self(dbg: jit_debugger_t, stop_immediately: ::std::os::raw::c_int);
pub fn jit_debugger_detach_self(dbg: jit_debugger_t);
pub fn jit_debugger_wait_event(
dbg: jit_debugger_t,
event: *mut jit_debugger_event_t,
timeout: jit_int,
) -> ::std::os::raw::c_int;
pub fn jit_debugger_add_breakpoint(
dbg: jit_debugger_t,
info: jit_debugger_breakpoint_info_t,
) -> jit_debugger_breakpoint_id_t;
pub fn jit_debugger_remove_breakpoint(dbg: jit_debugger_t, id: jit_debugger_breakpoint_id_t);
pub fn jit_debugger_remove_all_breakpoints(dbg: jit_debugger_t);
pub fn jit_debugger_is_alive(
dbg: jit_debugger_t,
thread: jit_debugger_thread_id_t,
) -> ::std::os::raw::c_int;
pub fn jit_debugger_is_running(
dbg: jit_debugger_t,
thread: jit_debugger_thread_id_t,
) -> ::std::os::raw::c_int;
pub fn jit_debugger_run(dbg: jit_debugger_t, thread: jit_debugger_thread_id_t);
pub fn jit_debugger_step(dbg: jit_debugger_t, thread: jit_debugger_thread_id_t);
pub fn jit_debugger_next(dbg: jit_debugger_t, thread: jit_debugger_thread_id_t);
pub fn jit_debugger_finish(dbg: jit_debugger_t, thread: jit_debugger_thread_id_t);
pub fn jit_debugger_break(dbg: jit_debugger_t);
pub fn jit_debugger_quit(dbg: jit_debugger_t);
pub fn jit_debugger_set_hook(
context: jit_context_t,
hook: jit_debugger_hook_func,
) -> jit_debugger_hook_func;
pub fn jit_dump_type(stream: *mut FILE, type_: jit_type_t);
pub fn jit_dump_value(
stream: *mut FILE,
func: jit_function_t,
value: jit_value_t,
prefix: *const ::std::os::raw::c_char,
);
pub fn jit_dump_insn(stream: *mut FILE, func: jit_function_t, insn: jit_insn_t);
pub fn jit_dump_function(
stream: *mut FILE,
func: jit_function_t,
name: *const ::std::os::raw::c_char,
);
}
pub type jit_readelf = c_void;
pub type jit_readelf_t = *mut jit_readelf;
pub type jit_writeelf = c_void;
pub type jit_writeelf_t = *mut jit_writeelf;
extern "C" {
pub fn jit_readelf_open(
readelf: *mut jit_readelf_t,
filename: *const ::std::os::raw::c_char,
flags: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
pub fn jit_readelf_close(readelf: jit_readelf_t);
pub fn jit_readelf_get_name(readelf: jit_readelf_t) -> *const ::std::os::raw::c_char;
pub fn jit_readelf_get_symbol(
readelf: jit_readelf_t,
name: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_void;
pub fn jit_readelf_get_section(
readelf: jit_readelf_t,
name: *const ::std::os::raw::c_char,
size: *mut jit_nuint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_readelf_get_section_by_type(
readelf: jit_readelf_t,
type_: jit_int,
size: *mut jit_nuint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_readelf_map_vaddr(
readelf: jit_readelf_t,
vaddr: jit_nuint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_readelf_num_needed(readelf: jit_readelf_t) -> ::std::os::raw::c_uint;
pub fn jit_readelf_get_needed(
readelf: jit_readelf_t,
index: ::std::os::raw::c_uint,
) -> *const ::std::os::raw::c_char;
pub fn jit_readelf_add_to_context(readelf: jit_readelf_t, context: jit_context_t);
pub fn jit_readelf_resolve_all(
context: jit_context_t,
print_failures: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
pub fn jit_readelf_register_symbol(
context: jit_context_t,
name: *const ::std::os::raw::c_char,
value: *mut ::std::os::raw::c_void,
after: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
pub fn jit_writeelf_create(library_name: *const ::std::os::raw::c_char) -> jit_writeelf_t;
pub fn jit_writeelf_destroy(writeelf: jit_writeelf_t);
pub fn jit_writeelf_write(
writeelf: jit_writeelf_t,
filename: *const ::std::os::raw::c_char,
) -> ::std::os::raw::c_int;
pub fn jit_writeelf_add_function(
writeelf: jit_writeelf_t,
func: jit_function_t,
name: *const ::std::os::raw::c_char,
) -> ::std::os::raw::c_int;
pub fn jit_writeelf_add_needed(
writeelf: jit_writeelf_t,
library_name: *const ::std::os::raw::c_char,
) -> ::std::os::raw::c_int;
pub fn jit_writeelf_write_section(
writeelf: jit_writeelf_t,
name: *const ::std::os::raw::c_char,
type_: jit_int,
buf: *const ::std::os::raw::c_void,
len: ::std::os::raw::c_uint,
discardable: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
}
pub type jit_exception_func = ::std::option::Option<
unsafe extern "C" fn(exception_type: ::std::os::raw::c_int) -> *mut ::std::os::raw::c_void,
>;
extern "C" {
pub fn jit_exception_get_last() -> *mut ::std::os::raw::c_void;
pub fn jit_exception_get_last_and_clear() -> *mut ::std::os::raw::c_void;
pub fn jit_exception_set_last(object: *mut ::std::os::raw::c_void);
pub fn jit_exception_clear_last();
pub fn jit_exception_throw(object: *mut ::std::os::raw::c_void);
pub fn jit_exception_builtin(exception_type: ::std::os::raw::c_int);
pub fn jit_exception_set_handler(handler: jit_exception_func) -> jit_exception_func;
pub fn jit_exception_get_handler() -> jit_exception_func;
pub fn jit_exception_get_stack_trace() -> jit_stack_trace_t;
pub fn jit_stack_trace_get_size(trace: jit_stack_trace_t) -> ::std::os::raw::c_uint;
pub fn jit_stack_trace_get_function(
context: jit_context_t,
trace: jit_stack_trace_t,
posn: ::std::os::raw::c_uint,
) -> jit_function_t;
pub fn jit_stack_trace_get_pc(
trace: jit_stack_trace_t,
posn: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_stack_trace_get_offset(
context: jit_context_t,
trace: jit_stack_trace_t,
posn: ::std::os::raw::c_uint,
) -> ::std::os::raw::c_uint;
pub fn jit_stack_trace_free(trace: jit_stack_trace_t);
pub fn jit_function_create(context: jit_context_t, signature: jit_type_t) -> jit_function_t;
pub fn jit_function_create_nested(
context: jit_context_t,
signature: jit_type_t,
parent: jit_function_t,
) -> jit_function_t;
pub fn jit_function_abandon(func: jit_function_t);
pub fn jit_function_get_context(func: jit_function_t) -> jit_context_t;
pub fn jit_function_get_signature(func: jit_function_t) -> jit_type_t;
pub fn jit_function_set_meta(
func: jit_function_t,
type_: ::std::os::raw::c_int,
data: *mut ::std::os::raw::c_void,
free_data: jit_meta_free_func,
build_only: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
pub fn jit_function_get_meta(
func: jit_function_t,
type_: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
pub fn jit_function_free_meta(func: jit_function_t, type_: ::std::os::raw::c_int);
pub fn jit_function_next(context: jit_context_t, prev: jit_function_t) -> jit_function_t;
pub fn jit_function_previous(context: jit_context_t, prev: jit_function_t) -> jit_function_t;
pub fn jit_function_get_entry(func: jit_function_t) -> jit_block_t;
pub fn jit_function_get_current(func: jit_function_t) -> jit_block_t;
pub fn jit_function_get_nested_parent(func: jit_function_t) -> jit_function_t;
pub fn jit_function_set_parent_frame(func: jit_function_t, parent_frame: jit_value_t);
pub fn jit_function_compile(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_function_is_compiled(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_function_set_recompilable(func: jit_function_t);
pub fn jit_function_clear_recompilable(func: jit_function_t);
pub fn jit_function_is_recompilable(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_function_compile_entry(
func: jit_function_t,
entry_point: *mut *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
pub fn jit_function_setup_entry(func: jit_function_t, entry_point: *mut ::std::os::raw::c_void);
pub fn jit_function_to_closure(func: jit_function_t) -> *mut ::std::os::raw::c_void;
pub fn jit_function_from_closure(
context: jit_context_t,
closure: *mut ::std::os::raw::c_void,
) -> jit_function_t;
pub fn jit_function_from_pc(
context: jit_context_t,
pc: *mut ::std::os::raw::c_void,
handler: *mut *mut ::std::os::raw::c_void,
) -> jit_function_t;
pub fn jit_function_to_vtable_pointer(func: jit_function_t) -> *mut ::std::os::raw::c_void;
pub fn jit_function_from_vtable_pointer(
context: jit_context_t,
vtable_pointer: *mut ::std::os::raw::c_void,
) -> jit_function_t;
pub fn jit_function_set_on_demand_compiler(func: jit_function_t, on_demand: jit_on_demand_func);
pub fn jit_function_get_on_demand_compiler(func: jit_function_t) -> jit_on_demand_func;
pub fn jit_function_apply(
func: jit_function_t,
args: *mut *mut ::std::os::raw::c_void,
return_area: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
pub fn jit_function_apply_vararg(
func: jit_function_t,
signature: jit_type_t,
args: *mut *mut ::std::os::raw::c_void,
return_area: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
pub fn jit_function_set_optimization_level(func: jit_function_t, level: ::std::os::raw::c_uint);
pub fn jit_function_get_optimization_level(func: jit_function_t) -> ::std::os::raw::c_uint;
pub fn jit_function_get_max_optimization_level() -> ::std::os::raw::c_uint;
pub fn jit_function_reserve_label(func: jit_function_t) -> jit_label_t;
pub fn jit_function_labels_equal(
func: jit_function_t,
label: jit_label_t,
label2: jit_label_t,
) -> ::std::os::raw::c_int;
pub fn jit_optimize(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_compile(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_compile_entry(
func: jit_function_t,
entry_point: *mut *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
pub fn jit_init();
pub fn jit_uses_interpreter() -> ::std::os::raw::c_int;
pub fn jit_supports_threads() -> ::std::os::raw::c_int;
pub fn jit_supports_virtual_memory() -> ::std::os::raw::c_int;
pub fn jit_supports_closures() -> ::std::os::raw::c_int;
pub fn jit_get_closure_size() -> ::std::os::raw::c_uint;
pub fn jit_get_closure_alignment() -> ::std::os::raw::c_uint;
pub fn jit_get_trampoline_size() -> ::std::os::raw::c_uint;
pub fn jit_get_trampoline_alignment() -> ::std::os::raw::c_uint;
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct jit_intrinsic_descr_t {
pub return_type: jit_type_t,
pub ptr_result_type: jit_type_t,
pub arg1_type: jit_type_t,
pub arg2_type: jit_type_t,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct jit_insn_iter_t {
pub block: jit_block_t,
pub posn: ::std::os::raw::c_int,
}
extern "C" {
pub fn jit_insn_get_opcode(insn: jit_insn_t) -> ::std::os::raw::c_int;
pub fn jit_insn_get_dest(insn: jit_insn_t) -> jit_value_t;
pub fn jit_insn_get_value1(insn: jit_insn_t) -> jit_value_t;
pub fn jit_insn_get_value2(insn: jit_insn_t) -> jit_value_t;
pub fn jit_insn_get_label(insn: jit_insn_t) -> jit_label_t;
pub fn jit_insn_get_function(insn: jit_insn_t) -> jit_function_t;
pub fn jit_insn_get_native(insn: jit_insn_t) -> *mut ::std::os::raw::c_void;
pub fn jit_insn_get_name(insn: jit_insn_t) -> *const ::std::os::raw::c_char;
pub fn jit_insn_get_signature(insn: jit_insn_t) -> jit_type_t;
pub fn jit_insn_dest_is_value(insn: jit_insn_t) -> ::std::os::raw::c_int;
pub fn jit_insn_label(func: jit_function_t, label: *mut jit_label_t) -> ::std::os::raw::c_int;
pub fn jit_insn_label_tight(
func: jit_function_t,
label: *mut jit_label_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_new_block(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_insn_load(func: jit_function_t, value: jit_value_t) -> jit_value_t;
pub fn jit_insn_dup(func: jit_function_t, value: jit_value_t) -> jit_value_t;
pub fn jit_insn_store(
func: jit_function_t,
dest: jit_value_t,
value: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_load_relative(
func: jit_function_t,
value: jit_value_t,
offset: jit_nint,
type_: jit_type_t,
) -> jit_value_t;
pub fn jit_insn_store_relative(
func: jit_function_t,
dest: jit_value_t,
offset: jit_nint,
value: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_add_relative(
func: jit_function_t,
value: jit_value_t,
offset: jit_nint,
) -> jit_value_t;
pub fn jit_insn_load_elem(
func: jit_function_t,
base_addr: jit_value_t,
index: jit_value_t,
elem_type: jit_type_t,
) -> jit_value_t;
pub fn jit_insn_load_elem_address(
func: jit_function_t,
base_addr: jit_value_t,
index: jit_value_t,
elem_type: jit_type_t,
) -> jit_value_t;
pub fn jit_insn_store_elem(
func: jit_function_t,
base_addr: jit_value_t,
index: jit_value_t,
value: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_check_null(func: jit_function_t, value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_insn_nop(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_insn_add(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_add_ovf(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_sub(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_sub_ovf(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_mul(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_mul_ovf(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_div(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_rem(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_rem_ieee(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_neg(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_and(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_or(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_xor(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_not(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_shl(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_shr(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_ushr(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_sshr(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_eq(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_ne(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_lt(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_le(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_gt(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_ge(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_cmpl(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_cmpg(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_to_bool(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_to_not_bool(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_acos(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_asin(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_atan(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_atan2(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_ceil(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_cos(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_cosh(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_exp(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_floor(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_log(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_log10(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_pow(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_rint(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_round(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_sin(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_sinh(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_sqrt(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_tan(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_tanh(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_trunc(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_is_nan(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_is_finite(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_is_inf(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_abs(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_min(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_max(
func: jit_function_t,
value1: jit_value_t,
value2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_sign(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_branch(func: jit_function_t, label: *mut jit_label_t) -> ::std::os::raw::c_int;
pub fn jit_insn_branch_if(
func: jit_function_t,
value: jit_value_t,
label: *mut jit_label_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_branch_if_not(
func: jit_function_t,
value: jit_value_t,
label: *mut jit_label_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_jump_table(
func: jit_function_t,
value: jit_value_t,
labels: *mut jit_label_t,
num_labels: ::std::os::raw::c_uint,
) -> ::std::os::raw::c_int;
pub fn jit_insn_address_of(func: jit_function_t, value1: jit_value_t) -> jit_value_t;
pub fn jit_insn_address_of_label(func: jit_function_t, label: *mut jit_label_t) -> jit_value_t;
pub fn jit_insn_convert(
func: jit_function_t,
value: jit_value_t,
type_: jit_type_t,
overflow_check: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jit_insn_call(
func: jit_function_t,
name: *const ::std::os::raw::c_char,
jit_func: jit_function_t,
signature: jit_type_t,
args: *mut jit_value_t,
num_args: ::std::os::raw::c_uint,
flags: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jit_insn_call_indirect(
func: jit_function_t,
value: jit_value_t,
signature: jit_type_t,
args: *mut jit_value_t,
num_args: ::std::os::raw::c_uint,
flags: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jit_insn_call_nested_indirect(
func: jit_function_t,
value: jit_value_t,
parent_frame: jit_value_t,
signature: jit_type_t,
args: *mut jit_value_t,
num_args: ::std::os::raw::c_uint,
flags: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jit_insn_call_indirect_vtable(
func: jit_function_t,
value: jit_value_t,
signature: jit_type_t,
args: *mut jit_value_t,
num_args: ::std::os::raw::c_uint,
flags: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jit_insn_call_native(
func: jit_function_t,
name: *const ::std::os::raw::c_char,
native_func: *mut ::std::os::raw::c_void,
signature: jit_type_t,
args: *mut jit_value_t,
num_args: ::std::os::raw::c_uint,
flags: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jit_insn_call_intrinsic(
func: jit_function_t,
name: *const ::std::os::raw::c_char,
intrinsic_func: *mut ::std::os::raw::c_void,
descriptor: *const jit_intrinsic_descr_t,
arg1: jit_value_t,
arg2: jit_value_t,
) -> jit_value_t;
pub fn jit_insn_incoming_reg(
func: jit_function_t,
value: jit_value_t,
reg: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
pub fn jit_insn_incoming_frame_posn(
func: jit_function_t,
value: jit_value_t,
frame_offset: jit_nint,
) -> ::std::os::raw::c_int;
pub fn jit_insn_outgoing_reg(
func: jit_function_t,
value: jit_value_t,
reg: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
pub fn jit_insn_outgoing_frame_posn(
func: jit_function_t,
value: jit_value_t,
frame_offset: jit_nint,
) -> ::std::os::raw::c_int;
pub fn jit_insn_return_reg(
func: jit_function_t,
value: jit_value_t,
reg: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
pub fn jit_insn_setup_for_nested(
func: jit_function_t,
nested_level: ::std::os::raw::c_int,
reg: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
pub fn jit_insn_flush_struct(func: jit_function_t, value: jit_value_t)
-> ::std::os::raw::c_int;
pub fn jit_insn_get_frame_pointer(func: jit_function_t) -> jit_value_t;
pub fn jit_insn_get_parent_frame_pointer_of(
func: jit_function_t,
target: jit_function_t,
) -> jit_value_t;
pub fn jit_insn_import(func: jit_function_t, value: jit_value_t) -> jit_value_t;
pub fn jit_insn_push(func: jit_function_t, value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_insn_push_ptr(
func: jit_function_t,
value: jit_value_t,
type_: jit_type_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_set_param(
func: jit_function_t,
value: jit_value_t,
offset: jit_nint,
) -> ::std::os::raw::c_int;
pub fn jit_insn_set_param_ptr(
func: jit_function_t,
value: jit_value_t,
type_: jit_type_t,
offset: jit_nint,
) -> ::std::os::raw::c_int;
pub fn jit_insn_push_return_area_ptr(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_insn_pop_stack(func: jit_function_t, num_items: jit_nint) -> ::std::os::raw::c_int;
pub fn jit_insn_defer_pop_stack(
func: jit_function_t,
num_items: jit_nint,
) -> ::std::os::raw::c_int;
pub fn jit_insn_flush_defer_pop(
func: jit_function_t,
num_items: jit_nint,
) -> ::std::os::raw::c_int;
pub fn jit_insn_return(func: jit_function_t, value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_insn_return_ptr(
func: jit_function_t,
value: jit_value_t,
type_: jit_type_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_default_return(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_insn_throw(func: jit_function_t, value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_insn_get_call_stack(func: jit_function_t) -> jit_value_t;
pub fn jit_insn_thrown_exception(func: jit_function_t) -> jit_value_t;
pub fn jit_insn_uses_catcher(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_insn_start_catcher(func: jit_function_t) -> jit_value_t;
pub fn jit_insn_branch_if_pc_not_in_range(
func: jit_function_t,
start_label: jit_label_t,
end_label: jit_label_t,
label: *mut jit_label_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_rethrow_unhandled(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_insn_start_finally(
func: jit_function_t,
finally_label: *mut jit_label_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_return_from_finally(func: jit_function_t) -> ::std::os::raw::c_int;
pub fn jit_insn_call_finally(
func: jit_function_t,
finally_label: *mut jit_label_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_start_filter(
func: jit_function_t,
label: *mut jit_label_t,
type_: jit_type_t,
) -> jit_value_t;
pub fn jit_insn_return_from_filter(
func: jit_function_t,
value: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_call_filter(
func: jit_function_t,
label: *mut jit_label_t,
value: jit_value_t,
type_: jit_type_t,
) -> jit_value_t;
pub fn jit_insn_memcpy(
func: jit_function_t,
dest: jit_value_t,
src: jit_value_t,
size: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_memmove(
func: jit_function_t,
dest: jit_value_t,
src: jit_value_t,
size: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_memset(
func: jit_function_t,
dest: jit_value_t,
value: jit_value_t,
size: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_alloca(func: jit_function_t, size: jit_value_t) -> jit_value_t;
pub fn jit_insn_move_blocks_to_end(
func: jit_function_t,
from_label: jit_label_t,
to_label: jit_label_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_move_blocks_to_start(
func: jit_function_t,
from_label: jit_label_t,
to_label: jit_label_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_mark_offset(func: jit_function_t, offset: jit_int) -> ::std::os::raw::c_int;
pub fn jit_insn_mark_breakpoint(
func: jit_function_t,
data1: jit_nint,
data2: jit_nint,
) -> ::std::os::raw::c_int;
pub fn jit_insn_mark_breakpoint_variable(
func: jit_function_t,
data1: jit_value_t,
data2: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jit_insn_iter_init(iter: *mut jit_insn_iter_t, block: jit_block_t);
pub fn jit_insn_iter_init_last(iter: *mut jit_insn_iter_t, block: jit_block_t);
pub fn jit_insn_iter_next(iter: *mut jit_insn_iter_t) -> jit_insn_t;
pub fn jit_insn_iter_previous(iter: *mut jit_insn_iter_t) -> jit_insn_t;
pub fn jit_int_add(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_sub(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_mul(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_div(result: *mut jit_int, value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_rem(result: *mut jit_int, value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_add_ovf(result: *mut jit_int, value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_sub_ovf(result: *mut jit_int, value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_mul_ovf(result: *mut jit_int, value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_div_ovf(result: *mut jit_int, value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_rem_ovf(result: *mut jit_int, value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_neg(value1: jit_int) -> jit_int;
pub fn jit_int_and(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_or(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_xor(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_not(value1: jit_int) -> jit_int;
pub fn jit_int_shl(value1: jit_int, value2: jit_uint) -> jit_int;
pub fn jit_int_shr(value1: jit_int, value2: jit_uint) -> jit_int;
pub fn jit_int_eq(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_ne(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_lt(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_le(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_gt(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_ge(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_cmp(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_abs(value1: jit_int) -> jit_int;
pub fn jit_int_min(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_max(value1: jit_int, value2: jit_int) -> jit_int;
pub fn jit_int_sign(value1: jit_int) -> jit_int;
pub fn jit_uint_add(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_uint_sub(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_uint_mul(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_uint_div(result: *mut jit_uint, value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_rem(result: *mut jit_uint, value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_add_ovf(result: *mut jit_uint, value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_sub_ovf(result: *mut jit_uint, value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_mul_ovf(result: *mut jit_uint, value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_div_ovf(result: *mut jit_uint, value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_rem_ovf(result: *mut jit_uint, value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_neg(value1: jit_uint) -> jit_uint;
pub fn jit_uint_and(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_uint_or(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_uint_xor(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_uint_not(value1: jit_uint) -> jit_uint;
pub fn jit_uint_shl(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_uint_shr(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_uint_eq(value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_ne(value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_lt(value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_le(value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_gt(value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_ge(value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_cmp(value1: jit_uint, value2: jit_uint) -> jit_int;
pub fn jit_uint_min(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_uint_max(value1: jit_uint, value2: jit_uint) -> jit_uint;
pub fn jit_long_add(value1: jit_long, value2: jit_long) -> jit_long;
pub fn jit_long_sub(value1: jit_long, value2: jit_long) -> jit_long;
pub fn jit_long_mul(value1: jit_long, value2: jit_long) -> jit_long;
pub fn jit_long_div(result: *mut jit_long, value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_rem(result: *mut jit_long, value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_add_ovf(result: *mut jit_long, value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_sub_ovf(result: *mut jit_long, value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_mul_ovf(result: *mut jit_long, value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_div_ovf(result: *mut jit_long, value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_rem_ovf(result: *mut jit_long, value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_neg(value1: jit_long) -> jit_long;
pub fn jit_long_and(value1: jit_long, value2: jit_long) -> jit_long;
pub fn jit_long_or(value1: jit_long, value2: jit_long) -> jit_long;
pub fn jit_long_xor(value1: jit_long, value2: jit_long) -> jit_long;
pub fn jit_long_not(value1: jit_long) -> jit_long;
pub fn jit_long_shl(value1: jit_long, value2: jit_uint) -> jit_long;
pub fn jit_long_shr(value1: jit_long, value2: jit_uint) -> jit_long;
pub fn jit_long_eq(value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_ne(value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_lt(value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_le(value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_gt(value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_ge(value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_cmp(value1: jit_long, value2: jit_long) -> jit_int;
pub fn jit_long_abs(value1: jit_long) -> jit_long;
pub fn jit_long_min(value1: jit_long, value2: jit_long) -> jit_long;
pub fn jit_long_max(value1: jit_long, value2: jit_long) -> jit_long;
pub fn jit_long_sign(value1: jit_long) -> jit_int;
pub fn jit_ulong_add(value1: jit_ulong, value2: jit_ulong) -> jit_ulong;
pub fn jit_ulong_sub(value1: jit_ulong, value2: jit_ulong) -> jit_ulong;
pub fn jit_ulong_mul(value1: jit_ulong, value2: jit_ulong) -> jit_ulong;
pub fn jit_ulong_div(result: *mut jit_ulong, value1: jit_ulong, value2: jit_ulong) -> jit_int;
pub fn jit_ulong_rem(result: *mut jit_ulong, value1: jit_ulong, value2: jit_ulong) -> jit_int;
pub fn jit_ulong_add_ovf(
result: *mut jit_ulong,
value1: jit_ulong,
value2: jit_ulong,
) -> jit_int;
pub fn jit_ulong_sub_ovf(
result: *mut jit_ulong,
value1: jit_ulong,
value2: jit_ulong,
) -> jit_int;
pub fn jit_ulong_mul_ovf(
result: *mut jit_ulong,
value1: jit_ulong,
value2: jit_ulong,
) -> jit_int;
pub fn jit_ulong_div_ovf(
result: *mut jit_ulong,
value1: jit_ulong,
value2: jit_ulong,
) -> jit_int;
pub fn jit_ulong_rem_ovf(
result: *mut jit_ulong,
value1: jit_ulong,
value2: jit_ulong,
) -> jit_int;
pub fn jit_ulong_neg(value1: jit_ulong) -> jit_ulong;
pub fn jit_ulong_and(value1: jit_ulong, value2: jit_ulong) -> jit_ulong;
pub fn jit_ulong_or(value1: jit_ulong, value2: jit_ulong) -> jit_ulong;
pub fn jit_ulong_xor(value1: jit_ulong, value2: jit_ulong) -> jit_ulong;
pub fn jit_ulong_not(value1: jit_ulong) -> jit_ulong;
pub fn jit_ulong_shl(value1: jit_ulong, value2: jit_uint) -> jit_ulong;
pub fn jit_ulong_shr(value1: jit_ulong, value2: jit_uint) -> jit_ulong;
pub fn jit_ulong_eq(value1: jit_ulong, value2: jit_ulong) -> jit_int;
pub fn jit_ulong_ne(value1: jit_ulong, value2: jit_ulong) -> jit_int;
pub fn jit_ulong_lt(value1: jit_ulong, value2: jit_ulong) -> jit_int;
pub fn jit_ulong_le(value1: jit_ulong, value2: jit_ulong) -> jit_int;
pub fn jit_ulong_gt(value1: jit_ulong, value2: jit_ulong) -> jit_int;
pub fn jit_ulong_ge(value1: jit_ulong, value2: jit_ulong) -> jit_int;
pub fn jit_ulong_cmp(value1: jit_ulong, value2: jit_ulong) -> jit_int;
pub fn jit_ulong_min(value1: jit_ulong, value2: jit_ulong) -> jit_ulong;
pub fn jit_ulong_max(value1: jit_ulong, value2: jit_ulong) -> jit_ulong;
pub fn jit_float32_add(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_sub(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_mul(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_div(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_rem(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_ieee_rem(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_neg(value1: jit_float32) -> jit_float32;
pub fn jit_float32_eq(value1: jit_float32, value2: jit_float32) -> jit_int;
pub fn jit_float32_ne(value1: jit_float32, value2: jit_float32) -> jit_int;
pub fn jit_float32_lt(value1: jit_float32, value2: jit_float32) -> jit_int;
pub fn jit_float32_le(value1: jit_float32, value2: jit_float32) -> jit_int;
pub fn jit_float32_gt(value1: jit_float32, value2: jit_float32) -> jit_int;
pub fn jit_float32_ge(value1: jit_float32, value2: jit_float32) -> jit_int;
pub fn jit_float32_cmpl(value1: jit_float32, value2: jit_float32) -> jit_int;
pub fn jit_float32_cmpg(value1: jit_float32, value2: jit_float32) -> jit_int;
pub fn jit_float32_acos(value1: jit_float32) -> jit_float32;
pub fn jit_float32_asin(value1: jit_float32) -> jit_float32;
pub fn jit_float32_atan(value1: jit_float32) -> jit_float32;
pub fn jit_float32_atan2(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_ceil(value1: jit_float32) -> jit_float32;
pub fn jit_float32_cos(value1: jit_float32) -> jit_float32;
pub fn jit_float32_cosh(value1: jit_float32) -> jit_float32;
pub fn jit_float32_exp(value1: jit_float32) -> jit_float32;
pub fn jit_float32_floor(value1: jit_float32) -> jit_float32;
pub fn jit_float32_log(value1: jit_float32) -> jit_float32;
pub fn jit_float32_log10(value1: jit_float32) -> jit_float32;
pub fn jit_float32_pow(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_rint(value1: jit_float32) -> jit_float32;
pub fn jit_float32_round(value1: jit_float32) -> jit_float32;
pub fn jit_float32_sin(value1: jit_float32) -> jit_float32;
pub fn jit_float32_sinh(value1: jit_float32) -> jit_float32;
pub fn jit_float32_sqrt(value1: jit_float32) -> jit_float32;
pub fn jit_float32_tan(value1: jit_float32) -> jit_float32;
pub fn jit_float32_tanh(value1: jit_float32) -> jit_float32;
pub fn jit_float32_trunc(value1: jit_float32) -> jit_float32;
pub fn jit_float32_is_finite(value: jit_float32) -> jit_int;
pub fn jit_float32_is_nan(value: jit_float32) -> jit_int;
pub fn jit_float32_is_inf(value: jit_float32) -> jit_int;
pub fn jit_float32_abs(value1: jit_float32) -> jit_float32;
pub fn jit_float32_min(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_max(value1: jit_float32, value2: jit_float32) -> jit_float32;
pub fn jit_float32_sign(value1: jit_float32) -> jit_int;
pub fn jit_float64_add(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_sub(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_mul(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_div(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_rem(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_ieee_rem(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_neg(value1: jit_float64) -> jit_float64;
pub fn jit_float64_eq(value1: jit_float64, value2: jit_float64) -> jit_int;
pub fn jit_float64_ne(value1: jit_float64, value2: jit_float64) -> jit_int;
pub fn jit_float64_lt(value1: jit_float64, value2: jit_float64) -> jit_int;
pub fn jit_float64_le(value1: jit_float64, value2: jit_float64) -> jit_int;
pub fn jit_float64_gt(value1: jit_float64, value2: jit_float64) -> jit_int;
pub fn jit_float64_ge(value1: jit_float64, value2: jit_float64) -> jit_int;
pub fn jit_float64_cmpl(value1: jit_float64, value2: jit_float64) -> jit_int;
pub fn jit_float64_cmpg(value1: jit_float64, value2: jit_float64) -> jit_int;
pub fn jit_float64_acos(value1: jit_float64) -> jit_float64;
pub fn jit_float64_asin(value1: jit_float64) -> jit_float64;
pub fn jit_float64_atan(value1: jit_float64) -> jit_float64;
pub fn jit_float64_atan2(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_ceil(value1: jit_float64) -> jit_float64;
pub fn jit_float64_cos(value1: jit_float64) -> jit_float64;
pub fn jit_float64_cosh(value1: jit_float64) -> jit_float64;
pub fn jit_float64_exp(value1: jit_float64) -> jit_float64;
pub fn jit_float64_floor(value1: jit_float64) -> jit_float64;
pub fn jit_float64_log(value1: jit_float64) -> jit_float64;
pub fn jit_float64_log10(value1: jit_float64) -> jit_float64;
pub fn jit_float64_pow(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_rint(value1: jit_float64) -> jit_float64;
pub fn jit_float64_round(value1: jit_float64) -> jit_float64;
pub fn jit_float64_sin(value1: jit_float64) -> jit_float64;
pub fn jit_float64_sinh(value1: jit_float64) -> jit_float64;
pub fn jit_float64_sqrt(value1: jit_float64) -> jit_float64;
pub fn jit_float64_tan(value1: jit_float64) -> jit_float64;
pub fn jit_float64_tanh(value1: jit_float64) -> jit_float64;
pub fn jit_float64_trunc(value1: jit_float64) -> jit_float64;
pub fn jit_float64_is_finite(value: jit_float64) -> jit_int;
pub fn jit_float64_is_nan(value: jit_float64) -> jit_int;
pub fn jit_float64_is_inf(value: jit_float64) -> jit_int;
pub fn jit_float64_abs(value1: jit_float64) -> jit_float64;
pub fn jit_float64_min(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_max(value1: jit_float64, value2: jit_float64) -> jit_float64;
pub fn jit_float64_sign(value1: jit_float64) -> jit_int;
pub fn jit_nfloat_add(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_sub(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_mul(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_div(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_rem(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_ieee_rem(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_neg(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_eq(value1: jit_nfloat, value2: jit_nfloat) -> jit_int;
pub fn jit_nfloat_ne(value1: jit_nfloat, value2: jit_nfloat) -> jit_int;
pub fn jit_nfloat_lt(value1: jit_nfloat, value2: jit_nfloat) -> jit_int;
pub fn jit_nfloat_le(value1: jit_nfloat, value2: jit_nfloat) -> jit_int;
pub fn jit_nfloat_gt(value1: jit_nfloat, value2: jit_nfloat) -> jit_int;
pub fn jit_nfloat_ge(value1: jit_nfloat, value2: jit_nfloat) -> jit_int;
pub fn jit_nfloat_cmpl(value1: jit_nfloat, value2: jit_nfloat) -> jit_int;
pub fn jit_nfloat_cmpg(value1: jit_nfloat, value2: jit_nfloat) -> jit_int;
pub fn jit_nfloat_acos(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_asin(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_atan(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_atan2(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_ceil(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_cos(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_cosh(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_exp(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_floor(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_log(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_log10(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_pow(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_rint(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_round(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_sin(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_sinh(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_sqrt(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_tan(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_tanh(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_trunc(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_is_finite(value: jit_nfloat) -> jit_int;
pub fn jit_nfloat_is_nan(value: jit_nfloat) -> jit_int;
pub fn jit_nfloat_is_inf(value: jit_nfloat) -> jit_int;
pub fn jit_nfloat_abs(value1: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_min(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_max(value1: jit_nfloat, value2: jit_nfloat) -> jit_nfloat;
pub fn jit_nfloat_sign(value1: jit_nfloat) -> jit_int;
pub fn jit_int_to_sbyte(value: jit_int) -> jit_int;
pub fn jit_int_to_ubyte(value: jit_int) -> jit_int;
pub fn jit_int_to_short(value: jit_int) -> jit_int;
pub fn jit_int_to_ushort(value: jit_int) -> jit_int;
pub fn jit_int_to_int(value: jit_int) -> jit_int;
pub fn jit_int_to_uint(value: jit_int) -> jit_uint;
pub fn jit_int_to_long(value: jit_int) -> jit_long;
pub fn jit_int_to_ulong(value: jit_int) -> jit_ulong;
pub fn jit_uint_to_int(value: jit_uint) -> jit_int;
pub fn jit_uint_to_uint(value: jit_uint) -> jit_uint;
pub fn jit_uint_to_long(value: jit_uint) -> jit_long;
pub fn jit_uint_to_ulong(value: jit_uint) -> jit_ulong;
pub fn jit_long_to_int(value: jit_long) -> jit_int;
pub fn jit_long_to_uint(value: jit_long) -> jit_uint;
pub fn jit_long_to_long(value: jit_long) -> jit_long;
pub fn jit_long_to_ulong(value: jit_long) -> jit_ulong;
pub fn jit_ulong_to_int(value: jit_ulong) -> jit_int;
pub fn jit_ulong_to_uint(value: jit_ulong) -> jit_uint;
pub fn jit_ulong_to_long(value: jit_ulong) -> jit_long;
pub fn jit_ulong_to_ulong(value: jit_ulong) -> jit_ulong;
pub fn jit_int_to_sbyte_ovf(result: *mut jit_int, value: jit_int) -> jit_int;
pub fn jit_int_to_ubyte_ovf(result: *mut jit_int, value: jit_int) -> jit_int;
pub fn jit_int_to_short_ovf(result: *mut jit_int, value: jit_int) -> jit_int;
pub fn jit_int_to_ushort_ovf(result: *mut jit_int, value: jit_int) -> jit_int;
pub fn jit_int_to_int_ovf(result: *mut jit_int, value: jit_int) -> jit_int;
pub fn jit_int_to_uint_ovf(result: *mut jit_uint, value: jit_int) -> jit_int;
pub fn jit_int_to_long_ovf(result: *mut jit_long, value: jit_int) -> jit_int;
pub fn jit_int_to_ulong_ovf(result: *mut jit_ulong, value: jit_int) -> jit_int;
pub fn jit_uint_to_int_ovf(result: *mut jit_int, value: jit_uint) -> jit_int;
pub fn jit_uint_to_uint_ovf(result: *mut jit_uint, value: jit_uint) -> jit_int;
pub fn jit_uint_to_long_ovf(result: *mut jit_long, value: jit_uint) -> jit_int;
pub fn jit_uint_to_ulong_ovf(result: *mut jit_ulong, value: jit_uint) -> jit_int;
pub fn jit_long_to_int_ovf(result: *mut jit_int, value: jit_long) -> jit_int;
pub fn jit_long_to_uint_ovf(result: *mut jit_uint, value: jit_long) -> jit_int;
pub fn jit_long_to_long_ovf(result: *mut jit_long, value: jit_long) -> jit_int;
pub fn jit_long_to_ulong_ovf(result: *mut jit_ulong, value: jit_long) -> jit_int;
pub fn jit_ulong_to_int_ovf(result: *mut jit_int, value: jit_ulong) -> jit_int;
pub fn jit_ulong_to_uint_ovf(result: *mut jit_uint, value: jit_ulong) -> jit_int;
pub fn jit_ulong_to_long_ovf(result: *mut jit_long, value: jit_ulong) -> jit_int;
pub fn jit_ulong_to_ulong_ovf(result: *mut jit_ulong, value: jit_ulong) -> jit_int;
pub fn jit_float32_to_int(value: jit_float32) -> jit_int;
pub fn jit_float32_to_uint(value: jit_float32) -> jit_uint;
pub fn jit_float32_to_long(value: jit_float32) -> jit_long;
pub fn jit_float32_to_ulong(value: jit_float32) -> jit_ulong;
pub fn jit_float32_to_int_ovf(result: *mut jit_int, value: jit_float32) -> jit_int;
pub fn jit_float32_to_uint_ovf(result: *mut jit_uint, value: jit_float32) -> jit_int;
pub fn jit_float32_to_long_ovf(result: *mut jit_long, value: jit_float32) -> jit_int;
pub fn jit_float32_to_ulong_ovf(result: *mut jit_ulong, value: jit_float32) -> jit_int;
pub fn jit_float64_to_int(value: jit_float64) -> jit_int;
pub fn jit_float64_to_uint(value: jit_float64) -> jit_uint;
pub fn jit_float64_to_long(value: jit_float64) -> jit_long;
pub fn jit_float64_to_ulong(value: jit_float64) -> jit_ulong;
pub fn jit_float64_to_int_ovf(result: *mut jit_int, value: jit_float64) -> jit_int;
pub fn jit_float64_to_uint_ovf(result: *mut jit_uint, value: jit_float64) -> jit_int;
pub fn jit_float64_to_long_ovf(result: *mut jit_long, value: jit_float64) -> jit_int;
pub fn jit_float64_to_ulong_ovf(result: *mut jit_ulong, value: jit_float64) -> jit_int;
pub fn jit_nfloat_to_int(value: jit_nfloat) -> jit_int;
pub fn jit_nfloat_to_uint(value: jit_nfloat) -> jit_uint;
pub fn jit_nfloat_to_long(value: jit_nfloat) -> jit_long;
pub fn jit_nfloat_to_ulong(value: jit_nfloat) -> jit_ulong;
pub fn jit_nfloat_to_int_ovf(result: *mut jit_int, value: jit_nfloat) -> jit_int;
pub fn jit_nfloat_to_uint_ovf(result: *mut jit_uint, value: jit_nfloat) -> jit_int;
pub fn jit_nfloat_to_long_ovf(result: *mut jit_long, value: jit_nfloat) -> jit_int;
pub fn jit_nfloat_to_ulong_ovf(result: *mut jit_ulong, value: jit_nfloat) -> jit_int;
pub fn jit_int_to_float32(value: jit_int) -> jit_float32;
pub fn jit_int_to_float64(value: jit_int) -> jit_float64;
pub fn jit_int_to_nfloat(value: jit_int) -> jit_nfloat;
pub fn jit_uint_to_float32(value: jit_uint) -> jit_float32;
pub fn jit_uint_to_float64(value: jit_uint) -> jit_float64;
pub fn jit_uint_to_nfloat(value: jit_uint) -> jit_nfloat;
pub fn jit_long_to_float32(value: jit_long) -> jit_float32;
pub fn jit_long_to_float64(value: jit_long) -> jit_float64;
pub fn jit_long_to_nfloat(value: jit_long) -> jit_nfloat;
pub fn jit_ulong_to_float32(value: jit_ulong) -> jit_float32;
pub fn jit_ulong_to_float64(value: jit_ulong) -> jit_float64;
pub fn jit_ulong_to_nfloat(value: jit_ulong) -> jit_nfloat;
pub fn jit_float32_to_float64(value: jit_float32) -> jit_float64;
pub fn jit_float32_to_nfloat(value: jit_float32) -> jit_nfloat;
pub fn jit_float64_to_float32(value: jit_float64) -> jit_float32;
pub fn jit_float64_to_nfloat(value: jit_float64) -> jit_nfloat;
pub fn jit_nfloat_to_float32(value: jit_nfloat) -> jit_float32;
pub fn jit_nfloat_to_float64(value: jit_nfloat) -> jit_float64;
}
pub type _jit_meta = c_void;
pub type jit_meta_t = *mut _jit_meta;
extern "C" {
pub fn jit_meta_set(
list: *mut jit_meta_t,
type_: ::std::os::raw::c_int,
data: *mut ::std::os::raw::c_void,
free_data: jit_meta_free_func,
pool_owner: jit_function_t,
) -> ::std::os::raw::c_int;
pub fn jit_meta_get(
list: jit_meta_t,
type_: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_void;
pub fn jit_meta_free(list: *mut jit_meta_t, type_: ::std::os::raw::c_int);
pub fn jit_meta_destroy(list: *mut jit_meta_t);
}
pub type jit_objmodel = c_void;
pub type jit_objmodel_t = *mut jit_objmodel;
pub type jitom_class = c_void;
pub type jitom_class_t = *mut jitom_class;
pub type jitom_field = c_void;
pub type jitom_field_t = *mut jitom_field;
pub type jitom_method = c_void;
pub type jitom_method_t = *mut jitom_method;
extern "C" {
pub fn jitom_destroy_model(model: jit_objmodel_t);
pub fn jitom_get_class_by_name(
model: jit_objmodel_t,
name: *const ::std::os::raw::c_char,
) -> jitom_class_t;
pub fn jitom_class_get_name(
model: jit_objmodel_t,
klass: jitom_class_t,
) -> *mut ::std::os::raw::c_char;
pub fn jitom_class_get_modifiers(
model: jit_objmodel_t,
klass: jitom_class_t,
) -> ::std::os::raw::c_int;
pub fn jitom_class_get_type(model: jit_objmodel_t, klass: jitom_class_t) -> jit_type_t;
pub fn jitom_class_get_value_type(model: jit_objmodel_t, klass: jitom_class_t) -> jit_type_t;
pub fn jitom_class_get_primary_super(
model: jit_objmodel_t,
klass: jitom_class_t,
) -> jitom_class_t;
pub fn jitom_class_get_all_supers(
model: jit_objmodel_t,
klass: jitom_class_t,
num: *mut ::std::os::raw::c_uint,
) -> *mut jitom_class_t;
pub fn jitom_class_get_interfaces(
model: jit_objmodel_t,
klass: jitom_class_t,
num: *mut ::std::os::raw::c_uint,
) -> *mut jitom_class_t;
pub fn jitom_class_get_fields(
model: jit_objmodel_t,
klass: jitom_class_t,
num: *mut ::std::os::raw::c_uint,
) -> *mut jitom_field_t;
pub fn jitom_class_get_methods(
model: jit_objmodel_t,
klass: jitom_class_t,
num: *mut ::std::os::raw::c_uint,
) -> *mut jitom_method_t;
pub fn jitom_class_new(
model: jit_objmodel_t,
klass: jitom_class_t,
ctor: jitom_method_t,
func: jit_function_t,
args: *mut jit_value_t,
num_args: ::std::os::raw::c_uint,
flags: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jitom_class_new_value(
model: jit_objmodel_t,
klass: jitom_class_t,
ctor: jitom_method_t,
func: jit_function_t,
args: *mut jit_value_t,
num_args: ::std::os::raw::c_uint,
flags: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jitom_class_delete(
model: jit_objmodel_t,
klass: jitom_class_t,
obj_value: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jitom_class_add_ref(
model: jit_objmodel_t,
klass: jitom_class_t,
obj_value: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jitom_field_get_name(
model: jit_objmodel_t,
klass: jitom_class_t,
field: jitom_field_t,
) -> *mut ::std::os::raw::c_char;
pub fn jitom_field_get_type(
model: jit_objmodel_t,
klass: jitom_class_t,
field: jitom_field_t,
) -> jit_type_t;
pub fn jitom_field_get_modifiers(
model: jit_objmodel_t,
klass: jitom_class_t,
field: jitom_field_t,
) -> ::std::os::raw::c_int;
pub fn jitom_field_load(
model: jit_objmodel_t,
klass: jitom_class_t,
field: jitom_field_t,
func: jit_function_t,
obj_value: jit_value_t,
) -> jit_value_t;
pub fn jitom_field_load_address(
model: jit_objmodel_t,
klass: jitom_class_t,
field: jitom_field_t,
func: jit_function_t,
obj_value: jit_value_t,
) -> jit_value_t;
pub fn jitom_field_store(
model: jit_objmodel_t,
klass: jitom_class_t,
field: jitom_field_t,
func: jit_function_t,
obj_value: jit_value_t,
value: jit_value_t,
) -> ::std::os::raw::c_int;
pub fn jitom_method_get_name(
model: jit_objmodel_t,
klass: jitom_class_t,
method: jitom_method_t,
) -> *mut ::std::os::raw::c_char;
pub fn jitom_method_get_type(
model: jit_objmodel_t,
klass: jitom_class_t,
method: jitom_method_t,
) -> jit_type_t;
pub fn jitom_method_get_modifiers(
model: jit_objmodel_t,
klass: jitom_class_t,
method: jitom_method_t,
) -> ::std::os::raw::c_int;
pub fn jitom_method_invoke(
model: jit_objmodel_t,
klass: jitom_class_t,
method: jitom_method_t,
func: jit_function_t,
args: *mut jit_value_t,
num_args: ::std::os::raw::c_uint,
flags: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jitom_method_invoke_virtual(
model: jit_objmodel_t,
klass: jitom_class_t,
method: jitom_method_t,
func: jit_function_t,
args: *mut jit_value_t,
num_args: ::std::os::raw::c_uint,
flags: ::std::os::raw::c_int,
) -> jit_value_t;
pub fn jitom_type_tag_as_class(
type_: jit_type_t,
model: jit_objmodel_t,
klass: jitom_class_t,
incref: ::std::os::raw::c_int,
) -> jit_type_t;
pub fn jitom_type_tag_as_value(
type_: jit_type_t,
model: jit_objmodel_t,
klass: jitom_class_t,
incref: ::std::os::raw::c_int,
) -> jit_type_t;
pub fn jitom_type_is_class(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jitom_type_is_value(type_: jit_type_t) -> ::std::os::raw::c_int;
pub fn jitom_type_get_model(type_: jit_type_t) -> jit_objmodel_t;
pub fn jitom_type_get_class(type_: jit_type_t) -> jitom_class_t;
}
pub type jit_opcode_info_t = jit_opcode_info;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct jit_opcode_info {
pub name: *const ::std::os::raw::c_char,
pub flags: ::std::os::raw::c_int,
}
extern "C" {
pub static jit_opcodes: [jit_opcode_info_t; 437usize];
}
pub type _jit_arch_frame_t = _jit_arch_frame;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _jit_arch_frame {
pub next_frame: *mut _jit_arch_frame_t,
pub return_address: *mut ::std::os::raw::c_void,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct jit_unwind_context_t {
pub frame: *mut ::std::os::raw::c_void,
pub cache: *mut ::std::os::raw::c_void,
pub context: jit_context_t,
}
extern "C" {
pub fn jit_unwind_init(
unwind: *mut jit_unwind_context_t,
context: jit_context_t,
) -> ::std::os::raw::c_int;
pub fn jit_unwind_free(unwind: *mut jit_unwind_context_t);
pub fn jit_unwind_next(unwind: *mut jit_unwind_context_t) -> ::std::os::raw::c_int;
pub fn jit_unwind_next_pc(unwind: *mut jit_unwind_context_t) -> ::std::os::raw::c_int;
pub fn jit_unwind_get_pc(unwind: *mut jit_unwind_context_t) -> *mut ::std::os::raw::c_void;
pub fn jit_unwind_jump(
unwind: *mut jit_unwind_context_t,
pc: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int;
pub fn jit_unwind_get_function(unwind: *mut jit_unwind_context_t) -> jit_function_t;
pub fn jit_unwind_get_offset(unwind: *mut jit_unwind_context_t) -> ::std::os::raw::c_uint;
pub fn jit_malloc(size: ::std::os::raw::c_uint) -> *mut ::std::os::raw::c_void;
pub fn jit_calloc(
num: ::std::os::raw::c_uint,
size: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_realloc(
ptr: *mut ::std::os::raw::c_void,
size: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_free(ptr: *mut ::std::os::raw::c_void);
pub fn jit_memset(
dest: *mut ::std::os::raw::c_void,
ch: ::std::os::raw::c_int,
len: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_memcpy(
dest: *mut ::std::os::raw::c_void,
src: *const ::std::os::raw::c_void,
len: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_memmove(
dest: *mut ::std::os::raw::c_void,
src: *const ::std::os::raw::c_void,
len: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_memcmp(
s1: *const ::std::os::raw::c_void,
s2: *const ::std::os::raw::c_void,
len: ::std::os::raw::c_uint,
) -> ::std::os::raw::c_int;
pub fn jit_memchr(
str_: *const ::std::os::raw::c_void,
ch: ::std::os::raw::c_int,
len: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_void;
pub fn jit_strlen(str_: *const ::std::os::raw::c_char) -> ::std::os::raw::c_uint;
pub fn jit_strcpy(
dest: *mut ::std::os::raw::c_char,
src: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_char;
pub fn jit_strcat(
dest: *mut ::std::os::raw::c_char,
src: *const ::std::os::raw::c_char,
) -> *mut ::std::os::raw::c_char;
pub fn jit_strncpy(
dest: *mut ::std::os::raw::c_char,
src: *const ::std::os::raw::c_char,
len: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_char;
pub fn jit_strdup(str_: *const ::std::os::raw::c_char) -> *mut ::std::os::raw::c_char;
pub fn jit_strndup(
str_: *const ::std::os::raw::c_char,
len: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_char;
pub fn jit_strcmp(
str1: *const ::std::os::raw::c_char,
str2: *const ::std::os::raw::c_char,
) -> ::std::os::raw::c_int;
pub fn jit_strncmp(
str1: *const ::std::os::raw::c_char,
str2: *const ::std::os::raw::c_char,
len: ::std::os::raw::c_uint,
) -> ::std::os::raw::c_int;
pub fn jit_stricmp(
str1: *const ::std::os::raw::c_char,
str2: *const ::std::os::raw::c_char,
) -> ::std::os::raw::c_int;
pub fn jit_strnicmp(
str1: *const ::std::os::raw::c_char,
str2: *const ::std::os::raw::c_char,
len: ::std::os::raw::c_uint,
) -> ::std::os::raw::c_int;
pub fn jit_strchr(
str_: *const ::std::os::raw::c_char,
ch: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_char;
pub fn jit_strrchr(
str_: *const ::std::os::raw::c_char,
ch: ::std::os::raw::c_int,
) -> *mut ::std::os::raw::c_char;
pub fn jit_sprintf(
str_: *mut ::std::os::raw::c_char,
format: *const ::std::os::raw::c_char,
...
) -> ::std::os::raw::c_int;
pub fn jit_snprintf(
str_: *mut ::std::os::raw::c_char,
len: ::std::os::raw::c_uint,
format: *const ::std::os::raw::c_char,
...
) -> ::std::os::raw::c_int;
}
#[repr(C)]
#[repr(align(16))]
#[derive(Copy, Clone)]
pub struct jit_constant_t {
pub type_: jit_type_t,
pub __bindgen_padding_0: u64,
pub un: jit_constant_t__bindgen_ty_1,
}
#[repr(C)]
#[repr(align(16))]
#[derive(Copy, Clone)]
pub union jit_constant_t__bindgen_ty_1 {
pub ptr_value: *mut ::std::os::raw::c_void,
pub int_value: jit_int,
pub uint_value: jit_uint,
pub nint_value: jit_nint,
pub nuint_value: jit_nuint,
pub long_value: jit_long,
pub ulong_value: jit_ulong,
pub float32_value: jit_float32,
pub float64_value: jit_float64,
pub nfloat_value: jit_nfloat,
}
extern "C" {
pub fn jit_value_create(func: jit_function_t, type_: jit_type_t) -> jit_value_t;
pub fn jit_value_create_nint_constant(
func: jit_function_t,
type_: jit_type_t,
const_value: jit_nint,
) -> jit_value_t;
pub fn jit_value_create_long_constant(
func: jit_function_t,
type_: jit_type_t,
const_value: jit_long,
) -> jit_value_t;
pub fn jit_value_create_float32_constant(
func: jit_function_t,
type_: jit_type_t,
const_value: jit_float32,
) -> jit_value_t;
pub fn jit_value_create_float64_constant(
func: jit_function_t,
type_: jit_type_t,
const_value: jit_float64,
) -> jit_value_t;
pub fn jit_value_create_nfloat_constant(
func: jit_function_t,
type_: jit_type_t,
const_value: jit_nfloat,
) -> jit_value_t;
pub fn jit_value_create_constant(
func: jit_function_t,
const_value: *const jit_constant_t,
) -> jit_value_t;
pub fn jit_value_get_param(func: jit_function_t, param: ::std::os::raw::c_uint) -> jit_value_t;
pub fn jit_value_get_struct_pointer(func: jit_function_t) -> jit_value_t;
pub fn jit_value_is_temporary(value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_value_is_local(value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_value_is_constant(value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_value_is_parameter(value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_value_ref(func: jit_function_t, value: jit_value_t);
pub fn jit_value_set_volatile(value: jit_value_t);
pub fn jit_value_is_volatile(value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_value_set_addressable(value: jit_value_t);
pub fn jit_value_is_addressable(value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_value_get_type(value: jit_value_t) -> jit_type_t;
pub fn jit_value_get_function(value: jit_value_t) -> jit_function_t;
pub fn jit_value_get_block(value: jit_value_t) -> jit_block_t;
pub fn jit_value_get_context(value: jit_value_t) -> jit_context_t;
pub fn jit_value_get_constant(value: jit_value_t) -> jit_constant_t;
pub fn jit_value_get_nint_constant(value: jit_value_t) -> jit_nint;
pub fn jit_value_get_long_constant(value: jit_value_t) -> jit_long;
pub fn jit_value_get_float32_constant(value: jit_value_t) -> jit_float32;
pub fn jit_value_get_float64_constant(value: jit_value_t) -> jit_float64;
pub fn jit_value_get_nfloat_constant(value: jit_value_t) -> jit_nfloat;
pub fn jit_value_is_true(value: jit_value_t) -> ::std::os::raw::c_int;
pub fn jit_constant_convert(
result: *mut jit_constant_t,
value: *const jit_constant_t,
type_: jit_type_t,
overflow_check: ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
}
pub const jit_prot_t_JIT_PROT_NONE: jit_prot_t = 0;
pub const jit_prot_t_JIT_PROT_READ: jit_prot_t = 1;
pub const jit_prot_t_JIT_PROT_READ_WRITE: jit_prot_t = 2;
pub const jit_prot_t_JIT_PROT_EXEC_READ: jit_prot_t = 3;
pub const jit_prot_t_JIT_PROT_EXEC_READ_WRITE: jit_prot_t = 4;
pub type jit_prot_t = ::std::os::raw::c_uint;
extern "C" {
pub fn jit_vmem_init();
pub fn jit_vmem_page_size() -> jit_uint;
pub fn jit_vmem_round_up(value: jit_nuint) -> jit_nuint;
pub fn jit_vmem_round_down(value: jit_nuint) -> jit_nuint;
pub fn jit_vmem_reserve(size: jit_uint) -> *mut ::std::os::raw::c_void;
pub fn jit_vmem_reserve_committed(
size: jit_uint,
prot: jit_prot_t,
) -> *mut ::std::os::raw::c_void;
pub fn jit_vmem_release(
addr: *mut ::std::os::raw::c_void,
size: jit_uint,
) -> ::std::os::raw::c_int;
pub fn jit_vmem_commit(
addr: *mut ::std::os::raw::c_void,
size: jit_uint,
prot: jit_prot_t,
) -> ::std::os::raw::c_int;
pub fn jit_vmem_decommit(
addr: *mut ::std::os::raw::c_void,
size: jit_uint,
) -> ::std::os::raw::c_int;
pub fn jit_vmem_protect(
addr: *mut ::std::os::raw::c_void,
size: jit_uint,
prot: jit_prot_t,
) -> ::std::os::raw::c_int;
pub fn _jit_get_frame_address(
start: *mut ::std::os::raw::c_void,
n: ::std::os::raw::c_uint,
) -> *mut ::std::os::raw::c_void;
pub fn _jit_get_next_frame_address(
frame: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
pub fn _jit_get_return_address(
frame: *mut ::std::os::raw::c_void,
frame0: *mut ::std::os::raw::c_void,
return0: *mut ::std::os::raw::c_void,
) -> *mut ::std::os::raw::c_void;
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct jit_crawl_mark_t {
pub mark: *mut ::std::os::raw::c_void,
}
extern "C" {
pub fn jit_frame_contains_crawl_mark(
frame: *mut ::std::os::raw::c_void,
mark: *mut jit_crawl_mark_t,
) -> ::std::os::raw::c_int;
}
pub type __builtin_va_list = [__va_list_tag; 1usize];
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct __va_list_tag {
pub gp_offset: ::std::os::raw::c_uint,
pub fp_offset: ::std::os::raw::c_uint,
pub overflow_arg_area: *mut ::std::os::raw::c_void,
pub reg_save_area: *mut ::std::os::raw::c_void,
}
#[test]
fn sanity() {
unsafe {
let ctx = jit_context_create();
jit_context_build_start(ctx);
let mut params = vec![];
params.push(jit_type_int);
params.push(jit_type_int);
let sig = jit_type_create_signature(
jit_abi_t_jit_abi_cdecl,
jit_type_int,
params.as_mut_ptr(),
params.len() as u32,
1,
);
let func = jit_function_create(ctx, sig);
let x_param = jit_value_get_param(func, 0);
let y_param = jit_value_get_param(func, 1);
let temp = jit_insn_add(func, x_param, y_param);
jit_insn_return(func, temp);
jit_function_compile(func);
jit_context_build_end(ctx);
let arg_values: Vec<jit_int> = vec![123, 456];
let arg_ptrs: Vec<*const jit_int> =
arg_values.iter().map(|p| p as *const jit_int).collect();
let mut result: jit_int = 0;
jit_function_apply(
func,
std::mem::transmute(arg_ptrs.as_ptr()),
std::mem::transmute(&mut result),
);
jit_context_destroy(ctx);
assert_eq!(result, 123 + 456);
}
}