package xedbindings

  1. Overview
  2. Docs

Source file libxed__c_generated_functions__Function_desc__Function.ml

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
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
module CI = Cstubs_internals

external libxed_stubs_1_str2xed_address_width_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_1_str2xed_address_width_enum_t" 

external libxed_stubs_2_str2xed_attribute_enum_t
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_2_str2xed_attribute_enum_t" 

external libxed_stubs_3_str2xed_category_enum_t
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_3_str2xed_category_enum_t" 

external libxed_stubs_4_str2xed_chip_enum_t : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_4_str2xed_chip_enum_t" 

external libxed_stubs_5_str2xed_cpuid_group_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_5_str2xed_cpuid_group_enum_t" 

external libxed_stubs_6_str2xed_cpuid_rec_enum_t
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_6_str2xed_cpuid_rec_enum_t" 

external libxed_stubs_7_str2xed_error_enum_t : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_7_str2xed_error_enum_t" 

external libxed_stubs_8_str2xed_exception_enum_t
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_8_str2xed_exception_enum_t" 

external libxed_stubs_9_str2xed_extension_enum_t
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_9_str2xed_extension_enum_t" 

external libxed_stubs_10_str2xed_flag_action_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_10_str2xed_flag_action_enum_t" 

external libxed_stubs_11_str2xed_flag_enum_t : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_11_str2xed_flag_enum_t" 

external libxed_stubs_12_str2xed_iclass_enum_t : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_12_str2xed_iclass_enum_t" 

external libxed_stubs_13_str2xed_iform_enum_t : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_13_str2xed_iform_enum_t" 

external libxed_stubs_14_str2xed_isa_set_enum_t
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_14_str2xed_isa_set_enum_t" 

external libxed_stubs_15_str2xed_machine_mode_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_15_str2xed_machine_mode_enum_t" 

external libxed_stubs_16_str2xed_nonterminal_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_16_str2xed_nonterminal_enum_t" 

external libxed_stubs_17_str2xed_operand_action_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_17_str2xed_operand_action_enum_t" 

external libxed_stubs_18_str2xed_operand_convert_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_18_str2xed_operand_convert_enum_t" 

external libxed_stubs_19_str2xed_operand_element_type_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_19_str2xed_operand_element_type_enum_t" 

external libxed_stubs_20_str2xed_operand_element_xtype_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_20_str2xed_operand_element_xtype_enum_t" 

external libxed_stubs_21_str2xed_operand_enum_t
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_21_str2xed_operand_enum_t" 

external libxed_stubs_22_str2xed_operand_type_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_22_str2xed_operand_type_enum_t" 

external libxed_stubs_23_str2xed_operand_visibility_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_23_str2xed_operand_visibility_enum_t" 

external libxed_stubs_24_str2xed_operand_width_enum_t
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_24_str2xed_operand_width_enum_t" 

external libxed_stubs_25_str2xed_reg_class_enum_t
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_25_str2xed_reg_class_enum_t" 

external libxed_stubs_26_str2xed_reg_enum_t : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_26_str2xed_reg_enum_t" 

external libxed_stubs_27_str2xed_syntax_enum_t : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_27_str2xed_syntax_enum_t" 

external libxed_stubs_28_xed3_operand_get_absbr : _ CI.fatptr -> int
  = "libxed_stubs_28_xed3_operand_get_absbr" 

external libxed_stubs_29_xed3_operand_get_agen : _ CI.fatptr -> int
  = "libxed_stubs_29_xed3_operand_get_agen" 

external libxed_stubs_30_xed3_operand_get_amd3dnow : _ CI.fatptr -> int
  = "libxed_stubs_30_xed3_operand_get_amd3dnow" 

external libxed_stubs_31_xed3_operand_get_asz : _ CI.fatptr -> int
  = "libxed_stubs_31_xed3_operand_get_asz" 

external libxed_stubs_32_xed3_operand_get_base0
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_32_xed3_operand_get_base0" 

external libxed_stubs_33_xed3_operand_get_base1
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_33_xed3_operand_get_base1" 

external libxed_stubs_34_xed3_operand_get_bcast : _ CI.fatptr -> int
  = "libxed_stubs_34_xed3_operand_get_bcast" 

external libxed_stubs_35_xed3_operand_get_bcrc : _ CI.fatptr -> int
  = "libxed_stubs_35_xed3_operand_get_bcrc" 

external libxed_stubs_36_xed3_operand_get_brdisp_width : _ CI.fatptr -> char
  = "libxed_stubs_36_xed3_operand_get_brdisp_width" 

external libxed_stubs_37_xed3_operand_get_cet : _ CI.fatptr -> int
  = "libxed_stubs_37_xed3_operand_get_cet" 

external libxed_stubs_38_xed3_operand_get_chip : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_38_xed3_operand_get_chip" 

external libxed_stubs_39_xed3_operand_get_cldemote : _ CI.fatptr -> int
  = "libxed_stubs_39_xed3_operand_get_cldemote" 

external libxed_stubs_40_xed3_operand_get_default_seg : _ CI.fatptr -> int
  = "libxed_stubs_40_xed3_operand_get_default_seg" 

external libxed_stubs_41_xed3_operand_get_df32 : _ CI.fatptr -> int
  = "libxed_stubs_41_xed3_operand_get_df32" 

external libxed_stubs_42_xed3_operand_get_df64 : _ CI.fatptr -> int
  = "libxed_stubs_42_xed3_operand_get_df64" 

external libxed_stubs_43_xed3_operand_get_dfv : _ CI.fatptr -> int
  = "libxed_stubs_43_xed3_operand_get_dfv" 

external libxed_stubs_44_xed3_operand_get_disp : _ CI.fatptr -> int64
  = "libxed_stubs_44_xed3_operand_get_disp" 

external libxed_stubs_45_xed3_operand_get_disp_width : _ CI.fatptr -> char
  = "libxed_stubs_45_xed3_operand_get_disp_width" 

external libxed_stubs_46_xed3_operand_get_dummy : _ CI.fatptr -> int
  = "libxed_stubs_46_xed3_operand_get_dummy" 

external libxed_stubs_47_xed3_operand_get_easz : _ CI.fatptr -> int
  = "libxed_stubs_47_xed3_operand_get_easz" 

external libxed_stubs_48_xed3_operand_get_element_size : _ CI.fatptr -> int
  = "libxed_stubs_48_xed3_operand_get_element_size" 

external libxed_stubs_49_xed3_operand_get_enc_delete : _ CI.fatptr -> int
  = "libxed_stubs_49_xed3_operand_get_enc_delete" 

external libxed_stubs_50_xed3_operand_get_encode_force : _ CI.fatptr -> int
  = "libxed_stubs_50_xed3_operand_get_encode_force" 

external libxed_stubs_51_xed3_operand_get_encoder_preferred
  : _ CI.fatptr -> int = "libxed_stubs_51_xed3_operand_get_encoder_preferred" 

external libxed_stubs_52_xed3_operand_get_eosz : _ CI.fatptr -> int
  = "libxed_stubs_52_xed3_operand_get_eosz" 

external libxed_stubs_53_xed3_operand_get_error
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_53_xed3_operand_get_error" 

external libxed_stubs_54_xed3_operand_get_esrc : _ CI.fatptr -> int
  = "libxed_stubs_54_xed3_operand_get_esrc" 

external libxed_stubs_55_xed3_operand_get_evvspace : _ CI.fatptr -> int
  = "libxed_stubs_55_xed3_operand_get_evvspace" 

external libxed_stubs_56_xed3_operand_get_first_f2f3 : _ CI.fatptr -> int
  = "libxed_stubs_56_xed3_operand_get_first_f2f3" 

external libxed_stubs_57_xed3_operand_get_has_egpr : _ CI.fatptr -> int
  = "libxed_stubs_57_xed3_operand_get_has_egpr" 

external libxed_stubs_58_xed3_operand_get_has_modrm : _ CI.fatptr -> int
  = "libxed_stubs_58_xed3_operand_get_has_modrm" 

external libxed_stubs_59_xed3_operand_get_has_sib : _ CI.fatptr -> int
  = "libxed_stubs_59_xed3_operand_get_has_sib" 

external libxed_stubs_60_xed3_operand_get_hint : _ CI.fatptr -> int
  = "libxed_stubs_60_xed3_operand_get_hint" 

external libxed_stubs_61_xed3_operand_get_iclass
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_61_xed3_operand_get_iclass" 

external libxed_stubs_62_xed3_operand_get_ild_f2 : _ CI.fatptr -> int
  = "libxed_stubs_62_xed3_operand_get_ild_f2" 

external libxed_stubs_63_xed3_operand_get_ild_f3 : _ CI.fatptr -> int
  = "libxed_stubs_63_xed3_operand_get_ild_f3" 

external libxed_stubs_64_xed3_operand_get_ild_seg : _ CI.fatptr -> int
  = "libxed_stubs_64_xed3_operand_get_ild_seg" 

external libxed_stubs_65_xed3_operand_get_imm0 : _ CI.fatptr -> int
  = "libxed_stubs_65_xed3_operand_get_imm0" 

external libxed_stubs_66_xed3_operand_get_imm0signed : _ CI.fatptr -> int
  = "libxed_stubs_66_xed3_operand_get_imm0signed" 

external libxed_stubs_67_xed3_operand_get_imm1 : _ CI.fatptr -> int
  = "libxed_stubs_67_xed3_operand_get_imm1" 

external libxed_stubs_68_xed3_operand_get_imm1_bytes : _ CI.fatptr -> int
  = "libxed_stubs_68_xed3_operand_get_imm1_bytes" 

external libxed_stubs_69_xed3_operand_get_imm_width : _ CI.fatptr -> char
  = "libxed_stubs_69_xed3_operand_get_imm_width" 

external libxed_stubs_70_xed3_operand_get_index
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_70_xed3_operand_get_index" 

external libxed_stubs_71_xed3_operand_get_last_f2f3 : _ CI.fatptr -> int
  = "libxed_stubs_71_xed3_operand_get_last_f2f3" 

external libxed_stubs_72_xed3_operand_get_llrc : _ CI.fatptr -> int
  = "libxed_stubs_72_xed3_operand_get_llrc" 

external libxed_stubs_73_xed3_operand_get_lock : _ CI.fatptr -> int
  = "libxed_stubs_73_xed3_operand_get_lock" 

external libxed_stubs_74_xed3_operand_get_lzcnt : _ CI.fatptr -> int
  = "libxed_stubs_74_xed3_operand_get_lzcnt" 

external libxed_stubs_75_xed3_operand_get_map : _ CI.fatptr -> int
  = "libxed_stubs_75_xed3_operand_get_map" 

external libxed_stubs_76_xed3_operand_get_mask : _ CI.fatptr -> int
  = "libxed_stubs_76_xed3_operand_get_mask" 

external libxed_stubs_77_xed3_operand_get_max_bytes : _ CI.fatptr -> int
  = "libxed_stubs_77_xed3_operand_get_max_bytes" 

external libxed_stubs_78_xed3_operand_get_mem0 : _ CI.fatptr -> int
  = "libxed_stubs_78_xed3_operand_get_mem0" 

external libxed_stubs_79_xed3_operand_get_mem1 : _ CI.fatptr -> int
  = "libxed_stubs_79_xed3_operand_get_mem1" 

external libxed_stubs_80_xed3_operand_get_mem_width
  : _ CI.fatptr -> Unsigned.uint16
  = "libxed_stubs_80_xed3_operand_get_mem_width" 

external libxed_stubs_81_xed3_operand_get_mod : _ CI.fatptr -> int
  = "libxed_stubs_81_xed3_operand_get_mod" 

external libxed_stubs_82_xed3_operand_get_mode : _ CI.fatptr -> int
  = "libxed_stubs_82_xed3_operand_get_mode" 

external libxed_stubs_83_xed3_operand_get_mode_first_prefix
  : _ CI.fatptr -> int = "libxed_stubs_83_xed3_operand_get_mode_first_prefix" 

external libxed_stubs_84_xed3_operand_get_mode_short_ud0 : _ CI.fatptr -> int
  = "libxed_stubs_84_xed3_operand_get_mode_short_ud0" 

external libxed_stubs_85_xed3_operand_get_modep5 : _ CI.fatptr -> int
  = "libxed_stubs_85_xed3_operand_get_modep5" 

external libxed_stubs_86_xed3_operand_get_modrm_byte : _ CI.fatptr -> int
  = "libxed_stubs_86_xed3_operand_get_modrm_byte" 

external libxed_stubs_87_xed3_operand_get_mpxmode : _ CI.fatptr -> int
  = "libxed_stubs_87_xed3_operand_get_mpxmode" 

external libxed_stubs_88_xed3_operand_get_must_use_evex : _ CI.fatptr -> int
  = "libxed_stubs_88_xed3_operand_get_must_use_evex" 

external libxed_stubs_89_xed3_operand_get_nd : _ CI.fatptr -> int
  = "libxed_stubs_89_xed3_operand_get_nd" 

external libxed_stubs_90_xed3_operand_get_need_memdisp : _ CI.fatptr -> int
  = "libxed_stubs_90_xed3_operand_get_need_memdisp" 

external libxed_stubs_91_xed3_operand_get_need_sib : _ CI.fatptr -> int
  = "libxed_stubs_91_xed3_operand_get_need_sib" 

external libxed_stubs_92_xed3_operand_get_needrex : _ CI.fatptr -> int
  = "libxed_stubs_92_xed3_operand_get_needrex" 

external libxed_stubs_93_xed3_operand_get_nelem : _ CI.fatptr -> int
  = "libxed_stubs_93_xed3_operand_get_nelem" 

external libxed_stubs_94_xed3_operand_get_nf : _ CI.fatptr -> int
  = "libxed_stubs_94_xed3_operand_get_nf" 

external libxed_stubs_95_xed3_operand_get_no_apx : _ CI.fatptr -> int
  = "libxed_stubs_95_xed3_operand_get_no_apx" 

external libxed_stubs_96_xed3_operand_get_no_evex : _ CI.fatptr -> int
  = "libxed_stubs_96_xed3_operand_get_no_evex" 

external libxed_stubs_97_xed3_operand_get_no_vex : _ CI.fatptr -> int
  = "libxed_stubs_97_xed3_operand_get_no_vex" 

external libxed_stubs_98_xed3_operand_get_nominal_opcode : _ CI.fatptr -> int
  = "libxed_stubs_98_xed3_operand_get_nominal_opcode" 

external libxed_stubs_99_xed3_operand_get_norex : _ CI.fatptr -> int
  = "libxed_stubs_99_xed3_operand_get_norex" 

external libxed_stubs_100_xed3_operand_get_norex2 : _ CI.fatptr -> int
  = "libxed_stubs_100_xed3_operand_get_norex2" 

external libxed_stubs_101_xed3_operand_get_nprefixes : _ CI.fatptr -> int
  = "libxed_stubs_101_xed3_operand_get_nprefixes" 

external libxed_stubs_102_xed3_operand_get_nrexes : _ CI.fatptr -> int
  = "libxed_stubs_102_xed3_operand_get_nrexes" 

external libxed_stubs_103_xed3_operand_get_nseg_prefixes : _ CI.fatptr -> int
  = "libxed_stubs_103_xed3_operand_get_nseg_prefixes" 

external libxed_stubs_104_xed3_operand_get_osz : _ CI.fatptr -> int
  = "libxed_stubs_104_xed3_operand_get_osz" 

external libxed_stubs_105_xed3_operand_get_out_of_bytes : _ CI.fatptr -> int
  = "libxed_stubs_105_xed3_operand_get_out_of_bytes" 

external libxed_stubs_106_xed3_operand_get_outreg
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_106_xed3_operand_get_outreg" 

external libxed_stubs_107_xed3_operand_get_p4 : _ CI.fatptr -> int
  = "libxed_stubs_107_xed3_operand_get_p4" 

external libxed_stubs_108_xed3_operand_get_pos_disp : _ CI.fatptr -> int
  = "libxed_stubs_108_xed3_operand_get_pos_disp" 

external libxed_stubs_109_xed3_operand_get_pos_imm : _ CI.fatptr -> int
  = "libxed_stubs_109_xed3_operand_get_pos_imm" 

external libxed_stubs_110_xed3_operand_get_pos_imm1 : _ CI.fatptr -> int
  = "libxed_stubs_110_xed3_operand_get_pos_imm1" 

external libxed_stubs_111_xed3_operand_get_pos_modrm : _ CI.fatptr -> int
  = "libxed_stubs_111_xed3_operand_get_pos_modrm" 

external libxed_stubs_112_xed3_operand_get_pos_nominal_opcode
  : _ CI.fatptr -> int
  = "libxed_stubs_112_xed3_operand_get_pos_nominal_opcode" 

external libxed_stubs_113_xed3_operand_get_pos_sib : _ CI.fatptr -> int
  = "libxed_stubs_113_xed3_operand_get_pos_sib" 

external libxed_stubs_114_xed3_operand_get_prefetchit : _ CI.fatptr -> int
  = "libxed_stubs_114_xed3_operand_get_prefetchit" 

external libxed_stubs_115_xed3_operand_get_prefetchrst : _ CI.fatptr -> int
  = "libxed_stubs_115_xed3_operand_get_prefetchrst" 

external libxed_stubs_116_xed3_operand_get_prefix66 : _ CI.fatptr -> int
  = "libxed_stubs_116_xed3_operand_get_prefix66" 

external libxed_stubs_117_xed3_operand_get_ptr : _ CI.fatptr -> int
  = "libxed_stubs_117_xed3_operand_get_ptr" 

external libxed_stubs_118_xed3_operand_get_realmode : _ CI.fatptr -> int
  = "libxed_stubs_118_xed3_operand_get_realmode" 

external libxed_stubs_119_xed3_operand_get_reg : _ CI.fatptr -> int
  = "libxed_stubs_119_xed3_operand_get_reg" 

external libxed_stubs_120_xed3_operand_get_reg0
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_120_xed3_operand_get_reg0" 

external libxed_stubs_121_xed3_operand_get_reg1
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_121_xed3_operand_get_reg1" 

external libxed_stubs_122_xed3_operand_get_reg2
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_122_xed3_operand_get_reg2" 

external libxed_stubs_123_xed3_operand_get_reg3
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_123_xed3_operand_get_reg3" 

external libxed_stubs_124_xed3_operand_get_reg4
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_124_xed3_operand_get_reg4" 

external libxed_stubs_125_xed3_operand_get_reg5
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_125_xed3_operand_get_reg5" 

external libxed_stubs_126_xed3_operand_get_reg6
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_126_xed3_operand_get_reg6" 

external libxed_stubs_127_xed3_operand_get_reg7
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_127_xed3_operand_get_reg7" 

external libxed_stubs_128_xed3_operand_get_reg8
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_128_xed3_operand_get_reg8" 

external libxed_stubs_129_xed3_operand_get_reg9
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_129_xed3_operand_get_reg9" 

external libxed_stubs_130_xed3_operand_get_relbr : _ CI.fatptr -> int
  = "libxed_stubs_130_xed3_operand_get_relbr" 

external libxed_stubs_131_xed3_operand_get_rep : _ CI.fatptr -> int
  = "libxed_stubs_131_xed3_operand_get_rep" 

external libxed_stubs_132_xed3_operand_get_rex : _ CI.fatptr -> int
  = "libxed_stubs_132_xed3_operand_get_rex" 

external libxed_stubs_133_xed3_operand_get_rex2 : _ CI.fatptr -> int
  = "libxed_stubs_133_xed3_operand_get_rex2" 

external libxed_stubs_134_xed3_operand_get_rexb : _ CI.fatptr -> int
  = "libxed_stubs_134_xed3_operand_get_rexb" 

external libxed_stubs_135_xed3_operand_get_rexb4 : _ CI.fatptr -> int
  = "libxed_stubs_135_xed3_operand_get_rexb4" 

external libxed_stubs_136_xed3_operand_get_rexr : _ CI.fatptr -> int
  = "libxed_stubs_136_xed3_operand_get_rexr" 

external libxed_stubs_137_xed3_operand_get_rexr4 : _ CI.fatptr -> int
  = "libxed_stubs_137_xed3_operand_get_rexr4" 

external libxed_stubs_138_xed3_operand_get_rexw : _ CI.fatptr -> int
  = "libxed_stubs_138_xed3_operand_get_rexw" 

external libxed_stubs_139_xed3_operand_get_rexx : _ CI.fatptr -> int
  = "libxed_stubs_139_xed3_operand_get_rexx" 

external libxed_stubs_140_xed3_operand_get_rexx4 : _ CI.fatptr -> int
  = "libxed_stubs_140_xed3_operand_get_rexx4" 

external libxed_stubs_141_xed3_operand_get_rm : _ CI.fatptr -> int
  = "libxed_stubs_141_xed3_operand_get_rm" 

external libxed_stubs_142_xed3_operand_get_roundc : _ CI.fatptr -> int
  = "libxed_stubs_142_xed3_operand_get_roundc" 

external libxed_stubs_143_xed3_operand_get_sae : _ CI.fatptr -> int
  = "libxed_stubs_143_xed3_operand_get_sae" 

external libxed_stubs_144_xed3_operand_get_scale : _ CI.fatptr -> int
  = "libxed_stubs_144_xed3_operand_get_scale" 

external libxed_stubs_145_xed3_operand_get_scc : _ CI.fatptr -> int
  = "libxed_stubs_145_xed3_operand_get_scc" 

external libxed_stubs_146_xed3_operand_get_seg0
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_146_xed3_operand_get_seg0" 

external libxed_stubs_147_xed3_operand_get_seg1
  : _ CI.fatptr -> Unsigned.uint = "libxed_stubs_147_xed3_operand_get_seg1" 

external libxed_stubs_148_xed3_operand_get_seg_ovd : _ CI.fatptr -> int
  = "libxed_stubs_148_xed3_operand_get_seg_ovd" 

external libxed_stubs_149_xed3_operand_get_sibbase : _ CI.fatptr -> int
  = "libxed_stubs_149_xed3_operand_get_sibbase" 

external libxed_stubs_150_xed3_operand_get_sibindex : _ CI.fatptr -> int
  = "libxed_stubs_150_xed3_operand_get_sibindex" 

external libxed_stubs_151_xed3_operand_get_sibscale : _ CI.fatptr -> int
  = "libxed_stubs_151_xed3_operand_get_sibscale" 

external libxed_stubs_152_xed3_operand_get_skip_osz : _ CI.fatptr -> int
  = "libxed_stubs_152_xed3_operand_get_skip_osz" 

external libxed_stubs_153_xed3_operand_get_smode : _ CI.fatptr -> int
  = "libxed_stubs_153_xed3_operand_get_smode" 

external libxed_stubs_154_xed3_operand_get_srm : _ CI.fatptr -> int
  = "libxed_stubs_154_xed3_operand_get_srm" 

external libxed_stubs_155_xed3_operand_get_tzcnt : _ CI.fatptr -> int
  = "libxed_stubs_155_xed3_operand_get_tzcnt" 

external libxed_stubs_156_xed3_operand_get_ubit : _ CI.fatptr -> int
  = "libxed_stubs_156_xed3_operand_get_ubit" 

external libxed_stubs_157_xed3_operand_get_uimm0
  : _ CI.fatptr -> Unsigned.uint64
  = "libxed_stubs_157_xed3_operand_get_uimm0" 

external libxed_stubs_158_xed3_operand_get_uimm1 : _ CI.fatptr -> char
  = "libxed_stubs_158_xed3_operand_get_uimm1" 

external libxed_stubs_159_xed3_operand_get_using_default_segment0
  : _ CI.fatptr -> int
  = "libxed_stubs_159_xed3_operand_get_using_default_segment0" 

external libxed_stubs_160_xed3_operand_get_using_default_segment1
  : _ CI.fatptr -> int
  = "libxed_stubs_160_xed3_operand_get_using_default_segment1" 

external libxed_stubs_161_xed3_operand_get_vex_c4 : _ CI.fatptr -> int
  = "libxed_stubs_161_xed3_operand_get_vex_c4" 

external libxed_stubs_162_xed3_operand_get_vex_prefix : _ CI.fatptr -> int
  = "libxed_stubs_162_xed3_operand_get_vex_prefix" 

external libxed_stubs_163_xed3_operand_get_vexdest210 : _ CI.fatptr -> int
  = "libxed_stubs_163_xed3_operand_get_vexdest210" 

external libxed_stubs_164_xed3_operand_get_vexdest3 : _ CI.fatptr -> int
  = "libxed_stubs_164_xed3_operand_get_vexdest3" 

external libxed_stubs_165_xed3_operand_get_vexdest4 : _ CI.fatptr -> int
  = "libxed_stubs_165_xed3_operand_get_vexdest4" 

external libxed_stubs_166_xed3_operand_get_vexvalid : _ CI.fatptr -> int
  = "libxed_stubs_166_xed3_operand_get_vexvalid" 

external libxed_stubs_167_xed3_operand_get_vl : _ CI.fatptr -> int
  = "libxed_stubs_167_xed3_operand_get_vl" 

external libxed_stubs_168_xed3_operand_get_vl_ign : _ CI.fatptr -> int
  = "libxed_stubs_168_xed3_operand_get_vl_ign" 

external libxed_stubs_169_xed3_operand_get_wbnoinvd : _ CI.fatptr -> int
  = "libxed_stubs_169_xed3_operand_get_wbnoinvd" 

external libxed_stubs_170_xed3_operand_get_zeroing : _ CI.fatptr -> int
  = "libxed_stubs_170_xed3_operand_get_zeroing" 

external libxed_stubs_171_xed3_operand_set_absbr : _ CI.fatptr -> int -> unit
  = "libxed_stubs_171_xed3_operand_set_absbr" 

external libxed_stubs_172_xed3_operand_set_agen : _ CI.fatptr -> int -> unit
  = "libxed_stubs_172_xed3_operand_set_agen" 

external libxed_stubs_173_xed3_operand_set_amd3dnow
  : _ CI.fatptr -> int -> unit = "libxed_stubs_173_xed3_operand_set_amd3dnow" 

external libxed_stubs_174_xed3_operand_set_asz : _ CI.fatptr -> int -> unit
  = "libxed_stubs_174_xed3_operand_set_asz" 

external libxed_stubs_175_xed3_operand_set_base0
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_175_xed3_operand_set_base0" 

external libxed_stubs_176_xed3_operand_set_base1
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_176_xed3_operand_set_base1" 

external libxed_stubs_177_xed3_operand_set_bcast : _ CI.fatptr -> int -> unit
  = "libxed_stubs_177_xed3_operand_set_bcast" 

external libxed_stubs_178_xed3_operand_set_bcrc : _ CI.fatptr -> int -> unit
  = "libxed_stubs_178_xed3_operand_set_bcrc" 

external libxed_stubs_179_xed3_operand_set_brdisp_width
  : _ CI.fatptr -> char -> unit
  = "libxed_stubs_179_xed3_operand_set_brdisp_width" 

external libxed_stubs_180_xed3_operand_set_cet : _ CI.fatptr -> int -> unit
  = "libxed_stubs_180_xed3_operand_set_cet" 

external libxed_stubs_181_xed3_operand_set_chip
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_181_xed3_operand_set_chip" 

external libxed_stubs_182_xed3_operand_set_cldemote
  : _ CI.fatptr -> int -> unit = "libxed_stubs_182_xed3_operand_set_cldemote" 

external libxed_stubs_183_xed3_operand_set_default_seg
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_183_xed3_operand_set_default_seg" 

external libxed_stubs_184_xed3_operand_set_df32 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_184_xed3_operand_set_df32" 

external libxed_stubs_185_xed3_operand_set_df64 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_185_xed3_operand_set_df64" 

external libxed_stubs_186_xed3_operand_set_dfv : _ CI.fatptr -> int -> unit
  = "libxed_stubs_186_xed3_operand_set_dfv" 

external libxed_stubs_187_xed3_operand_set_disp
  : _ CI.fatptr -> int64 -> unit = "libxed_stubs_187_xed3_operand_set_disp" 

external libxed_stubs_188_xed3_operand_set_disp_width
  : _ CI.fatptr -> char -> unit
  = "libxed_stubs_188_xed3_operand_set_disp_width" 

external libxed_stubs_189_xed3_operand_set_dummy : _ CI.fatptr -> int -> unit
  = "libxed_stubs_189_xed3_operand_set_dummy" 

external libxed_stubs_190_xed3_operand_set_easz : _ CI.fatptr -> int -> unit
  = "libxed_stubs_190_xed3_operand_set_easz" 

external libxed_stubs_191_xed3_operand_set_element_size
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_191_xed3_operand_set_element_size" 

external libxed_stubs_192_xed3_operand_set_enc_delete
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_192_xed3_operand_set_enc_delete" 

external libxed_stubs_193_xed3_operand_set_encode_force
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_193_xed3_operand_set_encode_force" 

external libxed_stubs_194_xed3_operand_set_encoder_preferred
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_194_xed3_operand_set_encoder_preferred" 

external libxed_stubs_195_xed3_operand_set_eosz : _ CI.fatptr -> int -> unit
  = "libxed_stubs_195_xed3_operand_set_eosz" 

external libxed_stubs_196_xed3_operand_set_error
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_196_xed3_operand_set_error" 

external libxed_stubs_197_xed3_operand_set_esrc : _ CI.fatptr -> int -> unit
  = "libxed_stubs_197_xed3_operand_set_esrc" 

external libxed_stubs_198_xed3_operand_set_evvspace
  : _ CI.fatptr -> int -> unit = "libxed_stubs_198_xed3_operand_set_evvspace" 

external libxed_stubs_199_xed3_operand_set_first_f2f3
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_199_xed3_operand_set_first_f2f3" 

external libxed_stubs_200_xed3_operand_set_has_egpr
  : _ CI.fatptr -> int -> unit = "libxed_stubs_200_xed3_operand_set_has_egpr" 

external libxed_stubs_201_xed3_operand_set_has_modrm
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_201_xed3_operand_set_has_modrm" 

external libxed_stubs_202_xed3_operand_set_has_sib
  : _ CI.fatptr -> int -> unit = "libxed_stubs_202_xed3_operand_set_has_sib" 

external libxed_stubs_203_xed3_operand_set_hint : _ CI.fatptr -> int -> unit
  = "libxed_stubs_203_xed3_operand_set_hint" 

external libxed_stubs_204_xed3_operand_set_iclass
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_204_xed3_operand_set_iclass" 

external libxed_stubs_205_xed3_operand_set_ild_f2
  : _ CI.fatptr -> int -> unit = "libxed_stubs_205_xed3_operand_set_ild_f2" 

external libxed_stubs_206_xed3_operand_set_ild_f3
  : _ CI.fatptr -> int -> unit = "libxed_stubs_206_xed3_operand_set_ild_f3" 

external libxed_stubs_207_xed3_operand_set_ild_seg
  : _ CI.fatptr -> int -> unit = "libxed_stubs_207_xed3_operand_set_ild_seg" 

external libxed_stubs_208_xed3_operand_set_imm0 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_208_xed3_operand_set_imm0" 

external libxed_stubs_209_xed3_operand_set_imm0signed
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_209_xed3_operand_set_imm0signed" 

external libxed_stubs_210_xed3_operand_set_imm1 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_210_xed3_operand_set_imm1" 

external libxed_stubs_211_xed3_operand_set_imm1_bytes
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_211_xed3_operand_set_imm1_bytes" 

external libxed_stubs_212_xed3_operand_set_imm_width
  : _ CI.fatptr -> char -> unit
  = "libxed_stubs_212_xed3_operand_set_imm_width" 

external libxed_stubs_213_xed3_operand_set_index
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_213_xed3_operand_set_index" 

external libxed_stubs_214_xed3_operand_set_last_f2f3
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_214_xed3_operand_set_last_f2f3" 

external libxed_stubs_215_xed3_operand_set_llrc : _ CI.fatptr -> int -> unit
  = "libxed_stubs_215_xed3_operand_set_llrc" 

external libxed_stubs_216_xed3_operand_set_lock : _ CI.fatptr -> int -> unit
  = "libxed_stubs_216_xed3_operand_set_lock" 

external libxed_stubs_217_xed3_operand_set_lzcnt : _ CI.fatptr -> int -> unit
  = "libxed_stubs_217_xed3_operand_set_lzcnt" 

external libxed_stubs_218_xed3_operand_set_map : _ CI.fatptr -> int -> unit
  = "libxed_stubs_218_xed3_operand_set_map" 

external libxed_stubs_219_xed3_operand_set_mask : _ CI.fatptr -> int -> unit
  = "libxed_stubs_219_xed3_operand_set_mask" 

external libxed_stubs_220_xed3_operand_set_max_bytes
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_220_xed3_operand_set_max_bytes" 

external libxed_stubs_221_xed3_operand_set_mem0 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_221_xed3_operand_set_mem0" 

external libxed_stubs_222_xed3_operand_set_mem1 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_222_xed3_operand_set_mem1" 

external libxed_stubs_223_xed3_operand_set_mem_width
  : _ CI.fatptr -> Unsigned.uint16 -> unit
  = "libxed_stubs_223_xed3_operand_set_mem_width" 

external libxed_stubs_224_xed3_operand_set_mod : _ CI.fatptr -> int -> unit
  = "libxed_stubs_224_xed3_operand_set_mod" 

external libxed_stubs_225_xed3_operand_set_mode : _ CI.fatptr -> int -> unit
  = "libxed_stubs_225_xed3_operand_set_mode" 

external libxed_stubs_226_xed3_operand_set_mode_first_prefix
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_226_xed3_operand_set_mode_first_prefix" 

external libxed_stubs_227_xed3_operand_set_mode_short_ud0
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_227_xed3_operand_set_mode_short_ud0" 

external libxed_stubs_228_xed3_operand_set_modep5
  : _ CI.fatptr -> int -> unit = "libxed_stubs_228_xed3_operand_set_modep5" 

external libxed_stubs_229_xed3_operand_set_modrm_byte
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_229_xed3_operand_set_modrm_byte" 

external libxed_stubs_230_xed3_operand_set_mpxmode
  : _ CI.fatptr -> int -> unit = "libxed_stubs_230_xed3_operand_set_mpxmode" 

external libxed_stubs_231_xed3_operand_set_must_use_evex
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_231_xed3_operand_set_must_use_evex" 

external libxed_stubs_232_xed3_operand_set_nd : _ CI.fatptr -> int -> unit
  = "libxed_stubs_232_xed3_operand_set_nd" 

external libxed_stubs_233_xed3_operand_set_need_memdisp
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_233_xed3_operand_set_need_memdisp" 

external libxed_stubs_234_xed3_operand_set_need_sib
  : _ CI.fatptr -> int -> unit = "libxed_stubs_234_xed3_operand_set_need_sib" 

external libxed_stubs_235_xed3_operand_set_needrex
  : _ CI.fatptr -> int -> unit = "libxed_stubs_235_xed3_operand_set_needrex" 

external libxed_stubs_236_xed3_operand_set_nelem : _ CI.fatptr -> int -> unit
  = "libxed_stubs_236_xed3_operand_set_nelem" 

external libxed_stubs_237_xed3_operand_set_nf : _ CI.fatptr -> int -> unit
  = "libxed_stubs_237_xed3_operand_set_nf" 

external libxed_stubs_238_xed3_operand_set_no_apx
  : _ CI.fatptr -> int -> unit = "libxed_stubs_238_xed3_operand_set_no_apx" 

external libxed_stubs_239_xed3_operand_set_no_evex
  : _ CI.fatptr -> int -> unit = "libxed_stubs_239_xed3_operand_set_no_evex" 

external libxed_stubs_240_xed3_operand_set_no_vex
  : _ CI.fatptr -> int -> unit = "libxed_stubs_240_xed3_operand_set_no_vex" 

external libxed_stubs_241_xed3_operand_set_nominal_opcode
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_241_xed3_operand_set_nominal_opcode" 

external libxed_stubs_242_xed3_operand_set_norex : _ CI.fatptr -> int -> unit
  = "libxed_stubs_242_xed3_operand_set_norex" 

external libxed_stubs_243_xed3_operand_set_norex2
  : _ CI.fatptr -> int -> unit = "libxed_stubs_243_xed3_operand_set_norex2" 

external libxed_stubs_244_xed3_operand_set_nprefixes
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_244_xed3_operand_set_nprefixes" 

external libxed_stubs_245_xed3_operand_set_nrexes
  : _ CI.fatptr -> int -> unit = "libxed_stubs_245_xed3_operand_set_nrexes" 

external libxed_stubs_246_xed3_operand_set_nseg_prefixes
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_246_xed3_operand_set_nseg_prefixes" 

external libxed_stubs_247_xed3_operand_set_osz : _ CI.fatptr -> int -> unit
  = "libxed_stubs_247_xed3_operand_set_osz" 

external libxed_stubs_248_xed3_operand_set_out_of_bytes
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_248_xed3_operand_set_out_of_bytes" 

external libxed_stubs_249_xed3_operand_set_outreg
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_249_xed3_operand_set_outreg" 

external libxed_stubs_250_xed3_operand_set_p4 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_250_xed3_operand_set_p4" 

external libxed_stubs_251_xed3_operand_set_pos_disp
  : _ CI.fatptr -> int -> unit = "libxed_stubs_251_xed3_operand_set_pos_disp" 

external libxed_stubs_252_xed3_operand_set_pos_imm
  : _ CI.fatptr -> int -> unit = "libxed_stubs_252_xed3_operand_set_pos_imm" 

external libxed_stubs_253_xed3_operand_set_pos_imm1
  : _ CI.fatptr -> int -> unit = "libxed_stubs_253_xed3_operand_set_pos_imm1" 

external libxed_stubs_254_xed3_operand_set_pos_modrm
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_254_xed3_operand_set_pos_modrm" 

external libxed_stubs_255_xed3_operand_set_pos_nominal_opcode
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_255_xed3_operand_set_pos_nominal_opcode" 

external libxed_stubs_256_xed3_operand_set_pos_sib
  : _ CI.fatptr -> int -> unit = "libxed_stubs_256_xed3_operand_set_pos_sib" 

external libxed_stubs_257_xed3_operand_set_prefetchit
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_257_xed3_operand_set_prefetchit" 

external libxed_stubs_258_xed3_operand_set_prefetchrst
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_258_xed3_operand_set_prefetchrst" 

external libxed_stubs_259_xed3_operand_set_prefix66
  : _ CI.fatptr -> int -> unit = "libxed_stubs_259_xed3_operand_set_prefix66" 

external libxed_stubs_260_xed3_operand_set_ptr : _ CI.fatptr -> int -> unit
  = "libxed_stubs_260_xed3_operand_set_ptr" 

external libxed_stubs_261_xed3_operand_set_realmode
  : _ CI.fatptr -> int -> unit = "libxed_stubs_261_xed3_operand_set_realmode" 

external libxed_stubs_262_xed3_operand_set_reg : _ CI.fatptr -> int -> unit
  = "libxed_stubs_262_xed3_operand_set_reg" 

external libxed_stubs_263_xed3_operand_set_reg0
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_263_xed3_operand_set_reg0" 

external libxed_stubs_264_xed3_operand_set_reg1
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_264_xed3_operand_set_reg1" 

external libxed_stubs_265_xed3_operand_set_reg2
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_265_xed3_operand_set_reg2" 

external libxed_stubs_266_xed3_operand_set_reg3
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_266_xed3_operand_set_reg3" 

external libxed_stubs_267_xed3_operand_set_reg4
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_267_xed3_operand_set_reg4" 

external libxed_stubs_268_xed3_operand_set_reg5
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_268_xed3_operand_set_reg5" 

external libxed_stubs_269_xed3_operand_set_reg6
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_269_xed3_operand_set_reg6" 

external libxed_stubs_270_xed3_operand_set_reg7
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_270_xed3_operand_set_reg7" 

external libxed_stubs_271_xed3_operand_set_reg8
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_271_xed3_operand_set_reg8" 

external libxed_stubs_272_xed3_operand_set_reg9
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_272_xed3_operand_set_reg9" 

external libxed_stubs_273_xed3_operand_set_relbr : _ CI.fatptr -> int -> unit
  = "libxed_stubs_273_xed3_operand_set_relbr" 

external libxed_stubs_274_xed3_operand_set_rep : _ CI.fatptr -> int -> unit
  = "libxed_stubs_274_xed3_operand_set_rep" 

external libxed_stubs_275_xed3_operand_set_rex : _ CI.fatptr -> int -> unit
  = "libxed_stubs_275_xed3_operand_set_rex" 

external libxed_stubs_276_xed3_operand_set_rex2 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_276_xed3_operand_set_rex2" 

external libxed_stubs_277_xed3_operand_set_rexb : _ CI.fatptr -> int -> unit
  = "libxed_stubs_277_xed3_operand_set_rexb" 

external libxed_stubs_278_xed3_operand_set_rexb4 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_278_xed3_operand_set_rexb4" 

external libxed_stubs_279_xed3_operand_set_rexr : _ CI.fatptr -> int -> unit
  = "libxed_stubs_279_xed3_operand_set_rexr" 

external libxed_stubs_280_xed3_operand_set_rexr4 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_280_xed3_operand_set_rexr4" 

external libxed_stubs_281_xed3_operand_set_rexw : _ CI.fatptr -> int -> unit
  = "libxed_stubs_281_xed3_operand_set_rexw" 

external libxed_stubs_282_xed3_operand_set_rexx : _ CI.fatptr -> int -> unit
  = "libxed_stubs_282_xed3_operand_set_rexx" 

external libxed_stubs_283_xed3_operand_set_rexx4 : _ CI.fatptr -> int -> unit
  = "libxed_stubs_283_xed3_operand_set_rexx4" 

external libxed_stubs_284_xed3_operand_set_rm : _ CI.fatptr -> int -> unit
  = "libxed_stubs_284_xed3_operand_set_rm" 

external libxed_stubs_285_xed3_operand_set_roundc
  : _ CI.fatptr -> int -> unit = "libxed_stubs_285_xed3_operand_set_roundc" 

external libxed_stubs_286_xed3_operand_set_sae : _ CI.fatptr -> int -> unit
  = "libxed_stubs_286_xed3_operand_set_sae" 

external libxed_stubs_287_xed3_operand_set_scale : _ CI.fatptr -> int -> unit
  = "libxed_stubs_287_xed3_operand_set_scale" 

external libxed_stubs_288_xed3_operand_set_scc : _ CI.fatptr -> int -> unit
  = "libxed_stubs_288_xed3_operand_set_scc" 

external libxed_stubs_289_xed3_operand_set_seg0
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_289_xed3_operand_set_seg0" 

external libxed_stubs_290_xed3_operand_set_seg1
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_290_xed3_operand_set_seg1" 

external libxed_stubs_291_xed3_operand_set_seg_ovd
  : _ CI.fatptr -> int -> unit = "libxed_stubs_291_xed3_operand_set_seg_ovd" 

external libxed_stubs_292_xed3_operand_set_sibbase
  : _ CI.fatptr -> int -> unit = "libxed_stubs_292_xed3_operand_set_sibbase" 

external libxed_stubs_293_xed3_operand_set_sibindex
  : _ CI.fatptr -> int -> unit = "libxed_stubs_293_xed3_operand_set_sibindex" 

external libxed_stubs_294_xed3_operand_set_sibscale
  : _ CI.fatptr -> int -> unit = "libxed_stubs_294_xed3_operand_set_sibscale" 

external libxed_stubs_295_xed3_operand_set_skip_osz
  : _ CI.fatptr -> int -> unit = "libxed_stubs_295_xed3_operand_set_skip_osz" 

external libxed_stubs_296_xed3_operand_set_smode : _ CI.fatptr -> int -> unit
  = "libxed_stubs_296_xed3_operand_set_smode" 

external libxed_stubs_297_xed3_operand_set_srm : _ CI.fatptr -> int -> unit
  = "libxed_stubs_297_xed3_operand_set_srm" 

external libxed_stubs_298_xed3_operand_set_tzcnt : _ CI.fatptr -> int -> unit
  = "libxed_stubs_298_xed3_operand_set_tzcnt" 

external libxed_stubs_299_xed3_operand_set_ubit : _ CI.fatptr -> int -> unit
  = "libxed_stubs_299_xed3_operand_set_ubit" 

external libxed_stubs_300_xed3_operand_set_uimm0
  : _ CI.fatptr -> Unsigned.uint64 -> unit
  = "libxed_stubs_300_xed3_operand_set_uimm0" 

external libxed_stubs_301_xed3_operand_set_uimm1
  : _ CI.fatptr -> char -> unit = "libxed_stubs_301_xed3_operand_set_uimm1" 

external libxed_stubs_302_xed3_operand_set_using_default_segment0
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_302_xed3_operand_set_using_default_segment0" 

external libxed_stubs_303_xed3_operand_set_using_default_segment1
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_303_xed3_operand_set_using_default_segment1" 

external libxed_stubs_304_xed3_operand_set_vex_c4
  : _ CI.fatptr -> int -> unit = "libxed_stubs_304_xed3_operand_set_vex_c4" 

external libxed_stubs_305_xed3_operand_set_vex_prefix
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_305_xed3_operand_set_vex_prefix" 

external libxed_stubs_306_xed3_operand_set_vexdest210
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_306_xed3_operand_set_vexdest210" 

external libxed_stubs_307_xed3_operand_set_vexdest3
  : _ CI.fatptr -> int -> unit = "libxed_stubs_307_xed3_operand_set_vexdest3" 

external libxed_stubs_308_xed3_operand_set_vexdest4
  : _ CI.fatptr -> int -> unit = "libxed_stubs_308_xed3_operand_set_vexdest4" 

external libxed_stubs_309_xed3_operand_set_vexvalid
  : _ CI.fatptr -> int -> unit = "libxed_stubs_309_xed3_operand_set_vexvalid" 

external libxed_stubs_310_xed3_operand_set_vl : _ CI.fatptr -> int -> unit
  = "libxed_stubs_310_xed3_operand_set_vl" 

external libxed_stubs_311_xed3_operand_set_vl_ign
  : _ CI.fatptr -> int -> unit = "libxed_stubs_311_xed3_operand_set_vl_ign" 

external libxed_stubs_312_xed3_operand_set_wbnoinvd
  : _ CI.fatptr -> int -> unit = "libxed_stubs_312_xed3_operand_set_wbnoinvd" 

external libxed_stubs_313_xed3_operand_set_zeroing
  : _ CI.fatptr -> int -> unit = "libxed_stubs_313_xed3_operand_set_zeroing" 

external libxed_stubs_314_xed_addr : _ CI.fatptr -> int -> unit
  = "libxed_stubs_314_xed_addr" 

external libxed_stubs_315_xed_address_width_enum_t2str
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_315_xed_address_width_enum_t2str" 

external libxed_stubs_316_xed_attribute : int -> Unsigned.uint
  = "libxed_stubs_316_xed_attribute" 

external libxed_stubs_317_xed_attribute_enum_t2str
  : Unsigned.uint -> CI.voidp = "libxed_stubs_317_xed_attribute_enum_t2str" 

external libxed_stubs_318_xed_attribute_max : unit -> int
  = "libxed_stubs_318_xed_attribute_max" 

external libxed_stubs_319_xed_category_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_319_xed_category_enum_t2str" 

external libxed_stubs_320_xed_chip_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_320_xed_chip_enum_t2str" 

external libxed_stubs_321_xed_classify_amx : _ CI.fatptr -> bool
  = "libxed_stubs_321_xed_classify_amx" 

external libxed_stubs_322_xed_classify_apx : _ CI.fatptr -> bool
  = "libxed_stubs_322_xed_classify_apx" 

external libxed_stubs_323_xed_classify_avx : _ CI.fatptr -> bool
  = "libxed_stubs_323_xed_classify_avx" 

external libxed_stubs_324_xed_classify_avx512 : _ CI.fatptr -> bool
  = "libxed_stubs_324_xed_classify_avx512" 

external libxed_stubs_325_xed_classify_avx512_maskop : _ CI.fatptr -> bool
  = "libxed_stubs_325_xed_classify_avx512_maskop" 

external libxed_stubs_326_xed_classify_sse : _ CI.fatptr -> bool
  = "libxed_stubs_326_xed_classify_sse" 

external libxed_stubs_327_xed_convert_to_encoder_request
  : _ CI.fatptr -> _ CI.fatptr -> bool
  = "libxed_stubs_327_xed_convert_to_encoder_request" 

external libxed_stubs_328_xed_cpuid_group_enum_t2str
  : Unsigned.uint -> CI.voidp = "libxed_stubs_328_xed_cpuid_group_enum_t2str" 

external libxed_stubs_329_xed_cpuid_rec_enum_t2str
  : Unsigned.uint -> CI.voidp = "libxed_stubs_329_xed_cpuid_rec_enum_t2str" 

external libxed_stubs_330_xed_decode
  : _ CI.fatptr -> string CI.ocaml -> int -> Unsigned.uint
  = "libxed_stubs_330_xed_decode" 

external libxed_stubs_331_xed_decode_with_features
  : _ CI.fatptr -> string CI.ocaml -> int -> _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_331_xed_decode_with_features" 

external libxed_stubs_332_xed_decoded_inst_avx512_dest_elements
  : _ CI.fatptr -> int
  = "libxed_stubs_332_xed_decoded_inst_avx512_dest_elements" 

external libxed_stubs_333_xed_decoded_inst_conditionally_writes_registers
  : _ CI.fatptr -> bool
  = "libxed_stubs_333_xed_decoded_inst_conditionally_writes_registers" 

external libxed_stubs_334_xed_decoded_inst_dump
  : _ CI.fatptr -> bytes CI.ocaml -> int -> unit
  = "libxed_stubs_334_xed_decoded_inst_dump" 

external libxed_stubs_335_xed_decoded_inst_dump_xed_format
  : _ CI.fatptr -> bytes CI.ocaml -> int -> Unsigned.uint64 -> bool
  = "libxed_stubs_335_xed_decoded_inst_dump_xed_format" 

external libxed_stubs_336_xed_decoded_inst_get_attribute
  : _ CI.fatptr -> Unsigned.uint -> Unsigned.uint32
  = "libxed_stubs_336_xed_decoded_inst_get_attribute" 

external libxed_stubs_337_xed_decoded_inst_get_base_reg
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_337_xed_decoded_inst_get_base_reg" 

external libxed_stubs_338_xed_decoded_inst_get_branch_displacement
  : _ CI.fatptr -> int64
  = "libxed_stubs_338_xed_decoded_inst_get_branch_displacement" 

external libxed_stubs_339_xed_decoded_inst_get_branch_displacement_width
  : _ CI.fatptr -> int
  = "libxed_stubs_339_xed_decoded_inst_get_branch_displacement_width" 

external libxed_stubs_340_xed_decoded_inst_get_branch_displacement_width_bits
  : _ CI.fatptr -> int
  = "libxed_stubs_340_xed_decoded_inst_get_branch_displacement_width_bits" 

external libxed_stubs_341_xed_decoded_inst_get_byte
  : _ CI.fatptr -> int -> char = "libxed_stubs_341_xed_decoded_inst_get_byte" 

external libxed_stubs_342_xed_decoded_inst_get_category
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_342_xed_decoded_inst_get_category" 

external libxed_stubs_343_xed_decoded_inst_get_default_flags_values
  : _ CI.fatptr -> _ CI.fatptr -> bool
  = "libxed_stubs_343_xed_decoded_inst_get_default_flags_values" 

external libxed_stubs_344_xed_decoded_inst_get_extension
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_344_xed_decoded_inst_get_extension" 

external libxed_stubs_345_xed_decoded_inst_get_iclass
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_345_xed_decoded_inst_get_iclass" 

external libxed_stubs_346_xed_decoded_inst_get_iform_enum
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_346_xed_decoded_inst_get_iform_enum" 

external libxed_stubs_347_xed_decoded_inst_get_iform_enum_dispatch
  : _ CI.fatptr -> int
  = "libxed_stubs_347_xed_decoded_inst_get_iform_enum_dispatch" 

external libxed_stubs_348_xed_decoded_inst_get_immediate_is_signed
  : _ CI.fatptr -> int
  = "libxed_stubs_348_xed_decoded_inst_get_immediate_is_signed" 

external libxed_stubs_349_xed_decoded_inst_get_immediate_width
  : _ CI.fatptr -> int
  = "libxed_stubs_349_xed_decoded_inst_get_immediate_width" 

external libxed_stubs_350_xed_decoded_inst_get_immediate_width_bits
  : _ CI.fatptr -> int
  = "libxed_stubs_350_xed_decoded_inst_get_immediate_width_bits" 

external libxed_stubs_351_xed_decoded_inst_get_index_reg
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_351_xed_decoded_inst_get_index_reg" 

external libxed_stubs_352_xed_decoded_inst_get_input_chip
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_352_xed_decoded_inst_get_input_chip" 

external libxed_stubs_353_xed_decoded_inst_get_isa_set
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_353_xed_decoded_inst_get_isa_set" 

external libxed_stubs_354_xed_decoded_inst_get_length : _ CI.fatptr -> int
  = "libxed_stubs_354_xed_decoded_inst_get_length" 

external libxed_stubs_355_xed_decoded_inst_get_machine_mode_bits
  : _ CI.fatptr -> int
  = "libxed_stubs_355_xed_decoded_inst_get_machine_mode_bits" 

external libxed_stubs_356_xed_decoded_inst_get_memop_address_width
  : _ CI.fatptr -> int -> int
  = "libxed_stubs_356_xed_decoded_inst_get_memop_address_width" 

external libxed_stubs_357_xed_decoded_inst_get_memory_displacement
  : _ CI.fatptr -> int -> int64
  = "libxed_stubs_357_xed_decoded_inst_get_memory_displacement" 

external libxed_stubs_358_xed_decoded_inst_get_memory_displacement_width
  : _ CI.fatptr -> int -> int
  = "libxed_stubs_358_xed_decoded_inst_get_memory_displacement_width" 

external libxed_stubs_359_xed_decoded_inst_get_memory_displacement_width_bits
  : _ CI.fatptr -> int -> int
  = "libxed_stubs_359_xed_decoded_inst_get_memory_displacement_width_bits" 

external libxed_stubs_360_xed_decoded_inst_get_memory_operand_length
  : _ CI.fatptr -> int -> int
  = "libxed_stubs_360_xed_decoded_inst_get_memory_operand_length" 

external libxed_stubs_361_xed_decoded_inst_get_modrm : _ CI.fatptr -> char
  = "libxed_stubs_361_xed_decoded_inst_get_modrm" 

external libxed_stubs_362_xed_decoded_inst_get_nprefixes : _ CI.fatptr -> int
  = "libxed_stubs_362_xed_decoded_inst_get_nprefixes" 

external libxed_stubs_363_xed_decoded_inst_get_operand_width
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_363_xed_decoded_inst_get_operand_width" 

external libxed_stubs_364_xed_decoded_inst_get_reg
  : _ CI.fatptr -> Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_364_xed_decoded_inst_get_reg" 

external libxed_stubs_365_xed_decoded_inst_get_rflags_info
  : _ CI.fatptr -> CI.voidp
  = "libxed_stubs_365_xed_decoded_inst_get_rflags_info" 

external libxed_stubs_366_xed_decoded_inst_get_scale
  : _ CI.fatptr -> int -> int = "libxed_stubs_366_xed_decoded_inst_get_scale" 

external libxed_stubs_367_xed_decoded_inst_get_second_immediate
  : _ CI.fatptr -> char
  = "libxed_stubs_367_xed_decoded_inst_get_second_immediate" 

external libxed_stubs_368_xed_decoded_inst_get_seg_reg
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_368_xed_decoded_inst_get_seg_reg" 

external libxed_stubs_369_xed_decoded_inst_get_signed_immediate
  : _ CI.fatptr -> int32
  = "libxed_stubs_369_xed_decoded_inst_get_signed_immediate" 

external libxed_stubs_370_xed_decoded_inst_get_stack_address_mode_bits
  : _ CI.fatptr -> int
  = "libxed_stubs_370_xed_decoded_inst_get_stack_address_mode_bits" 

external libxed_stubs_371_xed_decoded_inst_get_unsigned_immediate
  : _ CI.fatptr -> Unsigned.uint64
  = "libxed_stubs_371_xed_decoded_inst_get_unsigned_immediate" 

external libxed_stubs_372_xed_decoded_inst_get_user_data
  : _ CI.fatptr -> Unsigned.uint64
  = "libxed_stubs_372_xed_decoded_inst_get_user_data" 

external libxed_stubs_373_xed_decoded_inst_has_default_flags_values
  : _ CI.fatptr -> bool
  = "libxed_stubs_373_xed_decoded_inst_has_default_flags_values" 

external libxed_stubs_374_xed_decoded_inst_has_mpx_prefix
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_374_xed_decoded_inst_has_mpx_prefix" 

external libxed_stubs_375_xed_decoded_inst_inst : _ CI.fatptr -> CI.voidp
  = "libxed_stubs_375_xed_decoded_inst_inst" 

external libxed_stubs_376_xed_decoded_inst_is_apx_zu : _ CI.fatptr -> bool
  = "libxed_stubs_376_xed_decoded_inst_is_apx_zu" 

external libxed_stubs_377_xed_decoded_inst_is_broadcast : _ CI.fatptr -> bool
  = "libxed_stubs_377_xed_decoded_inst_is_broadcast" 

external libxed_stubs_378_xed_decoded_inst_is_broadcast_instruction
  : _ CI.fatptr -> bool
  = "libxed_stubs_378_xed_decoded_inst_is_broadcast_instruction" 

external libxed_stubs_379_xed_decoded_inst_is_prefetch : _ CI.fatptr -> bool
  = "libxed_stubs_379_xed_decoded_inst_is_prefetch" 

external libxed_stubs_380_xed_decoded_inst_is_xacquire
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_380_xed_decoded_inst_is_xacquire" 

external libxed_stubs_381_xed_decoded_inst_is_xrelease
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_381_xed_decoded_inst_is_xrelease" 

external libxed_stubs_382_xed_decoded_inst_masked_vector_operation
  : _ CI.fatptr -> bool
  = "libxed_stubs_382_xed_decoded_inst_masked_vector_operation" 

external libxed_stubs_383_xed_decoded_inst_masking : _ CI.fatptr -> bool
  = "libxed_stubs_383_xed_decoded_inst_masking" 

external libxed_stubs_384_xed_decoded_inst_mem_read
  : _ CI.fatptr -> int -> bool = "libxed_stubs_384_xed_decoded_inst_mem_read" 

external libxed_stubs_385_xed_decoded_inst_mem_written
  : _ CI.fatptr -> int -> bool
  = "libxed_stubs_385_xed_decoded_inst_mem_written" 

external libxed_stubs_386_xed_decoded_inst_mem_written_only
  : _ CI.fatptr -> int -> bool
  = "libxed_stubs_386_xed_decoded_inst_mem_written_only" 

external libxed_stubs_387_xed_decoded_inst_merging : _ CI.fatptr -> bool
  = "libxed_stubs_387_xed_decoded_inst_merging" 

external libxed_stubs_388_xed_decoded_inst_noperands : _ CI.fatptr -> int
  = "libxed_stubs_388_xed_decoded_inst_noperands" 

external libxed_stubs_389_xed_decoded_inst_number_of_memory_operands
  : _ CI.fatptr -> int
  = "libxed_stubs_389_xed_decoded_inst_number_of_memory_operands" 

external libxed_stubs_390_xed_decoded_inst_operand_action
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_390_xed_decoded_inst_operand_action" 

external libxed_stubs_391_xed_decoded_inst_operand_element_size_bits
  : _ CI.fatptr -> int -> int
  = "libxed_stubs_391_xed_decoded_inst_operand_element_size_bits" 

external libxed_stubs_392_xed_decoded_inst_operand_element_type
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_392_xed_decoded_inst_operand_element_type" 

external libxed_stubs_393_xed_decoded_inst_operand_elements
  : _ CI.fatptr -> int -> int
  = "libxed_stubs_393_xed_decoded_inst_operand_elements" 

external libxed_stubs_394_xed_decoded_inst_operand_length
  : _ CI.fatptr -> int -> int
  = "libxed_stubs_394_xed_decoded_inst_operand_length" 

external libxed_stubs_395_xed_decoded_inst_operand_length_bits
  : _ CI.fatptr -> int -> int
  = "libxed_stubs_395_xed_decoded_inst_operand_length_bits" 

external libxed_stubs_396_xed_decoded_inst_operands : _ CI.fatptr -> CI.voidp
  = "libxed_stubs_396_xed_decoded_inst_operands" 

external libxed_stubs_397_xed_decoded_inst_operands_const
  : _ CI.fatptr -> CI.voidp
  = "libxed_stubs_397_xed_decoded_inst_operands_const" 

external libxed_stubs_398_xed_decoded_inst_set_branch_displacement
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_398_xed_decoded_inst_set_branch_displacement" 

external libxed_stubs_399_xed_decoded_inst_set_branch_displacement_bits
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_399_xed_decoded_inst_set_branch_displacement_bits" 

external libxed_stubs_400_xed_decoded_inst_set_immediate_signed
  : _ CI.fatptr -> int32 -> int -> unit
  = "libxed_stubs_400_xed_decoded_inst_set_immediate_signed" 

external libxed_stubs_401_xed_decoded_inst_set_immediate_signed_bits
  : _ CI.fatptr -> int32 -> int -> unit
  = "libxed_stubs_401_xed_decoded_inst_set_immediate_signed_bits" 

external libxed_stubs_402_xed_decoded_inst_set_immediate_unsigned
  : _ CI.fatptr -> Unsigned.uint64 -> int -> unit
  = "libxed_stubs_402_xed_decoded_inst_set_immediate_unsigned" 

external libxed_stubs_403_xed_decoded_inst_set_immediate_unsigned_bits
  : _ CI.fatptr -> Unsigned.uint64 -> int -> unit
  = "libxed_stubs_403_xed_decoded_inst_set_immediate_unsigned_bits" 

external libxed_stubs_404_xed_decoded_inst_set_input_chip
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_404_xed_decoded_inst_set_input_chip" 

external libxed_stubs_405_xed_decoded_inst_set_memory_displacement
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_405_xed_decoded_inst_set_memory_displacement" 

external libxed_stubs_406_xed_decoded_inst_set_memory_displacement_bits
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_406_xed_decoded_inst_set_memory_displacement_bits" 

external libxed_stubs_407_xed_decoded_inst_set_mode
  : _ CI.fatptr -> Unsigned.uint -> Unsigned.uint -> unit
  = "libxed_stubs_407_xed_decoded_inst_set_mode" 

external libxed_stubs_408_xed_decoded_inst_set_scale
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_408_xed_decoded_inst_set_scale" 

external libxed_stubs_409_xed_decoded_inst_set_user_data
  : _ CI.fatptr -> Unsigned.uint64 -> unit
  = "libxed_stubs_409_xed_decoded_inst_set_user_data" 

external libxed_stubs_410_xed_decoded_inst_uses_embedded_broadcast
  : _ CI.fatptr -> bool
  = "libxed_stubs_410_xed_decoded_inst_uses_embedded_broadcast" 

external libxed_stubs_411_xed_decoded_inst_uses_rflags : _ CI.fatptr -> bool
  = "libxed_stubs_411_xed_decoded_inst_uses_rflags" 

external libxed_stubs_412_xed_decoded_inst_valid : _ CI.fatptr -> bool
  = "libxed_stubs_412_xed_decoded_inst_valid" 

external libxed_stubs_413_xed_decoded_inst_valid_for_chip
  : _ CI.fatptr -> Unsigned.uint -> bool
  = "libxed_stubs_413_xed_decoded_inst_valid_for_chip" 

external libxed_stubs_414_xed_decoded_inst_valid_for_features
  : _ CI.fatptr -> _ CI.fatptr -> bool
  = "libxed_stubs_414_xed_decoded_inst_valid_for_features" 

external libxed_stubs_415_xed_decoded_inst_vector_length_bits
  : _ CI.fatptr -> int
  = "libxed_stubs_415_xed_decoded_inst_vector_length_bits" 

external libxed_stubs_416_xed_decoded_inst_zero : _ CI.fatptr -> unit
  = "libxed_stubs_416_xed_decoded_inst_zero" 

external libxed_stubs_417_xed_decoded_inst_zero_keep_mode
  : _ CI.fatptr -> unit = "libxed_stubs_417_xed_decoded_inst_zero_keep_mode" 

external libxed_stubs_418_xed_decoded_inst_zero_keep_mode_from_operands
  : _ CI.fatptr -> _ CI.fatptr -> unit
  = "libxed_stubs_418_xed_decoded_inst_zero_keep_mode_from_operands" 

external libxed_stubs_419_xed_decoded_inst_zero_set_mode
  : _ CI.fatptr -> _ CI.fatptr -> unit
  = "libxed_stubs_419_xed_decoded_inst_zero_set_mode" 

external libxed_stubs_420_xed_decoded_inst_zeroing : _ CI.fatptr -> bool
  = "libxed_stubs_420_xed_decoded_inst_zeroing" 

external libxed_stubs_421_xed_encode_nop
  : bytes CI.ocaml -> int -> Unsigned.uint
  = "libxed_stubs_421_xed_encode_nop" 

external libxed_stubs_422_xed_encode_request_print
  : _ CI.fatptr -> bytes CI.ocaml -> int -> unit
  = "libxed_stubs_422_xed_encode_request_print" 

external libxed_stubs_423_xed_encoder_request_get_iclass
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_423_xed_encoder_request_get_iclass" 

external libxed_stubs_424_xed_encoder_request_get_operand_order
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_424_xed_encoder_request_get_operand_order" 

external libxed_stubs_425_xed_encoder_request_operand_order_entries
  : _ CI.fatptr -> int
  = "libxed_stubs_425_xed_encoder_request_operand_order_entries" 

external libxed_stubs_426_xed_encoder_request_operands
  : _ CI.fatptr -> CI.voidp = "libxed_stubs_426_xed_encoder_request_operands" 

external libxed_stubs_427_xed_encoder_request_operands_const
  : _ CI.fatptr -> CI.voidp
  = "libxed_stubs_427_xed_encoder_request_operands_const" 

external libxed_stubs_428_xed_encoder_request_set_absbr : _ CI.fatptr -> unit
  = "libxed_stubs_428_xed_encoder_request_set_absbr" 

external libxed_stubs_429_xed_encoder_request_set_agen : _ CI.fatptr -> unit
  = "libxed_stubs_429_xed_encoder_request_set_agen" 

external libxed_stubs_430_xed_encoder_request_set_base0
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_430_xed_encoder_request_set_base0" 

external libxed_stubs_431_xed_encoder_request_set_base1
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_431_xed_encoder_request_set_base1" 

external libxed_stubs_432_xed_encoder_request_set_branch_displacement
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_432_xed_encoder_request_set_branch_displacement" 

external libxed_stubs_433_xed_encoder_request_set_effective_address_size
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_433_xed_encoder_request_set_effective_address_size" 

external libxed_stubs_434_xed_encoder_request_set_effective_operand_width
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_434_xed_encoder_request_set_effective_operand_width" 

external libxed_stubs_435_xed_encoder_request_set_iclass
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_435_xed_encoder_request_set_iclass" 

external libxed_stubs_436_xed_encoder_request_set_index
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_436_xed_encoder_request_set_index" 

external libxed_stubs_437_xed_encoder_request_set_mem0 : _ CI.fatptr -> unit
  = "libxed_stubs_437_xed_encoder_request_set_mem0" 

external libxed_stubs_438_xed_encoder_request_set_mem1 : _ CI.fatptr -> unit
  = "libxed_stubs_438_xed_encoder_request_set_mem1" 

external libxed_stubs_439_xed_encoder_request_set_memory_displacement
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_439_xed_encoder_request_set_memory_displacement" 

external libxed_stubs_440_xed_encoder_request_set_memory_operand_length
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_440_xed_encoder_request_set_memory_operand_length" 

external libxed_stubs_441_xed_encoder_request_set_operand_order
  : _ CI.fatptr -> int -> Unsigned.uint -> unit
  = "libxed_stubs_441_xed_encoder_request_set_operand_order" 

external libxed_stubs_442_xed_encoder_request_set_ptr : _ CI.fatptr -> unit
  = "libxed_stubs_442_xed_encoder_request_set_ptr" 

external libxed_stubs_443_xed_encoder_request_set_reg
  : _ CI.fatptr -> Unsigned.uint -> Unsigned.uint -> unit
  = "libxed_stubs_443_xed_encoder_request_set_reg" 

external libxed_stubs_444_xed_encoder_request_set_relbr : _ CI.fatptr -> unit
  = "libxed_stubs_444_xed_encoder_request_set_relbr" 

external libxed_stubs_445_xed_encoder_request_set_scale
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_445_xed_encoder_request_set_scale" 

external libxed_stubs_446_xed_encoder_request_set_seg0
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_446_xed_encoder_request_set_seg0" 

external libxed_stubs_447_xed_encoder_request_set_seg1
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_447_xed_encoder_request_set_seg1" 

external libxed_stubs_448_xed_encoder_request_set_simm
  : _ CI.fatptr -> int32 -> int -> unit
  = "libxed_stubs_448_xed_encoder_request_set_simm" 

external libxed_stubs_449_xed_encoder_request_set_uimm0
  : _ CI.fatptr -> Unsigned.uint64 -> int -> unit
  = "libxed_stubs_449_xed_encoder_request_set_uimm0" 

external libxed_stubs_450_xed_encoder_request_set_uimm0_bits
  : _ CI.fatptr -> Unsigned.uint64 -> int -> unit
  = "libxed_stubs_450_xed_encoder_request_set_uimm0_bits" 

external libxed_stubs_451_xed_encoder_request_set_uimm1
  : _ CI.fatptr -> char -> unit
  = "libxed_stubs_451_xed_encoder_request_set_uimm1" 

external libxed_stubs_452_xed_encoder_request_zero : _ CI.fatptr -> unit
  = "libxed_stubs_452_xed_encoder_request_zero" 

external libxed_stubs_453_xed_encoder_request_zero_operand_order
  : _ CI.fatptr -> unit
  = "libxed_stubs_453_xed_encoder_request_zero_operand_order" 

external libxed_stubs_454_xed_encoder_request_zero_set_mode
  : _ CI.fatptr -> _ CI.fatptr -> unit
  = "libxed_stubs_454_xed_encoder_request_zero_set_mode" 

external libxed_stubs_455_xed_error_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_455_xed_error_enum_t2str" 

external libxed_stubs_456_xed_exception_enum_t2str
  : Unsigned.uint -> CI.voidp = "libxed_stubs_456_xed_exception_enum_t2str" 

external libxed_stubs_457_xed_extension_enum_t2str
  : Unsigned.uint -> CI.voidp = "libxed_stubs_457_xed_extension_enum_t2str" 

external libxed_stubs_458_xed_flag_action_action_invalid
  : Unsigned.uint -> bool = "libxed_stubs_458_xed_flag_action_action_invalid" 

external libxed_stubs_459_xed_flag_action_enum_t2str
  : Unsigned.uint -> CI.voidp = "libxed_stubs_459_xed_flag_action_enum_t2str" 

external libxed_stubs_460_xed_flag_action_get_action
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_460_xed_flag_action_get_action" 

external libxed_stubs_461_xed_flag_action_get_flag_name
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_461_xed_flag_action_get_flag_name" 

external libxed_stubs_462_xed_flag_action_print
  : _ CI.fatptr -> bytes CI.ocaml -> int -> int
  = "libxed_stubs_462_xed_flag_action_print" 

external libxed_stubs_463_xed_flag_action_read_action : Unsigned.uint -> bool
  = "libxed_stubs_463_xed_flag_action_read_action" 

external libxed_stubs_464_xed_flag_action_read_flag : _ CI.fatptr -> bool
  = "libxed_stubs_464_xed_flag_action_read_flag" 

external libxed_stubs_465_xed_flag_action_write_action
  : Unsigned.uint -> bool = "libxed_stubs_465_xed_flag_action_write_action" 

external libxed_stubs_466_xed_flag_action_writes_flag : _ CI.fatptr -> bool
  = "libxed_stubs_466_xed_flag_action_writes_flag" 

external libxed_stubs_467_xed_flag_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_467_xed_flag_enum_t2str" 

external libxed_stubs_468_xed_flag_set_is_subset_of
  : _ CI.fatptr -> _ CI.fatptr -> bool
  = "libxed_stubs_468_xed_flag_set_is_subset_of" 

external libxed_stubs_469_xed_flag_set_mask : _ CI.fatptr -> int
  = "libxed_stubs_469_xed_flag_set_mask" 

external libxed_stubs_470_xed_flag_set_print
  : _ CI.fatptr -> bytes CI.ocaml -> int -> int
  = "libxed_stubs_470_xed_flag_set_print" 

external libxed_stubs_471_xed_get_chip_features
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_471_xed_get_chip_features" 

external libxed_stubs_472_xed_get_copyright : unit -> CI.voidp
  = "libxed_stubs_472_xed_get_copyright" 

external libxed_stubs_473_xed_get_cpuid_group_enum_for_isa_set
  : Unsigned.uint -> int -> Unsigned.uint
  = "libxed_stubs_473_xed_get_cpuid_group_enum_for_isa_set" 

external libxed_stubs_474_xed_get_cpuid_rec_enum_for_group
  : Unsigned.uint -> int -> Unsigned.uint
  = "libxed_stubs_474_xed_get_cpuid_rec_enum_for_group" 

external libxed_stubs_475_xed_get_largest_enclosing_register
  : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_475_xed_get_largest_enclosing_register" 

external libxed_stubs_476_xed_get_largest_enclosing_register32
  : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_476_xed_get_largest_enclosing_register32" 

external libxed_stubs_477_xed_get_register_width_bits
  : Unsigned.uint -> Unsigned.uint32
  = "libxed_stubs_477_xed_get_register_width_bits" 

external libxed_stubs_478_xed_get_register_width_bits64
  : Unsigned.uint -> Unsigned.uint32
  = "libxed_stubs_478_xed_get_register_width_bits64" 

external libxed_stubs_479_xed_get_version : unit -> CI.voidp
  = "libxed_stubs_479_xed_get_version" 

external libxed_stubs_480_xed_gpr_reg_class : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_480_xed_gpr_reg_class" 

external libxed_stubs_481_xed_iclass_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_481_xed_iclass_enum_t2str" 

external libxed_stubs_482_xed_iform_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_482_xed_iform_enum_t2str" 

external libxed_stubs_483_xed_iform_first_per_iclass
  : Unsigned.uint -> Unsigned.uint32
  = "libxed_stubs_483_xed_iform_first_per_iclass" 

external libxed_stubs_484_xed_iform_max_per_iclass
  : Unsigned.uint -> Unsigned.uint32
  = "libxed_stubs_484_xed_iform_max_per_iclass" 

external libxed_stubs_485_xed_iform_to_category
  : Unsigned.uint -> Unsigned.uint = "libxed_stubs_485_xed_iform_to_category" 

external libxed_stubs_486_xed_iform_to_extension
  : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_486_xed_iform_to_extension" 

external libxed_stubs_487_xed_iform_to_iclass
  : Unsigned.uint -> Unsigned.uint = "libxed_stubs_487_xed_iform_to_iclass" 

external libxed_stubs_488_xed_iform_to_iclass_string_att
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_488_xed_iform_to_iclass_string_att" 

external libxed_stubs_489_xed_iform_to_iclass_string_intel
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_489_xed_iform_to_iclass_string_intel" 

external libxed_stubs_490_xed_iform_to_isa_set
  : Unsigned.uint -> Unsigned.uint = "libxed_stubs_490_xed_iform_to_isa_set" 

external libxed_stubs_491_xed_ild_decode
  : _ CI.fatptr -> string CI.ocaml -> int -> Unsigned.uint
  = "libxed_stubs_491_xed_ild_decode" 

external libxed_stubs_492_xed_inst_category : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_492_xed_inst_category" 

external libxed_stubs_493_xed_inst_cpl : _ CI.fatptr -> int
  = "libxed_stubs_493_xed_inst_cpl" 

external libxed_stubs_494_xed_inst_exception : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_494_xed_inst_exception" 

external libxed_stubs_495_xed_inst_extension : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_495_xed_inst_extension" 

external libxed_stubs_496_xed_inst_flag_info_index
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_496_xed_inst_flag_info_index" 

external libxed_stubs_497_xed_inst_get_attribute
  : _ CI.fatptr -> Unsigned.uint -> Unsigned.uint32
  = "libxed_stubs_497_xed_inst_get_attribute" 

external libxed_stubs_498_xed_inst_iclass : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_498_xed_inst_iclass" 

external libxed_stubs_499_xed_inst_iform_enum : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_499_xed_inst_iform_enum" 

external libxed_stubs_500_xed_inst_isa_set : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_500_xed_inst_isa_set" 

external libxed_stubs_501_xed_inst_noperands : _ CI.fatptr -> int
  = "libxed_stubs_501_xed_inst_noperands" 

external libxed_stubs_502_xed_inst_operand : _ CI.fatptr -> int -> CI.voidp
  = "libxed_stubs_502_xed_inst_operand" 

external libxed_stubs_503_xed_isa_set_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_503_xed_isa_set_enum_t2str" 

external libxed_stubs_504_xed_isa_set_is_valid_for_chip
  : Unsigned.uint -> Unsigned.uint -> bool
  = "libxed_stubs_504_xed_isa_set_is_valid_for_chip" 

external libxed_stubs_505_xed_machine_mode_enum_t2str
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_505_xed_machine_mode_enum_t2str" 

external libxed_stubs_506_xed_modify_chip_features
  : _ CI.fatptr -> Unsigned.uint -> bool -> unit
  = "libxed_stubs_506_xed_modify_chip_features" 

external libxed_stubs_507_xed_nonterminal_enum_t2str
  : Unsigned.uint -> CI.voidp = "libxed_stubs_507_xed_nonterminal_enum_t2str" 

external libxed_stubs_508_xed_norep_map : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_508_xed_norep_map" 

external libxed_stubs_509_xed_operand_action_conditional_read
  : Unsigned.uint -> int
  = "libxed_stubs_509_xed_operand_action_conditional_read" 

external libxed_stubs_510_xed_operand_action_conditional_write
  : Unsigned.uint -> int
  = "libxed_stubs_510_xed_operand_action_conditional_write" 

external libxed_stubs_511_xed_operand_action_enum_t2str
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_511_xed_operand_action_enum_t2str" 

external libxed_stubs_512_xed_operand_action_read : Unsigned.uint -> int
  = "libxed_stubs_512_xed_operand_action_read" 

external libxed_stubs_513_xed_operand_action_read_and_written
  : Unsigned.uint -> int
  = "libxed_stubs_513_xed_operand_action_read_and_written" 

external libxed_stubs_514_xed_operand_action_read_only : Unsigned.uint -> int
  = "libxed_stubs_514_xed_operand_action_read_only" 

external libxed_stubs_515_xed_operand_action_written : Unsigned.uint -> int
  = "libxed_stubs_515_xed_operand_action_written" 

external libxed_stubs_516_xed_operand_action_written_only
  : Unsigned.uint -> int = "libxed_stubs_516_xed_operand_action_written_only" 

external libxed_stubs_517_xed_operand_conditional_read : _ CI.fatptr -> int
  = "libxed_stubs_517_xed_operand_conditional_read" 

external libxed_stubs_518_xed_operand_conditional_write : _ CI.fatptr -> int
  = "libxed_stubs_518_xed_operand_conditional_write" 

external libxed_stubs_519_xed_operand_convert_enum_t2str
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_519_xed_operand_convert_enum_t2str" 

external libxed_stubs_520_xed_operand_element_type_enum_t2str
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_520_xed_operand_element_type_enum_t2str" 

external libxed_stubs_521_xed_operand_element_xtype_enum_t2str
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_521_xed_operand_element_xtype_enum_t2str" 

external libxed_stubs_522_xed_operand_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_522_xed_operand_enum_t2str" 

external libxed_stubs_523_xed_operand_imm : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_523_xed_operand_imm" 

external libxed_stubs_524_xed_operand_is_memory_addressing_register
  : Unsigned.uint -> int
  = "libxed_stubs_524_xed_operand_is_memory_addressing_register" 

external libxed_stubs_525_xed_operand_is_register : Unsigned.uint -> int
  = "libxed_stubs_525_xed_operand_is_register" 

external libxed_stubs_526_xed_operand_name : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_526_xed_operand_name" 

external libxed_stubs_527_xed_operand_nonterminal_name
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_527_xed_operand_nonterminal_name" 

external libxed_stubs_528_xed_operand_operand_visibility
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_528_xed_operand_operand_visibility" 

external libxed_stubs_529_xed_operand_print
  : _ CI.fatptr -> int -> bytes CI.ocaml -> int -> unit
  = "libxed_stubs_529_xed_operand_print" 

external libxed_stubs_530_xed_operand_read : _ CI.fatptr -> int
  = "libxed_stubs_530_xed_operand_read" 

external libxed_stubs_531_xed_operand_read_and_written : _ CI.fatptr -> int
  = "libxed_stubs_531_xed_operand_read_and_written" 

external libxed_stubs_532_xed_operand_read_only : _ CI.fatptr -> int
  = "libxed_stubs_532_xed_operand_read_only" 

external libxed_stubs_533_xed_operand_reg : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_533_xed_operand_reg" 

external libxed_stubs_534_xed_operand_rw : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_534_xed_operand_rw" 

external libxed_stubs_535_xed_operand_template_is_register
  : _ CI.fatptr -> int = "libxed_stubs_535_xed_operand_template_is_register" 

external libxed_stubs_536_xed_operand_type : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_536_xed_operand_type" 

external libxed_stubs_537_xed_operand_type_enum_t2str
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_537_xed_operand_type_enum_t2str" 

external libxed_stubs_538_xed_operand_values_accesses_memory
  : _ CI.fatptr -> bool
  = "libxed_stubs_538_xed_operand_values_accesses_memory" 

external libxed_stubs_539_xed_operand_values_branch_not_taken_hint
  : _ CI.fatptr -> bool
  = "libxed_stubs_539_xed_operand_values_branch_not_taken_hint" 

external libxed_stubs_540_xed_operand_values_branch_taken_hint
  : _ CI.fatptr -> bool
  = "libxed_stubs_540_xed_operand_values_branch_taken_hint" 

external libxed_stubs_541_xed_operand_values_cet_no_track
  : _ CI.fatptr -> bool = "libxed_stubs_541_xed_operand_values_cet_no_track" 

external libxed_stubs_542_xed_operand_values_clear_rep : _ CI.fatptr -> unit
  = "libxed_stubs_542_xed_operand_values_clear_rep" 

external libxed_stubs_543_xed_operand_values_dump
  : _ CI.fatptr -> bytes CI.ocaml -> int -> unit
  = "libxed_stubs_543_xed_operand_values_dump" 

external libxed_stubs_544_xed_operand_values_get_atomic : _ CI.fatptr -> bool
  = "libxed_stubs_544_xed_operand_values_get_atomic" 

external libxed_stubs_545_xed_operand_values_get_base_reg
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_545_xed_operand_values_get_base_reg" 

external libxed_stubs_546_xed_operand_values_get_branch_displacement_byte
  : _ CI.fatptr -> int -> char
  = "libxed_stubs_546_xed_operand_values_get_branch_displacement_byte" 

external libxed_stubs_547_xed_operand_values_get_branch_displacement_int64
  : _ CI.fatptr -> int64
  = "libxed_stubs_547_xed_operand_values_get_branch_displacement_int64" 

external libxed_stubs_548_xed_operand_values_get_branch_displacement_length
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_548_xed_operand_values_get_branch_displacement_length" 

external
libxed_stubs_549_xed_operand_values_get_branch_displacement_length_bits
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_549_xed_operand_values_get_branch_displacement_length_bits" 

external libxed_stubs_550_xed_operand_values_get_displacement_for_memop
  : _ CI.fatptr -> bool
  = "libxed_stubs_550_xed_operand_values_get_displacement_for_memop" 

external libxed_stubs_551_xed_operand_values_get_effective_address_width
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_551_xed_operand_values_get_effective_address_width" 

external libxed_stubs_552_xed_operand_values_get_effective_operand_width
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_552_xed_operand_values_get_effective_operand_width" 

external libxed_stubs_553_xed_operand_values_get_iclass
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_553_xed_operand_values_get_iclass" 

external libxed_stubs_554_xed_operand_values_get_immediate_byte
  : _ CI.fatptr -> int -> char
  = "libxed_stubs_554_xed_operand_values_get_immediate_byte" 

external libxed_stubs_555_xed_operand_values_get_immediate_int64
  : _ CI.fatptr -> int64
  = "libxed_stubs_555_xed_operand_values_get_immediate_int64" 

external libxed_stubs_556_xed_operand_values_get_immediate_is_signed
  : _ CI.fatptr -> int
  = "libxed_stubs_556_xed_operand_values_get_immediate_is_signed" 

external libxed_stubs_557_xed_operand_values_get_immediate_uint64
  : _ CI.fatptr -> Unsigned.uint64
  = "libxed_stubs_557_xed_operand_values_get_immediate_uint64" 

external libxed_stubs_558_xed_operand_values_get_index_reg
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_558_xed_operand_values_get_index_reg" 

external libxed_stubs_559_xed_operand_values_get_long_mode
  : _ CI.fatptr -> bool = "libxed_stubs_559_xed_operand_values_get_long_mode" 

external libxed_stubs_560_xed_operand_values_get_memory_displacement_byte
  : _ CI.fatptr -> int -> char
  = "libxed_stubs_560_xed_operand_values_get_memory_displacement_byte" 

external libxed_stubs_561_xed_operand_values_get_memory_displacement_int64
  : _ CI.fatptr -> int64
  = "libxed_stubs_561_xed_operand_values_get_memory_displacement_int64" 

external
libxed_stubs_562_xed_operand_values_get_memory_displacement_int64_raw
  : _ CI.fatptr -> int64
  = "libxed_stubs_562_xed_operand_values_get_memory_displacement_int64_raw" 

external libxed_stubs_563_xed_operand_values_get_memory_displacement_length
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_563_xed_operand_values_get_memory_displacement_length" 

external
libxed_stubs_564_xed_operand_values_get_memory_displacement_length_bits
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_564_xed_operand_values_get_memory_displacement_length_bits" 

external
libxed_stubs_565_xed_operand_values_get_memory_displacement_length_bits_raw
  : _ CI.fatptr -> Unsigned.uint32
  =
  "libxed_stubs_565_xed_operand_values_get_memory_displacement_length_bits_raw"
  

external libxed_stubs_566_xed_operand_values_get_memory_operand_length
  : _ CI.fatptr -> int -> int
  = "libxed_stubs_566_xed_operand_values_get_memory_operand_length" 

external libxed_stubs_567_xed_operand_values_get_pp_vex_prefix
  : _ CI.fatptr -> int
  = "libxed_stubs_567_xed_operand_values_get_pp_vex_prefix" 

external libxed_stubs_568_xed_operand_values_get_real_mode
  : _ CI.fatptr -> bool = "libxed_stubs_568_xed_operand_values_get_real_mode" 

external libxed_stubs_569_xed_operand_values_get_scale : _ CI.fatptr -> int
  = "libxed_stubs_569_xed_operand_values_get_scale" 

external libxed_stubs_570_xed_operand_values_get_second_immediate
  : _ CI.fatptr -> char
  = "libxed_stubs_570_xed_operand_values_get_second_immediate" 

external libxed_stubs_571_xed_operand_values_get_seg_reg
  : _ CI.fatptr -> int -> Unsigned.uint
  = "libxed_stubs_571_xed_operand_values_get_seg_reg" 

external libxed_stubs_572_xed_operand_values_get_stack_address_width
  : _ CI.fatptr -> Unsigned.uint32
  = "libxed_stubs_572_xed_operand_values_get_stack_address_width" 

external libxed_stubs_573_xed_operand_values_has_66_prefix
  : _ CI.fatptr -> bool = "libxed_stubs_573_xed_operand_values_has_66_prefix" 

external libxed_stubs_574_xed_operand_values_has_address_size_prefix
  : _ CI.fatptr -> bool
  = "libxed_stubs_574_xed_operand_values_has_address_size_prefix" 

external libxed_stubs_575_xed_operand_values_has_branch_displacement
  : _ CI.fatptr -> bool
  = "libxed_stubs_575_xed_operand_values_has_branch_displacement" 

external libxed_stubs_576_xed_operand_values_has_displacement
  : _ CI.fatptr -> bool
  = "libxed_stubs_576_xed_operand_values_has_displacement" 

external libxed_stubs_577_xed_operand_values_has_immediate
  : _ CI.fatptr -> bool = "libxed_stubs_577_xed_operand_values_has_immediate" 

external libxed_stubs_578_xed_operand_values_has_lock_prefix
  : _ CI.fatptr -> bool
  = "libxed_stubs_578_xed_operand_values_has_lock_prefix" 

external libxed_stubs_579_xed_operand_values_has_memory_displacement
  : _ CI.fatptr -> bool
  = "libxed_stubs_579_xed_operand_values_has_memory_displacement" 

external libxed_stubs_580_xed_operand_values_has_modrm_byte
  : _ CI.fatptr -> bool
  = "libxed_stubs_580_xed_operand_values_has_modrm_byte" 

external libxed_stubs_581_xed_operand_values_has_operand_size_prefix
  : _ CI.fatptr -> bool
  = "libxed_stubs_581_xed_operand_values_has_operand_size_prefix" 

external libxed_stubs_582_xed_operand_values_has_real_rep
  : _ CI.fatptr -> bool = "libxed_stubs_582_xed_operand_values_has_real_rep" 

external libxed_stubs_583_xed_operand_values_has_rep_prefix
  : _ CI.fatptr -> bool
  = "libxed_stubs_583_xed_operand_values_has_rep_prefix" 

external libxed_stubs_584_xed_operand_values_has_repne_prefix
  : _ CI.fatptr -> bool
  = "libxed_stubs_584_xed_operand_values_has_repne_prefix" 

external libxed_stubs_585_xed_operand_values_has_rexw_prefix
  : _ CI.fatptr -> bool
  = "libxed_stubs_585_xed_operand_values_has_rexw_prefix" 

external libxed_stubs_586_xed_operand_values_has_segment_prefix
  : _ CI.fatptr -> bool
  = "libxed_stubs_586_xed_operand_values_has_segment_prefix" 

external libxed_stubs_587_xed_operand_values_has_sib_byte
  : _ CI.fatptr -> bool = "libxed_stubs_587_xed_operand_values_has_sib_byte" 

external libxed_stubs_588_xed_operand_values_ignored_branch_not_taken_hint
  : _ CI.fatptr -> bool
  = "libxed_stubs_588_xed_operand_values_ignored_branch_not_taken_hint" 

external libxed_stubs_589_xed_operand_values_ignored_branch_taken_hint
  : _ CI.fatptr -> bool
  = "libxed_stubs_589_xed_operand_values_ignored_branch_taken_hint" 

external libxed_stubs_590_xed_operand_values_init : _ CI.fatptr -> unit
  = "libxed_stubs_590_xed_operand_values_init" 

external libxed_stubs_591_xed_operand_values_init_keep_mode
  : _ CI.fatptr -> _ CI.fatptr -> unit
  = "libxed_stubs_591_xed_operand_values_init_keep_mode" 

external libxed_stubs_592_xed_operand_values_init_set_mode
  : _ CI.fatptr -> _ CI.fatptr -> unit
  = "libxed_stubs_592_xed_operand_values_init_set_mode" 

external libxed_stubs_593_xed_operand_values_is_nop : _ CI.fatptr -> bool
  = "libxed_stubs_593_xed_operand_values_is_nop" 

external libxed_stubs_594_xed_operand_values_lockable : _ CI.fatptr -> bool
  = "libxed_stubs_594_xed_operand_values_lockable" 

external libxed_stubs_595_xed_operand_values_mandatory_66_prefix
  : _ CI.fatptr -> bool
  = "libxed_stubs_595_xed_operand_values_mandatory_66_prefix" 

external libxed_stubs_596_xed_operand_values_memop_without_modrm
  : _ CI.fatptr -> bool
  = "libxed_stubs_596_xed_operand_values_memop_without_modrm" 

external libxed_stubs_597_xed_operand_values_number_of_memory_operands
  : _ CI.fatptr -> int
  = "libxed_stubs_597_xed_operand_values_number_of_memory_operands" 

external libxed_stubs_598_xed_operand_values_print_short
  : _ CI.fatptr -> bytes CI.ocaml -> int -> unit
  = "libxed_stubs_598_xed_operand_values_print_short" 

external libxed_stubs_599_xed_operand_values_segment_prefix
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_599_xed_operand_values_segment_prefix" 

external libxed_stubs_600_xed_operand_values_set_absbr : _ CI.fatptr -> unit
  = "libxed_stubs_600_xed_operand_values_set_absbr" 

external libxed_stubs_601_xed_operand_values_set_base_reg
  : _ CI.fatptr -> int -> Unsigned.uint -> unit
  = "libxed_stubs_601_xed_operand_values_set_base_reg" 

external libxed_stubs_602_xed_operand_values_set_branch_displacement
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_602_xed_operand_values_set_branch_displacement" 

external libxed_stubs_603_xed_operand_values_set_branch_displacement_bits
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_603_xed_operand_values_set_branch_displacement_bits" 

external libxed_stubs_604_xed_operand_values_set_effective_address_width
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_604_xed_operand_values_set_effective_address_width" 

external libxed_stubs_605_xed_operand_values_set_effective_operand_width
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_605_xed_operand_values_set_effective_operand_width" 

external libxed_stubs_606_xed_operand_values_set_iclass
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_606_xed_operand_values_set_iclass" 

external libxed_stubs_607_xed_operand_values_set_immediate_signed
  : _ CI.fatptr -> int32 -> int -> unit
  = "libxed_stubs_607_xed_operand_values_set_immediate_signed" 

external libxed_stubs_608_xed_operand_values_set_immediate_signed_bits
  : _ CI.fatptr -> int32 -> int -> unit
  = "libxed_stubs_608_xed_operand_values_set_immediate_signed_bits" 

external libxed_stubs_609_xed_operand_values_set_immediate_unsigned
  : _ CI.fatptr -> Unsigned.uint64 -> int -> unit
  = "libxed_stubs_609_xed_operand_values_set_immediate_unsigned" 

external libxed_stubs_610_xed_operand_values_set_immediate_unsigned_bits
  : _ CI.fatptr -> Unsigned.uint64 -> int -> unit
  = "libxed_stubs_610_xed_operand_values_set_immediate_unsigned_bits" 

external libxed_stubs_611_xed_operand_values_set_index_reg
  : _ CI.fatptr -> int -> Unsigned.uint -> unit
  = "libxed_stubs_611_xed_operand_values_set_index_reg" 

external libxed_stubs_612_xed_operand_values_set_lock : _ CI.fatptr -> unit
  = "libxed_stubs_612_xed_operand_values_set_lock" 

external libxed_stubs_613_xed_operand_values_set_memory_displacement
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_613_xed_operand_values_set_memory_displacement" 

external libxed_stubs_614_xed_operand_values_set_memory_displacement_bits
  : _ CI.fatptr -> int64 -> int -> unit
  = "libxed_stubs_614_xed_operand_values_set_memory_displacement_bits" 

external libxed_stubs_615_xed_operand_values_set_memory_operand_length
  : _ CI.fatptr -> int -> unit
  = "libxed_stubs_615_xed_operand_values_set_memory_operand_length" 

external libxed_stubs_616_xed_operand_values_set_mode
  : _ CI.fatptr -> _ CI.fatptr -> unit
  = "libxed_stubs_616_xed_operand_values_set_mode" 

external libxed_stubs_617_xed_operand_values_set_operand_reg
  : _ CI.fatptr -> Unsigned.uint -> Unsigned.uint -> unit
  = "libxed_stubs_617_xed_operand_values_set_operand_reg" 

external libxed_stubs_618_xed_operand_values_set_relbr : _ CI.fatptr -> unit
  = "libxed_stubs_618_xed_operand_values_set_relbr" 

external libxed_stubs_619_xed_operand_values_set_scale
  : _ CI.fatptr -> int -> int -> unit
  = "libxed_stubs_619_xed_operand_values_set_scale" 

external libxed_stubs_620_xed_operand_values_set_seg_reg
  : _ CI.fatptr -> int -> Unsigned.uint -> unit
  = "libxed_stubs_620_xed_operand_values_set_seg_reg" 

external libxed_stubs_621_xed_operand_values_using_default_segment
  : _ CI.fatptr -> int -> bool
  = "libxed_stubs_621_xed_operand_values_using_default_segment" 

external libxed_stubs_622_xed_operand_values_zero_branch_displacement
  : _ CI.fatptr -> unit
  = "libxed_stubs_622_xed_operand_values_zero_branch_displacement" 

external libxed_stubs_623_xed_operand_values_zero_immediate
  : _ CI.fatptr -> unit
  = "libxed_stubs_623_xed_operand_values_zero_immediate" 

external libxed_stubs_624_xed_operand_values_zero_memory_displacement
  : _ CI.fatptr -> unit
  = "libxed_stubs_624_xed_operand_values_zero_memory_displacement" 

external libxed_stubs_625_xed_operand_values_zero_segment_override
  : _ CI.fatptr -> unit
  = "libxed_stubs_625_xed_operand_values_zero_segment_override" 

external libxed_stubs_626_xed_operand_visibility_enum_t2str
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_626_xed_operand_visibility_enum_t2str" 

external libxed_stubs_627_xed_operand_width : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_627_xed_operand_width" 

external libxed_stubs_628_xed_operand_width_bits
  : _ CI.fatptr -> Unsigned.uint32 -> Unsigned.uint32
  = "libxed_stubs_628_xed_operand_width_bits" 

external libxed_stubs_629_xed_operand_width_enum_t2str
  : Unsigned.uint -> CI.voidp
  = "libxed_stubs_629_xed_operand_width_enum_t2str" 

external libxed_stubs_630_xed_operand_written : _ CI.fatptr -> int
  = "libxed_stubs_630_xed_operand_written" 

external libxed_stubs_631_xed_operand_written_only : _ CI.fatptr -> int
  = "libxed_stubs_631_xed_operand_written_only" 

external libxed_stubs_632_xed_operand_xtype : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_632_xed_operand_xtype" 

external libxed_stubs_633_xed_reg_class : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_633_xed_reg_class" 

external libxed_stubs_634_xed_reg_class_enum_t2str
  : Unsigned.uint -> CI.voidp = "libxed_stubs_634_xed_reg_class_enum_t2str" 

external libxed_stubs_635_xed_reg_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_635_xed_reg_enum_t2str" 

external libxed_stubs_636_xed_rep : _ CI.fatptr -> unit
  = "libxed_stubs_636_xed_rep" 

external libxed_stubs_637_xed_rep_map : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_637_xed_rep_map" 

external libxed_stubs_638_xed_rep_remove : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_638_xed_rep_remove" 

external libxed_stubs_639_xed_repe_map : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_639_xed_repe_map" 

external libxed_stubs_640_xed_repne : _ CI.fatptr -> unit
  = "libxed_stubs_640_xed_repne" 

external libxed_stubs_641_xed_repne_map : Unsigned.uint -> Unsigned.uint
  = "libxed_stubs_641_xed_repne_map" 

external libxed_stubs_642_xed_set_decoder_modes
  : _ CI.fatptr -> Unsigned.uint -> _ CI.fatptr -> unit
  = "libxed_stubs_642_xed_set_decoder_modes" 

external libxed_stubs_643_xed_set_verbosity : int -> unit
  = "libxed_stubs_643_xed_set_verbosity" 

external libxed_stubs_644_xed_simple_flag_get_flag_action
  : _ CI.fatptr -> int -> CI.voidp
  = "libxed_stubs_644_xed_simple_flag_get_flag_action" 

external libxed_stubs_645_xed_simple_flag_get_may_write : _ CI.fatptr -> bool
  = "libxed_stubs_645_xed_simple_flag_get_may_write" 

external libxed_stubs_646_xed_simple_flag_get_must_write
  : _ CI.fatptr -> bool = "libxed_stubs_646_xed_simple_flag_get_must_write" 

external libxed_stubs_647_xed_simple_flag_get_nflags : _ CI.fatptr -> int
  = "libxed_stubs_647_xed_simple_flag_get_nflags" 

external libxed_stubs_648_xed_simple_flag_get_read_flag_set
  : _ CI.fatptr -> CI.voidp
  = "libxed_stubs_648_xed_simple_flag_get_read_flag_set" 

external libxed_stubs_649_xed_simple_flag_get_undefined_flag_set
  : _ CI.fatptr -> CI.voidp
  = "libxed_stubs_649_xed_simple_flag_get_undefined_flag_set" 

external libxed_stubs_650_xed_simple_flag_get_written_flag_set
  : _ CI.fatptr -> CI.voidp
  = "libxed_stubs_650_xed_simple_flag_get_written_flag_set" 

external libxed_stubs_651_xed_simple_flag_print
  : _ CI.fatptr -> bytes CI.ocaml -> int -> int
  = "libxed_stubs_651_xed_simple_flag_print" 

external libxed_stubs_652_xed_simple_flag_reads_flags : _ CI.fatptr -> bool
  = "libxed_stubs_652_xed_simple_flag_reads_flags" 

external libxed_stubs_653_xed_simple_flag_writes_flags : _ CI.fatptr -> bool
  = "libxed_stubs_653_xed_simple_flag_writes_flags" 

external libxed_stubs_654_xed_state_get_address_width
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_654_xed_state_get_address_width" 

external libxed_stubs_655_xed_state_get_machine_mode
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_655_xed_state_get_machine_mode" 

external libxed_stubs_656_xed_state_get_stack_address_width
  : _ CI.fatptr -> Unsigned.uint
  = "libxed_stubs_656_xed_state_get_stack_address_width" 

external libxed_stubs_657_xed_state_init
  : _ CI.fatptr -> Unsigned.uint -> Unsigned.uint -> Unsigned.uint -> unit
  = "libxed_stubs_657_xed_state_init" 

external libxed_stubs_658_xed_state_init2
  : _ CI.fatptr -> Unsigned.uint -> Unsigned.uint -> unit
  = "libxed_stubs_658_xed_state_init2" 

external libxed_stubs_659_xed_state_long64_mode : _ CI.fatptr -> bool
  = "libxed_stubs_659_xed_state_long64_mode" 

external libxed_stubs_660_xed_state_mode_width_16 : _ CI.fatptr -> bool
  = "libxed_stubs_660_xed_state_mode_width_16" 

external libxed_stubs_661_xed_state_mode_width_32 : _ CI.fatptr -> bool
  = "libxed_stubs_661_xed_state_mode_width_32" 

external libxed_stubs_662_xed_state_print
  : _ CI.fatptr -> bytes CI.ocaml -> int -> int
  = "libxed_stubs_662_xed_state_print" 

external libxed_stubs_663_xed_state_real_mode : _ CI.fatptr -> bool
  = "libxed_stubs_663_xed_state_real_mode" 

external libxed_stubs_664_xed_state_set_machine_mode
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_664_xed_state_set_machine_mode" 

external libxed_stubs_665_xed_state_set_stack_address_width
  : _ CI.fatptr -> Unsigned.uint -> unit
  = "libxed_stubs_665_xed_state_set_stack_address_width" 

external libxed_stubs_666_xed_state_zero : _ CI.fatptr -> unit
  = "libxed_stubs_666_xed_state_zero" 

external libxed_stubs_667_xed_syntax_enum_t2str : Unsigned.uint -> CI.voidp
  = "libxed_stubs_667_xed_syntax_enum_t2str" 

type 'a result = 'a
type 'a return = 'a
type 'a fn =
 | Returns  : 'a CI.typ   -> 'a return fn
 | Function : 'a CI.typ * 'b fn  -> ('a -> 'b) fn
let map_result f x = f x
let returning t = Returns t
let (@->) f p = Function (f, p)
let foreign : type a b. string -> (a -> b) fn -> (a -> b) =
  fun name t -> match t, name with
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x4; _};
        write = x2; _},
     Returns (CI.View {CI.ty = CI.Pointer x6; read = x7; _})),
  "xed_syntax_enum_t2str" ->
  (fun x1 ->
    let x5 = x4 (x2 x1) in
    let x3 = x5 in
    x7 (CI.make_ptr x6 (libxed_stubs_667_xed_syntax_enum_t2str x3)))
| Function (CI.Pointer _, Returns CI.Void), "xed_state_zero" ->
  (fun x8 -> let CI.CPointer x9 = x8 in libxed_stubs_666_xed_state_zero x9)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x15; _};
           write = x13; _},
        Returns CI.Void)),
  "xed_state_set_stack_address_width" ->
  (fun x10 x12 ->
    let CI.CPointer x11 = x10 in
    let x16 = x15 (x13 x12) in
    let x14 = x16 in
    libxed_stubs_665_xed_state_set_stack_address_width x11 x14)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x22; _};
           write = x20; _},
        Returns CI.Void)),
  "xed_state_set_machine_mode" ->
  (fun x17 x19 ->
    let CI.CPointer x18 = x17 in
    let x23 = x22 (x20 x19) in
    let x21 = x23 in libxed_stubs_664_xed_state_set_machine_mode x18 x21)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_state_real_mode" ->
  (fun x24 ->
    let CI.CPointer x25 = x24 in libxed_stubs_663_xed_state_real_mode x25)
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.Bytes,
        Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int)))),
  "xed_state_print" ->
  (fun x26 x28 x29 ->
    let CI.CPointer x27 = x26 in libxed_stubs_662_xed_state_print x27 x28 x29)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_state_mode_width_32" ->
  (fun x30 ->
    let CI.CPointer x31 = x30 in libxed_stubs_661_xed_state_mode_width_32 x31)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_state_mode_width_16" ->
  (fun x32 ->
    let CI.CPointer x33 = x32 in libxed_stubs_660_xed_state_mode_width_16 x33)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_state_long64_mode" ->
  (fun x34 ->
    let CI.CPointer x35 = x34 in libxed_stubs_659_xed_state_long64_mode x35)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x41; _};
           write = x39; _},
        Function
          (CI.View
             {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x46; _};
              write = x44; _},
           Returns CI.Void))),
  "xed_state_init2" ->
  (fun x36 x38 x43 ->
    let CI.CPointer x37 = x36 in
    let x42 = x41 (x39 x38) in
    let x40 = x42 in
    let x47 = x46 (x44 x43) in
    let x45 = x47 in libxed_stubs_658_xed_state_init2 x37 x40 x45)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x53; _};
           write = x51; _},
        Function
          (CI.View
             {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x58; _};
              write = x56; _},
           Function
             (CI.View
                {CI.ty =
                 CI.View {CI.ty = CI.Primitive CI.Uint; write = x63; _};
                 write = x61; _},
              Returns CI.Void)))),
  "xed_state_init" ->
  (fun x48 x50 x55 x60 ->
    let CI.CPointer x49 = x48 in
    let x54 = x53 (x51 x50) in
    let x52 = x54 in
    let x59 = x58 (x56 x55) in
    let x57 = x59 in
    let x64 = x63 (x61 x60) in
    let x62 = x64 in libxed_stubs_657_xed_state_init x49 x52 x57 x62)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x67; _};
           read = x68; _})),
  "xed_state_get_stack_address_width" ->
  (fun x65 ->
    let CI.CPointer x66 = x65 in
    x68 (x67 (libxed_stubs_656_xed_state_get_stack_address_width x66)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x71; _};
           read = x72; _})),
  "xed_state_get_machine_mode" ->
  (fun x69 ->
    let CI.CPointer x70 = x69 in
    x72 (x71 (libxed_stubs_655_xed_state_get_machine_mode x70)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x75; _};
           read = x76; _})),
  "xed_state_get_address_width" ->
  (fun x73 ->
    let CI.CPointer x74 = x73 in
    x76 (x75 (libxed_stubs_654_xed_state_get_address_width x74)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_simple_flag_writes_flags" ->
  (fun x77 ->
    let CI.CPointer x78 = x77 in
    libxed_stubs_653_xed_simple_flag_writes_flags x78)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_simple_flag_reads_flags" ->
  (fun x79 ->
    let CI.CPointer x80 = x79 in
    libxed_stubs_652_xed_simple_flag_reads_flags x80)
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.Bytes,
        Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int)))),
  "xed_simple_flag_print" ->
  (fun x81 x83 x84 ->
    let CI.CPointer x82 = x81 in
    libxed_stubs_651_xed_simple_flag_print x82 x83 x84)
| Function (CI.Pointer _, Returns (CI.Pointer x87)),
  "xed_simple_flag_get_written_flag_set" ->
  (fun x85 ->
    let CI.CPointer x86 = x85 in
    CI.make_ptr x87
      (libxed_stubs_650_xed_simple_flag_get_written_flag_set x86))
| Function (CI.Pointer _, Returns (CI.Pointer x90)),
  "xed_simple_flag_get_undefined_flag_set" ->
  (fun x88 ->
    let CI.CPointer x89 = x88 in
    CI.make_ptr x90
      (libxed_stubs_649_xed_simple_flag_get_undefined_flag_set x89))
| Function (CI.Pointer _, Returns (CI.Pointer x93)),
  "xed_simple_flag_get_read_flag_set" ->
  (fun x91 ->
    let CI.CPointer x92 = x91 in
    CI.make_ptr x93 (libxed_stubs_648_xed_simple_flag_get_read_flag_set x92))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_simple_flag_get_nflags" ->
  (fun x94 ->
    let CI.CPointer x95 = x94 in
    libxed_stubs_647_xed_simple_flag_get_nflags x95)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_simple_flag_get_must_write" ->
  (fun x96 ->
    let CI.CPointer x97 = x96 in
    libxed_stubs_646_xed_simple_flag_get_must_write x97)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_simple_flag_get_may_write" ->
  (fun x98 ->
    let CI.CPointer x99 = x98 in
    libxed_stubs_645_xed_simple_flag_get_may_write x99)
| Function
    (CI.Pointer _, Function (CI.Primitive CI.Int, Returns (CI.Pointer x103))),
  "xed_simple_flag_get_flag_action" ->
  (fun x100 x102 ->
    let CI.CPointer x101 = x100 in
    CI.make_ptr x103
      (libxed_stubs_644_xed_simple_flag_get_flag_action x101 x102))
| Function (CI.Primitive CI.Int, Returns CI.Void), "xed_set_verbosity" ->
  libxed_stubs_643_xed_set_verbosity
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x110; _};
           write = x108; _},
        Function (CI.Pointer _, Returns CI.Void))),
  "xed_set_decoder_modes" ->
  (fun x105 x107 x112 ->
    let CI.CPointer x113 = x112 in
    let CI.CPointer x106 = x105 in
    let x111 = x110 (x108 x107) in
    let x109 = x111 in libxed_stubs_642_xed_set_decoder_modes x106 x109 x113)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x117; _};
        write = x115; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x119; _};
           read = x120; _})),
  "xed_repne_map" ->
  (fun x114 ->
    let x118 = x117 (x115 x114) in
    let x116 = x118 in x120 (x119 (libxed_stubs_641_xed_repne_map x116)))
| Function (CI.Pointer _, Returns CI.Void), "xed_repne" ->
  (fun x121 ->
    let CI.CPointer x122 = x121 in libxed_stubs_640_xed_repne x122)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x126; _};
        write = x124; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x128; _};
           read = x129; _})),
  "xed_repe_map" ->
  (fun x123 ->
    let x127 = x126 (x124 x123) in
    let x125 = x127 in x129 (x128 (libxed_stubs_639_xed_repe_map x125)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x133; _};
        write = x131; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x135; _};
           read = x136; _})),
  "xed_rep_remove" ->
  (fun x130 ->
    let x134 = x133 (x131 x130) in
    let x132 = x134 in x136 (x135 (libxed_stubs_638_xed_rep_remove x132)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x140; _};
        write = x138; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x142; _};
           read = x143; _})),
  "xed_rep_map" ->
  (fun x137 ->
    let x141 = x140 (x138 x137) in
    let x139 = x141 in x143 (x142 (libxed_stubs_637_xed_rep_map x139)))
| Function (CI.Pointer _, Returns CI.Void), "xed_rep" ->
  (fun x144 -> let CI.CPointer x145 = x144 in libxed_stubs_636_xed_rep x145)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x149; _};
        write = x147; _},
     Returns (CI.View {CI.ty = CI.Pointer x151; read = x152; _})),
  "xed_reg_enum_t2str" ->
  (fun x146 ->
    let x150 = x149 (x147 x146) in
    let x148 = x150 in
    x152 (CI.make_ptr x151 (libxed_stubs_635_xed_reg_enum_t2str x148)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x156; _};
        write = x154; _},
     Returns (CI.View {CI.ty = CI.Pointer x158; read = x159; _})),
  "xed_reg_class_enum_t2str" ->
  (fun x153 ->
    let x157 = x156 (x154 x153) in
    let x155 = x157 in
    x159 (CI.make_ptr x158 (libxed_stubs_634_xed_reg_class_enum_t2str x155)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x163; _};
        write = x161; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x165; _};
           read = x166; _})),
  "xed_reg_class" ->
  (fun x160 ->
    let x164 = x163 (x161 x160) in
    let x162 = x164 in x166 (x165 (libxed_stubs_633_xed_reg_class x162)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x169; _};
           read = x170; _})),
  "xed_operand_xtype" ->
  (fun x167 ->
    let CI.CPointer x168 = x167 in
    x170 (x169 (libxed_stubs_632_xed_operand_xtype x168)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_written_only" ->
  (fun x171 ->
    let CI.CPointer x172 = x171 in
    libxed_stubs_631_xed_operand_written_only x172)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_written" ->
  (fun x173 ->
    let CI.CPointer x174 = x173 in libxed_stubs_630_xed_operand_written x174)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x178; _};
        write = x176; _},
     Returns (CI.View {CI.ty = CI.Pointer x180; read = x181; _})),
  "xed_operand_width_enum_t2str" ->
  (fun x175 ->
    let x179 = x178 (x176 x175) in
    let x177 = x179 in
    x181
    (CI.make_ptr x180 (libxed_stubs_629_xed_operand_width_enum_t2str x177)))
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Uint32_t, Returns (CI.Primitive CI.Uint32_t))),
  "xed_operand_width_bits" ->
  (fun x182 x184 ->
    let CI.CPointer x183 = x182 in
    libxed_stubs_628_xed_operand_width_bits x183 x184)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x187; _};
           read = x188; _})),
  "xed_operand_width" ->
  (fun x185 ->
    let CI.CPointer x186 = x185 in
    x188 (x187 (libxed_stubs_627_xed_operand_width x186)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x192; _};
        write = x190; _},
     Returns (CI.View {CI.ty = CI.Pointer x194; read = x195; _})),
  "xed_operand_visibility_enum_t2str" ->
  (fun x189 ->
    let x193 = x192 (x190 x189) in
    let x191 = x193 in
    x195
    (CI.make_ptr x194
       (libxed_stubs_626_xed_operand_visibility_enum_t2str x191)))
| Function (CI.Pointer _, Returns CI.Void),
  "xed_operand_values_zero_segment_override" ->
  (fun x196 ->
    let CI.CPointer x197 = x196 in
    libxed_stubs_625_xed_operand_values_zero_segment_override x197)
| Function (CI.Pointer _, Returns CI.Void),
  "xed_operand_values_zero_memory_displacement" ->
  (fun x198 ->
    let CI.CPointer x199 = x198 in
    libxed_stubs_624_xed_operand_values_zero_memory_displacement x199)
| Function (CI.Pointer _, Returns CI.Void),
  "xed_operand_values_zero_immediate" ->
  (fun x200 ->
    let CI.CPointer x201 = x200 in
    libxed_stubs_623_xed_operand_values_zero_immediate x201)
| Function (CI.Pointer _, Returns CI.Void),
  "xed_operand_values_zero_branch_displacement" ->
  (fun x202 ->
    let CI.CPointer x203 = x202 in
    libxed_stubs_622_xed_operand_values_zero_branch_displacement x203)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Bool))),
  "xed_operand_values_using_default_segment" ->
  (fun x204 x206 ->
    let CI.CPointer x205 = x204 in
    libxed_stubs_621_xed_operand_values_using_default_segment x205 x206)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Function
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; write = x213; _};
              write = x211; _},
           Returns CI.Void))),
  "xed_operand_values_set_seg_reg" ->
  (fun x207 x209 x210 ->
    let CI.CPointer x208 = x207 in
    let x214 = x213 (x211 x210) in
    let x212 = x214 in
    libxed_stubs_620_xed_operand_values_set_seg_reg x208 x209 x212)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int, Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_set_scale" ->
  (fun x215 x217 x218 ->
    let CI.CPointer x216 = x215 in
    libxed_stubs_619_xed_operand_values_set_scale x216 x217 x218)
| Function (CI.Pointer _, Returns CI.Void), "xed_operand_values_set_relbr" ->
  (fun x219 ->
    let CI.CPointer x220 = x219 in
    libxed_stubs_618_xed_operand_values_set_relbr x220)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x226; _};
           write = x224; _},
        Function
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; write = x231; _};
              write = x229; _},
           Returns CI.Void))),
  "xed_operand_values_set_operand_reg" ->
  (fun x221 x223 x228 ->
    let CI.CPointer x222 = x221 in
    let x227 = x226 (x224 x223) in
    let x225 = x227 in
    let x232 = x231 (x229 x228) in
    let x230 = x232 in
    libxed_stubs_617_xed_operand_values_set_operand_reg x222 x225 x230)
| Function (CI.Pointer _, Function (CI.Pointer _, Returns CI.Void)),
  "xed_operand_values_set_mode" ->
  (fun x233 x235 ->
    let CI.CPointer x236 = x235 in
    let CI.CPointer x234 = x233 in
    libxed_stubs_616_xed_operand_values_set_mode x234 x236)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed_operand_values_set_memory_operand_length" ->
  (fun x237 x239 ->
    let CI.CPointer x238 = x237 in
    libxed_stubs_615_xed_operand_values_set_memory_operand_length x238 x239)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_set_memory_displacement_bits" ->
  (fun x240 x242 x243 ->
    let CI.CPointer x241 = x240 in
    libxed_stubs_614_xed_operand_values_set_memory_displacement_bits x241
    x242 x243)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_set_memory_displacement" ->
  (fun x244 x246 x247 ->
    let CI.CPointer x245 = x244 in
    libxed_stubs_613_xed_operand_values_set_memory_displacement x245 x246
    x247)
| Function (CI.Pointer _, Returns CI.Void), "xed_operand_values_set_lock" ->
  (fun x248 ->
    let CI.CPointer x249 = x248 in
    libxed_stubs_612_xed_operand_values_set_lock x249)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Function
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; write = x256; _};
              write = x254; _},
           Returns CI.Void))),
  "xed_operand_values_set_index_reg" ->
  (fun x250 x252 x253 ->
    let CI.CPointer x251 = x250 in
    let x257 = x256 (x254 x253) in
    let x255 = x257 in
    libxed_stubs_611_xed_operand_values_set_index_reg x251 x252 x255)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Uint64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_set_immediate_unsigned_bits" ->
  (fun x258 x260 x261 ->
    let CI.CPointer x259 = x258 in
    libxed_stubs_610_xed_operand_values_set_immediate_unsigned_bits x259 x260
    x261)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Uint64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_set_immediate_unsigned" ->
  (fun x262 x264 x265 ->
    let CI.CPointer x263 = x262 in
    libxed_stubs_609_xed_operand_values_set_immediate_unsigned x263 x264 x265)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int32_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_set_immediate_signed_bits" ->
  (fun x266 x268 x269 ->
    let CI.CPointer x267 = x266 in
    libxed_stubs_608_xed_operand_values_set_immediate_signed_bits x267 x268
    x269)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int32_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_set_immediate_signed" ->
  (fun x270 x272 x273 ->
    let CI.CPointer x271 = x270 in
    libxed_stubs_607_xed_operand_values_set_immediate_signed x271 x272 x273)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x279; _};
           write = x277; _},
        Returns CI.Void)),
  "xed_operand_values_set_iclass" ->
  (fun x274 x276 ->
    let CI.CPointer x275 = x274 in
    let x280 = x279 (x277 x276) in
    let x278 = x280 in
    libxed_stubs_606_xed_operand_values_set_iclass x275 x278)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed_operand_values_set_effective_operand_width" ->
  (fun x281 x283 ->
    let CI.CPointer x282 = x281 in
    libxed_stubs_605_xed_operand_values_set_effective_operand_width x282 x283)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed_operand_values_set_effective_address_width" ->
  (fun x284 x286 ->
    let CI.CPointer x285 = x284 in
    libxed_stubs_604_xed_operand_values_set_effective_address_width x285 x286)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_set_branch_displacement_bits" ->
  (fun x287 x289 x290 ->
    let CI.CPointer x288 = x287 in
    libxed_stubs_603_xed_operand_values_set_branch_displacement_bits x288
    x289 x290)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_set_branch_displacement" ->
  (fun x291 x293 x294 ->
    let CI.CPointer x292 = x291 in
    libxed_stubs_602_xed_operand_values_set_branch_displacement x292 x293
    x294)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Function
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; write = x301; _};
              write = x299; _},
           Returns CI.Void))),
  "xed_operand_values_set_base_reg" ->
  (fun x295 x297 x298 ->
    let CI.CPointer x296 = x295 in
    let x302 = x301 (x299 x298) in
    let x300 = x302 in
    libxed_stubs_601_xed_operand_values_set_base_reg x296 x297 x300)
| Function (CI.Pointer _, Returns CI.Void), "xed_operand_values_set_absbr" ->
  (fun x303 ->
    let CI.CPointer x304 = x303 in
    libxed_stubs_600_xed_operand_values_set_absbr x304)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x307; _};
           read = x308; _})),
  "xed_operand_values_segment_prefix" ->
  (fun x305 ->
    let CI.CPointer x306 = x305 in
    x308 (x307 (libxed_stubs_599_xed_operand_values_segment_prefix x306)))
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.Bytes, Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_print_short" ->
  (fun x309 x311 x312 ->
    let CI.CPointer x310 = x309 in
    libxed_stubs_598_xed_operand_values_print_short x310 x311 x312)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_values_number_of_memory_operands" ->
  (fun x313 ->
    let CI.CPointer x314 = x313 in
    libxed_stubs_597_xed_operand_values_number_of_memory_operands x314)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_memop_without_modrm" ->
  (fun x315 ->
    let CI.CPointer x316 = x315 in
    libxed_stubs_596_xed_operand_values_memop_without_modrm x316)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_mandatory_66_prefix" ->
  (fun x317 ->
    let CI.CPointer x318 = x317 in
    libxed_stubs_595_xed_operand_values_mandatory_66_prefix x318)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_lockable" ->
  (fun x319 ->
    let CI.CPointer x320 = x319 in
    libxed_stubs_594_xed_operand_values_lockable x320)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_is_nop" ->
  (fun x321 ->
    let CI.CPointer x322 = x321 in
    libxed_stubs_593_xed_operand_values_is_nop x322)
| Function (CI.Pointer _, Function (CI.Pointer _, Returns CI.Void)),
  "xed_operand_values_init_set_mode" ->
  (fun x323 x325 ->
    let CI.CPointer x326 = x325 in
    let CI.CPointer x324 = x323 in
    libxed_stubs_592_xed_operand_values_init_set_mode x324 x326)
| Function (CI.Pointer _, Function (CI.Pointer _, Returns CI.Void)),
  "xed_operand_values_init_keep_mode" ->
  (fun x327 x329 ->
    let CI.CPointer x330 = x329 in
    let CI.CPointer x328 = x327 in
    libxed_stubs_591_xed_operand_values_init_keep_mode x328 x330)
| Function (CI.Pointer _, Returns CI.Void), "xed_operand_values_init" ->
  (fun x331 ->
    let CI.CPointer x332 = x331 in
    libxed_stubs_590_xed_operand_values_init x332)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_ignored_branch_taken_hint" ->
  (fun x333 ->
    let CI.CPointer x334 = x333 in
    libxed_stubs_589_xed_operand_values_ignored_branch_taken_hint x334)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_ignored_branch_not_taken_hint" ->
  (fun x335 ->
    let CI.CPointer x336 = x335 in
    libxed_stubs_588_xed_operand_values_ignored_branch_not_taken_hint x336)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_sib_byte" ->
  (fun x337 ->
    let CI.CPointer x338 = x337 in
    libxed_stubs_587_xed_operand_values_has_sib_byte x338)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_segment_prefix" ->
  (fun x339 ->
    let CI.CPointer x340 = x339 in
    libxed_stubs_586_xed_operand_values_has_segment_prefix x340)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_rexw_prefix" ->
  (fun x341 ->
    let CI.CPointer x342 = x341 in
    libxed_stubs_585_xed_operand_values_has_rexw_prefix x342)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_repne_prefix" ->
  (fun x343 ->
    let CI.CPointer x344 = x343 in
    libxed_stubs_584_xed_operand_values_has_repne_prefix x344)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_rep_prefix" ->
  (fun x345 ->
    let CI.CPointer x346 = x345 in
    libxed_stubs_583_xed_operand_values_has_rep_prefix x346)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_real_rep" ->
  (fun x347 ->
    let CI.CPointer x348 = x347 in
    libxed_stubs_582_xed_operand_values_has_real_rep x348)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_operand_size_prefix" ->
  (fun x349 ->
    let CI.CPointer x350 = x349 in
    libxed_stubs_581_xed_operand_values_has_operand_size_prefix x350)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_modrm_byte" ->
  (fun x351 ->
    let CI.CPointer x352 = x351 in
    libxed_stubs_580_xed_operand_values_has_modrm_byte x352)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_memory_displacement" ->
  (fun x353 ->
    let CI.CPointer x354 = x353 in
    libxed_stubs_579_xed_operand_values_has_memory_displacement x354)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_lock_prefix" ->
  (fun x355 ->
    let CI.CPointer x356 = x355 in
    libxed_stubs_578_xed_operand_values_has_lock_prefix x356)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_immediate" ->
  (fun x357 ->
    let CI.CPointer x358 = x357 in
    libxed_stubs_577_xed_operand_values_has_immediate x358)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_displacement" ->
  (fun x359 ->
    let CI.CPointer x360 = x359 in
    libxed_stubs_576_xed_operand_values_has_displacement x360)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_branch_displacement" ->
  (fun x361 ->
    let CI.CPointer x362 = x361 in
    libxed_stubs_575_xed_operand_values_has_branch_displacement x362)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_address_size_prefix" ->
  (fun x363 ->
    let CI.CPointer x364 = x363 in
    libxed_stubs_574_xed_operand_values_has_address_size_prefix x364)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_has_66_prefix" ->
  (fun x365 ->
    let CI.CPointer x366 = x365 in
    libxed_stubs_573_xed_operand_values_has_66_prefix x366)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_operand_values_get_stack_address_width" ->
  (fun x367 ->
    let CI.CPointer x368 = x367 in
    libxed_stubs_572_xed_operand_values_get_stack_address_width x368)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x372; _};
              read = x373; _}))),
  "xed_operand_values_get_seg_reg" ->
  (fun x369 x371 ->
    let CI.CPointer x370 = x369 in
    x373 (x372 (libxed_stubs_571_xed_operand_values_get_seg_reg x370 x371)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Char)),
  "xed_operand_values_get_second_immediate" ->
  (fun x374 ->
    let CI.CPointer x375 = x374 in
    libxed_stubs_570_xed_operand_values_get_second_immediate x375)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_values_get_scale" ->
  (fun x376 ->
    let CI.CPointer x377 = x376 in
    libxed_stubs_569_xed_operand_values_get_scale x377)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_get_real_mode" ->
  (fun x378 ->
    let CI.CPointer x379 = x378 in
    libxed_stubs_568_xed_operand_values_get_real_mode x379)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_values_get_pp_vex_prefix" ->
  (fun x380 ->
    let CI.CPointer x381 = x380 in
    libxed_stubs_567_xed_operand_values_get_pp_vex_prefix x381)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_operand_values_get_memory_operand_length" ->
  (fun x382 x384 ->
    let CI.CPointer x383 = x382 in
    libxed_stubs_566_xed_operand_values_get_memory_operand_length x383 x384)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_operand_values_get_memory_displacement_length_bits_raw" ->
  (fun x385 ->
    let CI.CPointer x386 = x385 in
    libxed_stubs_565_xed_operand_values_get_memory_displacement_length_bits_raw
    x386)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_operand_values_get_memory_displacement_length_bits" ->
  (fun x387 ->
    let CI.CPointer x388 = x387 in
    libxed_stubs_564_xed_operand_values_get_memory_displacement_length_bits
    x388)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_operand_values_get_memory_displacement_length" ->
  (fun x389 ->
    let CI.CPointer x390 = x389 in
    libxed_stubs_563_xed_operand_values_get_memory_displacement_length x390)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int64_t)),
  "xed_operand_values_get_memory_displacement_int64_raw" ->
  (fun x391 ->
    let CI.CPointer x392 = x391 in
    libxed_stubs_562_xed_operand_values_get_memory_displacement_int64_raw
    x392)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int64_t)),
  "xed_operand_values_get_memory_displacement_int64" ->
  (fun x393 ->
    let CI.CPointer x394 = x393 in
    libxed_stubs_561_xed_operand_values_get_memory_displacement_int64 x394)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Char))),
  "xed_operand_values_get_memory_displacement_byte" ->
  (fun x395 x397 ->
    let CI.CPointer x396 = x395 in
    libxed_stubs_560_xed_operand_values_get_memory_displacement_byte x396
    x397)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_get_long_mode" ->
  (fun x398 ->
    let CI.CPointer x399 = x398 in
    libxed_stubs_559_xed_operand_values_get_long_mode x399)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x403; _};
              read = x404; _}))),
  "xed_operand_values_get_index_reg" ->
  (fun x400 x402 ->
    let CI.CPointer x401 = x400 in
    x404 (x403 (libxed_stubs_558_xed_operand_values_get_index_reg x401 x402)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint64_t)),
  "xed_operand_values_get_immediate_uint64" ->
  (fun x405 ->
    let CI.CPointer x406 = x405 in
    libxed_stubs_557_xed_operand_values_get_immediate_uint64 x406)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_values_get_immediate_is_signed" ->
  (fun x407 ->
    let CI.CPointer x408 = x407 in
    libxed_stubs_556_xed_operand_values_get_immediate_is_signed x408)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int64_t)),
  "xed_operand_values_get_immediate_int64" ->
  (fun x409 ->
    let CI.CPointer x410 = x409 in
    libxed_stubs_555_xed_operand_values_get_immediate_int64 x410)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Char))),
  "xed_operand_values_get_immediate_byte" ->
  (fun x411 x413 ->
    let CI.CPointer x412 = x411 in
    libxed_stubs_554_xed_operand_values_get_immediate_byte x412 x413)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x416; _};
           read = x417; _})),
  "xed_operand_values_get_iclass" ->
  (fun x414 ->
    let CI.CPointer x415 = x414 in
    x417 (x416 (libxed_stubs_553_xed_operand_values_get_iclass x415)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_operand_values_get_effective_operand_width" ->
  (fun x418 ->
    let CI.CPointer x419 = x418 in
    libxed_stubs_552_xed_operand_values_get_effective_operand_width x419)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_operand_values_get_effective_address_width" ->
  (fun x420 ->
    let CI.CPointer x421 = x420 in
    libxed_stubs_551_xed_operand_values_get_effective_address_width x421)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_get_displacement_for_memop" ->
  (fun x422 ->
    let CI.CPointer x423 = x422 in
    libxed_stubs_550_xed_operand_values_get_displacement_for_memop x423)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_operand_values_get_branch_displacement_length_bits" ->
  (fun x424 ->
    let CI.CPointer x425 = x424 in
    libxed_stubs_549_xed_operand_values_get_branch_displacement_length_bits
    x425)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_operand_values_get_branch_displacement_length" ->
  (fun x426 ->
    let CI.CPointer x427 = x426 in
    libxed_stubs_548_xed_operand_values_get_branch_displacement_length x427)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int64_t)),
  "xed_operand_values_get_branch_displacement_int64" ->
  (fun x428 ->
    let CI.CPointer x429 = x428 in
    libxed_stubs_547_xed_operand_values_get_branch_displacement_int64 x429)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Char))),
  "xed_operand_values_get_branch_displacement_byte" ->
  (fun x430 x432 ->
    let CI.CPointer x431 = x430 in
    libxed_stubs_546_xed_operand_values_get_branch_displacement_byte x431
    x432)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x436; _};
              read = x437; _}))),
  "xed_operand_values_get_base_reg" ->
  (fun x433 x435 ->
    let CI.CPointer x434 = x433 in
    x437 (x436 (libxed_stubs_545_xed_operand_values_get_base_reg x434 x435)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_get_atomic" ->
  (fun x438 ->
    let CI.CPointer x439 = x438 in
    libxed_stubs_544_xed_operand_values_get_atomic x439)
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.Bytes, Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_operand_values_dump" ->
  (fun x440 x442 x443 ->
    let CI.CPointer x441 = x440 in
    libxed_stubs_543_xed_operand_values_dump x441 x442 x443)
| Function (CI.Pointer _, Returns CI.Void), "xed_operand_values_clear_rep" ->
  (fun x444 ->
    let CI.CPointer x445 = x444 in
    libxed_stubs_542_xed_operand_values_clear_rep x445)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_cet_no_track" ->
  (fun x446 ->
    let CI.CPointer x447 = x446 in
    libxed_stubs_541_xed_operand_values_cet_no_track x447)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_branch_taken_hint" ->
  (fun x448 ->
    let CI.CPointer x449 = x448 in
    libxed_stubs_540_xed_operand_values_branch_taken_hint x449)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_branch_not_taken_hint" ->
  (fun x450 ->
    let CI.CPointer x451 = x450 in
    libxed_stubs_539_xed_operand_values_branch_not_taken_hint x451)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_operand_values_accesses_memory" ->
  (fun x452 ->
    let CI.CPointer x453 = x452 in
    libxed_stubs_538_xed_operand_values_accesses_memory x453)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x457; _};
        write = x455; _},
     Returns (CI.View {CI.ty = CI.Pointer x459; read = x460; _})),
  "xed_operand_type_enum_t2str" ->
  (fun x454 ->
    let x458 = x457 (x455 x454) in
    let x456 = x458 in
    x460
    (CI.make_ptr x459 (libxed_stubs_537_xed_operand_type_enum_t2str x456)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x463; _};
           read = x464; _})),
  "xed_operand_type" ->
  (fun x461 ->
    let CI.CPointer x462 = x461 in
    x464 (x463 (libxed_stubs_536_xed_operand_type x462)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_template_is_register" ->
  (fun x465 ->
    let CI.CPointer x466 = x465 in
    libxed_stubs_535_xed_operand_template_is_register x466)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x469; _};
           read = x470; _})),
  "xed_operand_rw" ->
  (fun x467 ->
    let CI.CPointer x468 = x467 in
    x470 (x469 (libxed_stubs_534_xed_operand_rw x468)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x473; _};
           read = x474; _})),
  "xed_operand_reg" ->
  (fun x471 ->
    let CI.CPointer x472 = x471 in
    x474 (x473 (libxed_stubs_533_xed_operand_reg x472)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_read_only" ->
  (fun x475 ->
    let CI.CPointer x476 = x475 in
    libxed_stubs_532_xed_operand_read_only x476)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_read_and_written" ->
  (fun x477 ->
    let CI.CPointer x478 = x477 in
    libxed_stubs_531_xed_operand_read_and_written x478)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)), "xed_operand_read" ->
  (fun x479 ->
    let CI.CPointer x480 = x479 in libxed_stubs_530_xed_operand_read x480)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Function
          (CI.OCaml CI.Bytes,
           Function (CI.Primitive CI.Int, Returns CI.Void)))),
  "xed_operand_print" ->
  (fun x481 x483 x484 x485 ->
    let CI.CPointer x482 = x481 in
    libxed_stubs_529_xed_operand_print x482 x483 x484 x485)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x488; _};
           read = x489; _})),
  "xed_operand_operand_visibility" ->
  (fun x486 ->
    let CI.CPointer x487 = x486 in
    x489 (x488 (libxed_stubs_528_xed_operand_operand_visibility x487)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x492; _};
           read = x493; _})),
  "xed_operand_nonterminal_name" ->
  (fun x490 ->
    let CI.CPointer x491 = x490 in
    x493 (x492 (libxed_stubs_527_xed_operand_nonterminal_name x491)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x496; _};
           read = x497; _})),
  "xed_operand_name" ->
  (fun x494 ->
    let CI.CPointer x495 = x494 in
    x497 (x496 (libxed_stubs_526_xed_operand_name x495)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x501; _};
        write = x499; _},
     Returns (CI.Primitive CI.Int)),
  "xed_operand_is_register" ->
  (fun x498 ->
    let x502 = x501 (x499 x498) in
    let x500 = x502 in libxed_stubs_525_xed_operand_is_register x500)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x506; _};
        write = x504; _},
     Returns (CI.Primitive CI.Int)),
  "xed_operand_is_memory_addressing_register" ->
  (fun x503 ->
    let x507 = x506 (x504 x503) in
    let x505 = x507 in
    libxed_stubs_524_xed_operand_is_memory_addressing_register x505)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_operand_imm" ->
  (fun x508 ->
    let CI.CPointer x509 = x508 in libxed_stubs_523_xed_operand_imm x509)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x513; _};
        write = x511; _},
     Returns (CI.View {CI.ty = CI.Pointer x515; read = x516; _})),
  "xed_operand_enum_t2str" ->
  (fun x510 ->
    let x514 = x513 (x511 x510) in
    let x512 = x514 in
    x516 (CI.make_ptr x515 (libxed_stubs_522_xed_operand_enum_t2str x512)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x520; _};
        write = x518; _},
     Returns (CI.View {CI.ty = CI.Pointer x522; read = x523; _})),
  "xed_operand_element_xtype_enum_t2str" ->
  (fun x517 ->
    let x521 = x520 (x518 x517) in
    let x519 = x521 in
    x523
    (CI.make_ptr x522
       (libxed_stubs_521_xed_operand_element_xtype_enum_t2str x519)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x527; _};
        write = x525; _},
     Returns (CI.View {CI.ty = CI.Pointer x529; read = x530; _})),
  "xed_operand_element_type_enum_t2str" ->
  (fun x524 ->
    let x528 = x527 (x525 x524) in
    let x526 = x528 in
    x530
    (CI.make_ptr x529
       (libxed_stubs_520_xed_operand_element_type_enum_t2str x526)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x534; _};
        write = x532; _},
     Returns (CI.View {CI.ty = CI.Pointer x536; read = x537; _})),
  "xed_operand_convert_enum_t2str" ->
  (fun x531 ->
    let x535 = x534 (x532 x531) in
    let x533 = x535 in
    x537
    (CI.make_ptr x536 (libxed_stubs_519_xed_operand_convert_enum_t2str x533)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_conditional_write" ->
  (fun x538 ->
    let CI.CPointer x539 = x538 in
    libxed_stubs_518_xed_operand_conditional_write x539)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_operand_conditional_read" ->
  (fun x540 ->
    let CI.CPointer x541 = x540 in
    libxed_stubs_517_xed_operand_conditional_read x541)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x545; _};
        write = x543; _},
     Returns (CI.Primitive CI.Int)),
  "xed_operand_action_written_only" ->
  (fun x542 ->
    let x546 = x545 (x543 x542) in
    let x544 = x546 in libxed_stubs_516_xed_operand_action_written_only x544)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x550; _};
        write = x548; _},
     Returns (CI.Primitive CI.Int)),
  "xed_operand_action_written" ->
  (fun x547 ->
    let x551 = x550 (x548 x547) in
    let x549 = x551 in libxed_stubs_515_xed_operand_action_written x549)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x555; _};
        write = x553; _},
     Returns (CI.Primitive CI.Int)),
  "xed_operand_action_read_only" ->
  (fun x552 ->
    let x556 = x555 (x553 x552) in
    let x554 = x556 in libxed_stubs_514_xed_operand_action_read_only x554)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x560; _};
        write = x558; _},
     Returns (CI.Primitive CI.Int)),
  "xed_operand_action_read_and_written" ->
  (fun x557 ->
    let x561 = x560 (x558 x557) in
    let x559 = x561 in
    libxed_stubs_513_xed_operand_action_read_and_written x559)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x565; _};
        write = x563; _},
     Returns (CI.Primitive CI.Int)),
  "xed_operand_action_read" ->
  (fun x562 ->
    let x566 = x565 (x563 x562) in
    let x564 = x566 in libxed_stubs_512_xed_operand_action_read x564)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x570; _};
        write = x568; _},
     Returns (CI.View {CI.ty = CI.Pointer x572; read = x573; _})),
  "xed_operand_action_enum_t2str" ->
  (fun x567 ->
    let x571 = x570 (x568 x567) in
    let x569 = x571 in
    x573
    (CI.make_ptr x572 (libxed_stubs_511_xed_operand_action_enum_t2str x569)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x577; _};
        write = x575; _},
     Returns (CI.Primitive CI.Int)),
  "xed_operand_action_conditional_write" ->
  (fun x574 ->
    let x578 = x577 (x575 x574) in
    let x576 = x578 in
    libxed_stubs_510_xed_operand_action_conditional_write x576)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x582; _};
        write = x580; _},
     Returns (CI.Primitive CI.Int)),
  "xed_operand_action_conditional_read" ->
  (fun x579 ->
    let x583 = x582 (x580 x579) in
    let x581 = x583 in
    libxed_stubs_509_xed_operand_action_conditional_read x581)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x587; _};
        write = x585; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x589; _};
           read = x590; _})),
  "xed_norep_map" ->
  (fun x584 ->
    let x588 = x587 (x585 x584) in
    let x586 = x588 in x590 (x589 (libxed_stubs_508_xed_norep_map x586)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x594; _};
        write = x592; _},
     Returns (CI.View {CI.ty = CI.Pointer x596; read = x597; _})),
  "xed_nonterminal_enum_t2str" ->
  (fun x591 ->
    let x595 = x594 (x592 x591) in
    let x593 = x595 in
    x597
    (CI.make_ptr x596 (libxed_stubs_507_xed_nonterminal_enum_t2str x593)))
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x603; _};
           write = x601; _},
        Function (CI.Primitive CI.Bool, Returns CI.Void))),
  "xed_modify_chip_features" ->
  (fun x598 x600 x605 ->
    let CI.CPointer x599 = x598 in
    let x604 = x603 (x601 x600) in
    let x602 = x604 in
    libxed_stubs_506_xed_modify_chip_features x599 x602 x605)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x609; _};
        write = x607; _},
     Returns (CI.View {CI.ty = CI.Pointer x611; read = x612; _})),
  "xed_machine_mode_enum_t2str" ->
  (fun x606 ->
    let x610 = x609 (x607 x606) in
    let x608 = x610 in
    x612
    (CI.make_ptr x611 (libxed_stubs_505_xed_machine_mode_enum_t2str x608)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x616; _};
        write = x614; _},
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x621; _};
           write = x619; _},
        Returns (CI.Primitive CI.Bool))),
  "xed_isa_set_is_valid_for_chip" ->
  (fun x613 x618 ->
    let x617 = x616 (x614 x613) in
    let x615 = x617 in
    let x622 = x621 (x619 x618) in
    let x620 = x622 in
    libxed_stubs_504_xed_isa_set_is_valid_for_chip x615 x620)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x626; _};
        write = x624; _},
     Returns (CI.View {CI.ty = CI.Pointer x628; read = x629; _})),
  "xed_isa_set_enum_t2str" ->
  (fun x623 ->
    let x627 = x626 (x624 x623) in
    let x625 = x627 in
    x629 (CI.make_ptr x628 (libxed_stubs_503_xed_isa_set_enum_t2str x625)))
| Function
    (CI.Pointer _, Function (CI.Primitive CI.Int, Returns (CI.Pointer x633))),
  "xed_inst_operand" ->
  (fun x630 x632 ->
    let CI.CPointer x631 = x630 in
    CI.make_ptr x633 (libxed_stubs_502_xed_inst_operand x631 x632))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_inst_noperands" ->
  (fun x634 ->
    let CI.CPointer x635 = x634 in libxed_stubs_501_xed_inst_noperands x635)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x638; _};
           read = x639; _})),
  "xed_inst_isa_set" ->
  (fun x636 ->
    let CI.CPointer x637 = x636 in
    x639 (x638 (libxed_stubs_500_xed_inst_isa_set x637)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x642; _};
           read = x643; _})),
  "xed_inst_iform_enum" ->
  (fun x640 ->
    let CI.CPointer x641 = x640 in
    x643 (x642 (libxed_stubs_499_xed_inst_iform_enum x641)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x646; _};
           read = x647; _})),
  "xed_inst_iclass" ->
  (fun x644 ->
    let CI.CPointer x645 = x644 in
    x647 (x646 (libxed_stubs_498_xed_inst_iclass x645)))
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x653; _};
           write = x651; _},
        Returns (CI.Primitive CI.Uint32_t))),
  "xed_inst_get_attribute" ->
  (fun x648 x650 ->
    let CI.CPointer x649 = x648 in
    let x654 = x653 (x651 x650) in
    let x652 = x654 in libxed_stubs_497_xed_inst_get_attribute x649 x652)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_inst_flag_info_index" ->
  (fun x655 ->
    let CI.CPointer x656 = x655 in
    libxed_stubs_496_xed_inst_flag_info_index x656)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x659; _};
           read = x660; _})),
  "xed_inst_extension" ->
  (fun x657 ->
    let CI.CPointer x658 = x657 in
    x660 (x659 (libxed_stubs_495_xed_inst_extension x658)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x663; _};
           read = x664; _})),
  "xed_inst_exception" ->
  (fun x661 ->
    let CI.CPointer x662 = x661 in
    x664 (x663 (libxed_stubs_494_xed_inst_exception x662)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)), "xed_inst_cpl" ->
  (fun x665 ->
    let CI.CPointer x666 = x665 in libxed_stubs_493_xed_inst_cpl x666)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x669; _};
           read = x670; _})),
  "xed_inst_category" ->
  (fun x667 ->
    let CI.CPointer x668 = x667 in
    x670 (x669 (libxed_stubs_492_xed_inst_category x668)))
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.String,
        Function
          (CI.Primitive CI.Int,
           Returns
             (CI.View
                {CI.ty =
                 CI.View {CI.ty = CI.Primitive CI.Uint; read = x675; _};
                 read = x676; _})))),
  "xed_ild_decode" ->
  (fun x671 x673 x674 ->
    let CI.CPointer x672 = x671 in
    x676 (x675 (libxed_stubs_491_xed_ild_decode x672 x673 x674)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x680; _};
        write = x678; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x682; _};
           read = x683; _})),
  "xed_iform_to_isa_set" ->
  (fun x677 ->
    let x681 = x680 (x678 x677) in
    let x679 = x681 in
    x683 (x682 (libxed_stubs_490_xed_iform_to_isa_set x679)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x687; _};
        write = x685; _},
     Returns (CI.View {CI.ty = CI.Pointer x689; read = x690; _})),
  "xed_iform_to_iclass_string_intel" ->
  (fun x684 ->
    let x688 = x687 (x685 x684) in
    let x686 = x688 in
    x690
    (CI.make_ptr x689
       (libxed_stubs_489_xed_iform_to_iclass_string_intel x686)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x694; _};
        write = x692; _},
     Returns (CI.View {CI.ty = CI.Pointer x696; read = x697; _})),
  "xed_iform_to_iclass_string_att" ->
  (fun x691 ->
    let x695 = x694 (x692 x691) in
    let x693 = x695 in
    x697
    (CI.make_ptr x696 (libxed_stubs_488_xed_iform_to_iclass_string_att x693)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x701; _};
        write = x699; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x703; _};
           read = x704; _})),
  "xed_iform_to_iclass" ->
  (fun x698 ->
    let x702 = x701 (x699 x698) in
    let x700 = x702 in
    x704 (x703 (libxed_stubs_487_xed_iform_to_iclass x700)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x708; _};
        write = x706; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x710; _};
           read = x711; _})),
  "xed_iform_to_extension" ->
  (fun x705 ->
    let x709 = x708 (x706 x705) in
    let x707 = x709 in
    x711 (x710 (libxed_stubs_486_xed_iform_to_extension x707)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x715; _};
        write = x713; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x717; _};
           read = x718; _})),
  "xed_iform_to_category" ->
  (fun x712 ->
    let x716 = x715 (x713 x712) in
    let x714 = x716 in
    x718 (x717 (libxed_stubs_485_xed_iform_to_category x714)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x722; _};
        write = x720; _},
     Returns (CI.Primitive CI.Uint32_t)),
  "xed_iform_max_per_iclass" ->
  (fun x719 ->
    let x723 = x722 (x720 x719) in
    let x721 = x723 in libxed_stubs_484_xed_iform_max_per_iclass x721)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x727; _};
        write = x725; _},
     Returns (CI.Primitive CI.Uint32_t)),
  "xed_iform_first_per_iclass" ->
  (fun x724 ->
    let x728 = x727 (x725 x724) in
    let x726 = x728 in libxed_stubs_483_xed_iform_first_per_iclass x726)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x732; _};
        write = x730; _},
     Returns (CI.View {CI.ty = CI.Pointer x734; read = x735; _})),
  "xed_iform_enum_t2str" ->
  (fun x729 ->
    let x733 = x732 (x730 x729) in
    let x731 = x733 in
    x735 (CI.make_ptr x734 (libxed_stubs_482_xed_iform_enum_t2str x731)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x739; _};
        write = x737; _},
     Returns (CI.View {CI.ty = CI.Pointer x741; read = x742; _})),
  "xed_iclass_enum_t2str" ->
  (fun x736 ->
    let x740 = x739 (x737 x736) in
    let x738 = x740 in
    x742 (CI.make_ptr x741 (libxed_stubs_481_xed_iclass_enum_t2str x738)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x746; _};
        write = x744; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x748; _};
           read = x749; _})),
  "xed_gpr_reg_class" ->
  (fun x743 ->
    let x747 = x746 (x744 x743) in
    let x745 = x747 in x749 (x748 (libxed_stubs_480_xed_gpr_reg_class x745)))
| Function
    (CI.Void, Returns (CI.View {CI.ty = CI.Pointer x751; read = x752; _})),
  "xed_get_version" ->
  (fun x750 ->
    x752 (CI.make_ptr x751 (libxed_stubs_479_xed_get_version x750)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x756; _};
        write = x754; _},
     Returns (CI.Primitive CI.Uint32_t)),
  "xed_get_register_width_bits64" ->
  (fun x753 ->
    let x757 = x756 (x754 x753) in
    let x755 = x757 in libxed_stubs_478_xed_get_register_width_bits64 x755)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x761; _};
        write = x759; _},
     Returns (CI.Primitive CI.Uint32_t)),
  "xed_get_register_width_bits" ->
  (fun x758 ->
    let x762 = x761 (x759 x758) in
    let x760 = x762 in libxed_stubs_477_xed_get_register_width_bits x760)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x766; _};
        write = x764; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x768; _};
           read = x769; _})),
  "xed_get_largest_enclosing_register32" ->
  (fun x763 ->
    let x767 = x766 (x764 x763) in
    let x765 = x767 in
    x769 (x768 (libxed_stubs_476_xed_get_largest_enclosing_register32 x765)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x773; _};
        write = x771; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x775; _};
           read = x776; _})),
  "xed_get_largest_enclosing_register" ->
  (fun x770 ->
    let x774 = x773 (x771 x770) in
    let x772 = x774 in
    x776 (x775 (libxed_stubs_475_xed_get_largest_enclosing_register x772)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x780; _};
        write = x778; _},
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x783; _};
              read = x784; _}))),
  "xed_get_cpuid_rec_enum_for_group" ->
  (fun x777 x782 ->
    let x781 = x780 (x778 x777) in
    let x779 = x781 in
    x784 (x783 (libxed_stubs_474_xed_get_cpuid_rec_enum_for_group x779 x782)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x788; _};
        write = x786; _},
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x791; _};
              read = x792; _}))),
  "xed_get_cpuid_group_enum_for_isa_set" ->
  (fun x785 x790 ->
    let x789 = x788 (x786 x785) in
    let x787 = x789 in
    x792
    (x791 (libxed_stubs_473_xed_get_cpuid_group_enum_for_isa_set x787 x790)))
| Function
    (CI.Void, Returns (CI.View {CI.ty = CI.Pointer x794; read = x795; _})),
  "xed_get_copyright" ->
  (fun x793 ->
    x795 (CI.make_ptr x794 (libxed_stubs_472_xed_get_copyright x793)))
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x801; _};
           write = x799; _},
        Returns CI.Void)),
  "xed_get_chip_features" ->
  (fun x796 x798 ->
    let CI.CPointer x797 = x796 in
    let x802 = x801 (x799 x798) in
    let x800 = x802 in libxed_stubs_471_xed_get_chip_features x797 x800)
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.Bytes,
        Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int)))),
  "xed_flag_set_print" ->
  (fun x803 x805 x806 ->
    let CI.CPointer x804 = x803 in
    libxed_stubs_470_xed_flag_set_print x804 x805 x806)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)), "xed_flag_set_mask" ->
  (fun x807 ->
    let CI.CPointer x808 = x807 in libxed_stubs_469_xed_flag_set_mask x808)
| Function
    (CI.Pointer _, Function (CI.Pointer _, Returns (CI.Primitive CI.Bool))),
  "xed_flag_set_is_subset_of" ->
  (fun x809 x811 ->
    let CI.CPointer x812 = x811 in
    let CI.CPointer x810 = x809 in
    libxed_stubs_468_xed_flag_set_is_subset_of x810 x812)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x816; _};
        write = x814; _},
     Returns (CI.View {CI.ty = CI.Pointer x818; read = x819; _})),
  "xed_flag_enum_t2str" ->
  (fun x813 ->
    let x817 = x816 (x814 x813) in
    let x815 = x817 in
    x819 (CI.make_ptr x818 (libxed_stubs_467_xed_flag_enum_t2str x815)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_flag_action_writes_flag" ->
  (fun x820 ->
    let CI.CPointer x821 = x820 in
    libxed_stubs_466_xed_flag_action_writes_flag x821)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x825; _};
        write = x823; _},
     Returns (CI.Primitive CI.Bool)),
  "xed_flag_action_write_action" ->
  (fun x822 ->
    let x826 = x825 (x823 x822) in
    let x824 = x826 in libxed_stubs_465_xed_flag_action_write_action x824)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_flag_action_read_flag" ->
  (fun x827 ->
    let CI.CPointer x828 = x827 in
    libxed_stubs_464_xed_flag_action_read_flag x828)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x832; _};
        write = x830; _},
     Returns (CI.Primitive CI.Bool)),
  "xed_flag_action_read_action" ->
  (fun x829 ->
    let x833 = x832 (x830 x829) in
    let x831 = x833 in libxed_stubs_463_xed_flag_action_read_action x831)
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.Bytes,
        Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int)))),
  "xed_flag_action_print" ->
  (fun x834 x836 x837 ->
    let CI.CPointer x835 = x834 in
    libxed_stubs_462_xed_flag_action_print x835 x836 x837)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x840; _};
           read = x841; _})),
  "xed_flag_action_get_flag_name" ->
  (fun x838 ->
    let CI.CPointer x839 = x838 in
    x841 (x840 (libxed_stubs_461_xed_flag_action_get_flag_name x839)))
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x845; _};
              read = x846; _}))),
  "xed_flag_action_get_action" ->
  (fun x842 x844 ->
    let CI.CPointer x843 = x842 in
    x846 (x845 (libxed_stubs_460_xed_flag_action_get_action x843 x844)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x850; _};
        write = x848; _},
     Returns (CI.View {CI.ty = CI.Pointer x852; read = x853; _})),
  "xed_flag_action_enum_t2str" ->
  (fun x847 ->
    let x851 = x850 (x848 x847) in
    let x849 = x851 in
    x853
    (CI.make_ptr x852 (libxed_stubs_459_xed_flag_action_enum_t2str x849)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x857; _};
        write = x855; _},
     Returns (CI.Primitive CI.Bool)),
  "xed_flag_action_action_invalid" ->
  (fun x854 ->
    let x858 = x857 (x855 x854) in
    let x856 = x858 in libxed_stubs_458_xed_flag_action_action_invalid x856)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x862; _};
        write = x860; _},
     Returns (CI.View {CI.ty = CI.Pointer x864; read = x865; _})),
  "xed_extension_enum_t2str" ->
  (fun x859 ->
    let x863 = x862 (x860 x859) in
    let x861 = x863 in
    x865 (CI.make_ptr x864 (libxed_stubs_457_xed_extension_enum_t2str x861)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x869; _};
        write = x867; _},
     Returns (CI.View {CI.ty = CI.Pointer x871; read = x872; _})),
  "xed_exception_enum_t2str" ->
  (fun x866 ->
    let x870 = x869 (x867 x866) in
    let x868 = x870 in
    x872 (CI.make_ptr x871 (libxed_stubs_456_xed_exception_enum_t2str x868)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x876; _};
        write = x874; _},
     Returns (CI.View {CI.ty = CI.Pointer x878; read = x879; _})),
  "xed_error_enum_t2str" ->
  (fun x873 ->
    let x877 = x876 (x874 x873) in
    let x875 = x877 in
    x879 (CI.make_ptr x878 (libxed_stubs_455_xed_error_enum_t2str x875)))
| Function (CI.Pointer _, Function (CI.Pointer _, Returns CI.Void)),
  "xed_encoder_request_zero_set_mode" ->
  (fun x880 x882 ->
    let CI.CPointer x883 = x882 in
    let CI.CPointer x881 = x880 in
    libxed_stubs_454_xed_encoder_request_zero_set_mode x881 x883)
| Function (CI.Pointer _, Returns CI.Void),
  "xed_encoder_request_zero_operand_order" ->
  (fun x884 ->
    let CI.CPointer x885 = x884 in
    libxed_stubs_453_xed_encoder_request_zero_operand_order x885)
| Function (CI.Pointer _, Returns CI.Void), "xed_encoder_request_zero" ->
  (fun x886 ->
    let CI.CPointer x887 = x886 in
    libxed_stubs_452_xed_encoder_request_zero x887)
| Function (CI.Pointer _, Function (CI.Primitive CI.Char, Returns CI.Void)),
  "xed_encoder_request_set_uimm1" ->
  (fun x888 x890 ->
    let CI.CPointer x889 = x888 in
    libxed_stubs_451_xed_encoder_request_set_uimm1 x889 x890)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Uint64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_encoder_request_set_uimm0_bits" ->
  (fun x891 x893 x894 ->
    let CI.CPointer x892 = x891 in
    libxed_stubs_450_xed_encoder_request_set_uimm0_bits x892 x893 x894)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Uint64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_encoder_request_set_uimm0" ->
  (fun x895 x897 x898 ->
    let CI.CPointer x896 = x895 in
    libxed_stubs_449_xed_encoder_request_set_uimm0 x896 x897 x898)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int32_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_encoder_request_set_simm" ->
  (fun x899 x901 x902 ->
    let CI.CPointer x900 = x899 in
    libxed_stubs_448_xed_encoder_request_set_simm x900 x901 x902)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x908; _};
           write = x906; _},
        Returns CI.Void)),
  "xed_encoder_request_set_seg1" ->
  (fun x903 x905 ->
    let CI.CPointer x904 = x903 in
    let x909 = x908 (x906 x905) in
    let x907 = x909 in
    libxed_stubs_447_xed_encoder_request_set_seg1 x904 x907)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x915; _};
           write = x913; _},
        Returns CI.Void)),
  "xed_encoder_request_set_seg0" ->
  (fun x910 x912 ->
    let CI.CPointer x911 = x910 in
    let x916 = x915 (x913 x912) in
    let x914 = x916 in
    libxed_stubs_446_xed_encoder_request_set_seg0 x911 x914)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed_encoder_request_set_scale" ->
  (fun x917 x919 ->
    let CI.CPointer x918 = x917 in
    libxed_stubs_445_xed_encoder_request_set_scale x918 x919)
| Function (CI.Pointer _, Returns CI.Void), "xed_encoder_request_set_relbr" ->
  (fun x920 ->
    let CI.CPointer x921 = x920 in
    libxed_stubs_444_xed_encoder_request_set_relbr x921)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x927; _};
           write = x925; _},
        Function
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; write = x932; _};
              write = x930; _},
           Returns CI.Void))),
  "xed_encoder_request_set_reg" ->
  (fun x922 x924 x929 ->
    let CI.CPointer x923 = x922 in
    let x928 = x927 (x925 x924) in
    let x926 = x928 in
    let x933 = x932 (x930 x929) in
    let x931 = x933 in
    libxed_stubs_443_xed_encoder_request_set_reg x923 x926 x931)
| Function (CI.Pointer _, Returns CI.Void), "xed_encoder_request_set_ptr" ->
  (fun x934 ->
    let CI.CPointer x935 = x934 in
    libxed_stubs_442_xed_encoder_request_set_ptr x935)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Function
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; write = x942; _};
              write = x940; _},
           Returns CI.Void))),
  "xed_encoder_request_set_operand_order" ->
  (fun x936 x938 x939 ->
    let CI.CPointer x937 = x936 in
    let x943 = x942 (x940 x939) in
    let x941 = x943 in
    libxed_stubs_441_xed_encoder_request_set_operand_order x937 x938 x941)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed_encoder_request_set_memory_operand_length" ->
  (fun x944 x946 ->
    let CI.CPointer x945 = x944 in
    libxed_stubs_440_xed_encoder_request_set_memory_operand_length x945 x946)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_encoder_request_set_memory_displacement" ->
  (fun x947 x949 x950 ->
    let CI.CPointer x948 = x947 in
    libxed_stubs_439_xed_encoder_request_set_memory_displacement x948 x949
    x950)
| Function (CI.Pointer _, Returns CI.Void), "xed_encoder_request_set_mem1" ->
  (fun x951 ->
    let CI.CPointer x952 = x951 in
    libxed_stubs_438_xed_encoder_request_set_mem1 x952)
| Function (CI.Pointer _, Returns CI.Void), "xed_encoder_request_set_mem0" ->
  (fun x953 ->
    let CI.CPointer x954 = x953 in
    libxed_stubs_437_xed_encoder_request_set_mem0 x954)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x960; _};
           write = x958; _},
        Returns CI.Void)),
  "xed_encoder_request_set_index" ->
  (fun x955 x957 ->
    let CI.CPointer x956 = x955 in
    let x961 = x960 (x958 x957) in
    let x959 = x961 in
    libxed_stubs_436_xed_encoder_request_set_index x956 x959)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x967; _};
           write = x965; _},
        Returns CI.Void)),
  "xed_encoder_request_set_iclass" ->
  (fun x962 x964 ->
    let CI.CPointer x963 = x962 in
    let x968 = x967 (x965 x964) in
    let x966 = x968 in
    libxed_stubs_435_xed_encoder_request_set_iclass x963 x966)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed_encoder_request_set_effective_operand_width" ->
  (fun x969 x971 ->
    let CI.CPointer x970 = x969 in
    libxed_stubs_434_xed_encoder_request_set_effective_operand_width x970
    x971)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed_encoder_request_set_effective_address_size" ->
  (fun x972 x974 ->
    let CI.CPointer x973 = x972 in
    libxed_stubs_433_xed_encoder_request_set_effective_address_size x973 x974)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_encoder_request_set_branch_displacement" ->
  (fun x975 x977 x978 ->
    let CI.CPointer x976 = x975 in
    libxed_stubs_432_xed_encoder_request_set_branch_displacement x976 x977
    x978)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x984; _};
           write = x982; _},
        Returns CI.Void)),
  "xed_encoder_request_set_base1" ->
  (fun x979 x981 ->
    let CI.CPointer x980 = x979 in
    let x985 = x984 (x982 x981) in
    let x983 = x985 in
    libxed_stubs_431_xed_encoder_request_set_base1 x980 x983)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x991; _};
           write = x989; _},
        Returns CI.Void)),
  "xed_encoder_request_set_base0" ->
  (fun x986 x988 ->
    let CI.CPointer x987 = x986 in
    let x992 = x991 (x989 x988) in
    let x990 = x992 in
    libxed_stubs_430_xed_encoder_request_set_base0 x987 x990)
| Function (CI.Pointer _, Returns CI.Void), "xed_encoder_request_set_agen" ->
  (fun x993 ->
    let CI.CPointer x994 = x993 in
    libxed_stubs_429_xed_encoder_request_set_agen x994)
| Function (CI.Pointer _, Returns CI.Void), "xed_encoder_request_set_absbr" ->
  (fun x995 ->
    let CI.CPointer x996 = x995 in
    libxed_stubs_428_xed_encoder_request_set_absbr x996)
| Function (CI.Pointer _, Returns (CI.Pointer x999)),
  "xed_encoder_request_operands_const" ->
  (fun x997 ->
    let CI.CPointer x998 = x997 in
    CI.make_ptr x999
      (libxed_stubs_427_xed_encoder_request_operands_const x998))
| Function (CI.Pointer _, Returns (CI.Pointer x1002)),
  "xed_encoder_request_operands" ->
  (fun x1000 ->
    let CI.CPointer x1001 = x1000 in
    CI.make_ptr x1002 (libxed_stubs_426_xed_encoder_request_operands x1001))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_encoder_request_operand_order_entries" ->
  (fun x1003 ->
    let CI.CPointer x1004 = x1003 in
    libxed_stubs_425_xed_encoder_request_operand_order_entries x1004)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; read = x1008; _};
              read = x1009; _}))),
  "xed_encoder_request_get_operand_order" ->
  (fun x1005 x1007 ->
    let CI.CPointer x1006 = x1005 in
    x1009
    (x1008
      (libxed_stubs_424_xed_encoder_request_get_operand_order x1006 x1007)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1012; _};
           read = x1013; _})),
  "xed_encoder_request_get_iclass" ->
  (fun x1010 ->
    let CI.CPointer x1011 = x1010 in
    x1013 (x1012 (libxed_stubs_423_xed_encoder_request_get_iclass x1011)))
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.Bytes, Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_encode_request_print" ->
  (fun x1014 x1016 x1017 ->
    let CI.CPointer x1015 = x1014 in
    libxed_stubs_422_xed_encode_request_print x1015 x1016 x1017)
| Function
    (CI.OCaml CI.Bytes,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; read = x1020; _};
              read = x1021; _}))),
  "xed_encode_nop" ->
  (fun x1018 x1019 ->
    x1021 (x1020 (libxed_stubs_421_xed_encode_nop x1018 x1019)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_zeroing" ->
  (fun x1022 ->
    let CI.CPointer x1023 = x1022 in
    libxed_stubs_420_xed_decoded_inst_zeroing x1023)
| Function (CI.Pointer _, Function (CI.Pointer _, Returns CI.Void)),
  "xed_decoded_inst_zero_set_mode" ->
  (fun x1024 x1026 ->
    let CI.CPointer x1027 = x1026 in
    let CI.CPointer x1025 = x1024 in
    libxed_stubs_419_xed_decoded_inst_zero_set_mode x1025 x1027)
| Function (CI.Pointer _, Function (CI.Pointer _, Returns CI.Void)),
  "xed_decoded_inst_zero_keep_mode_from_operands" ->
  (fun x1028 x1030 ->
    let CI.CPointer x1031 = x1030 in
    let CI.CPointer x1029 = x1028 in
    libxed_stubs_418_xed_decoded_inst_zero_keep_mode_from_operands x1029
    x1031)
| Function (CI.Pointer _, Returns CI.Void), "xed_decoded_inst_zero_keep_mode" ->
  (fun x1032 ->
    let CI.CPointer x1033 = x1032 in
    libxed_stubs_417_xed_decoded_inst_zero_keep_mode x1033)
| Function (CI.Pointer _, Returns CI.Void), "xed_decoded_inst_zero" ->
  (fun x1034 ->
    let CI.CPointer x1035 = x1034 in
    libxed_stubs_416_xed_decoded_inst_zero x1035)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_vector_length_bits" ->
  (fun x1036 ->
    let CI.CPointer x1037 = x1036 in
    libxed_stubs_415_xed_decoded_inst_vector_length_bits x1037)
| Function
    (CI.Pointer _, Function (CI.Pointer _, Returns (CI.Primitive CI.Bool))),
  "xed_decoded_inst_valid_for_features" ->
  (fun x1038 x1040 ->
    let CI.CPointer x1041 = x1040 in
    let CI.CPointer x1039 = x1038 in
    libxed_stubs_414_xed_decoded_inst_valid_for_features x1039 x1041)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1047; _};
           write = x1045; _},
        Returns (CI.Primitive CI.Bool))),
  "xed_decoded_inst_valid_for_chip" ->
  (fun x1042 x1044 ->
    let CI.CPointer x1043 = x1042 in
    let x1048 = x1047 (x1045 x1044) in
    let x1046 = x1048 in
    libxed_stubs_413_xed_decoded_inst_valid_for_chip x1043 x1046)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_valid" ->
  (fun x1049 ->
    let CI.CPointer x1050 = x1049 in
    libxed_stubs_412_xed_decoded_inst_valid x1050)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_uses_rflags" ->
  (fun x1051 ->
    let CI.CPointer x1052 = x1051 in
    libxed_stubs_411_xed_decoded_inst_uses_rflags x1052)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_uses_embedded_broadcast" ->
  (fun x1053 ->
    let CI.CPointer x1054 = x1053 in
    libxed_stubs_410_xed_decoded_inst_uses_embedded_broadcast x1054)
| Function
    (CI.Pointer _, Function (CI.Primitive CI.Uint64_t, Returns CI.Void)),
  "xed_decoded_inst_set_user_data" ->
  (fun x1055 x1057 ->
    let CI.CPointer x1056 = x1055 in
    libxed_stubs_409_xed_decoded_inst_set_user_data x1056 x1057)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed_decoded_inst_set_scale" ->
  (fun x1058 x1060 ->
    let CI.CPointer x1059 = x1058 in
    libxed_stubs_408_xed_decoded_inst_set_scale x1059 x1060)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1066; _};
           write = x1064; _},
        Function
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; write = x1071; _};
              write = x1069; _},
           Returns CI.Void))),
  "xed_decoded_inst_set_mode" ->
  (fun x1061 x1063 x1068 ->
    let CI.CPointer x1062 = x1061 in
    let x1067 = x1066 (x1064 x1063) in
    let x1065 = x1067 in
    let x1072 = x1071 (x1069 x1068) in
    let x1070 = x1072 in
    libxed_stubs_407_xed_decoded_inst_set_mode x1062 x1065 x1070)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_decoded_inst_set_memory_displacement_bits" ->
  (fun x1073 x1075 x1076 ->
    let CI.CPointer x1074 = x1073 in
    libxed_stubs_406_xed_decoded_inst_set_memory_displacement_bits x1074
    x1075 x1076)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_decoded_inst_set_memory_displacement" ->
  (fun x1077 x1079 x1080 ->
    let CI.CPointer x1078 = x1077 in
    libxed_stubs_405_xed_decoded_inst_set_memory_displacement x1078 x1079
    x1080)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1086; _};
           write = x1084; _},
        Returns CI.Void)),
  "xed_decoded_inst_set_input_chip" ->
  (fun x1081 x1083 ->
    let CI.CPointer x1082 = x1081 in
    let x1087 = x1086 (x1084 x1083) in
    let x1085 = x1087 in
    libxed_stubs_404_xed_decoded_inst_set_input_chip x1082 x1085)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Uint64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_decoded_inst_set_immediate_unsigned_bits" ->
  (fun x1088 x1090 x1091 ->
    let CI.CPointer x1089 = x1088 in
    libxed_stubs_403_xed_decoded_inst_set_immediate_unsigned_bits x1089 x1090
    x1091)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Uint64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_decoded_inst_set_immediate_unsigned" ->
  (fun x1092 x1094 x1095 ->
    let CI.CPointer x1093 = x1092 in
    libxed_stubs_402_xed_decoded_inst_set_immediate_unsigned x1093 x1094
    x1095)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int32_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_decoded_inst_set_immediate_signed_bits" ->
  (fun x1096 x1098 x1099 ->
    let CI.CPointer x1097 = x1096 in
    libxed_stubs_401_xed_decoded_inst_set_immediate_signed_bits x1097 x1098
    x1099)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int32_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_decoded_inst_set_immediate_signed" ->
  (fun x1100 x1102 x1103 ->
    let CI.CPointer x1101 = x1100 in
    libxed_stubs_400_xed_decoded_inst_set_immediate_signed x1101 x1102 x1103)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_decoded_inst_set_branch_displacement_bits" ->
  (fun x1104 x1106 x1107 ->
    let CI.CPointer x1105 = x1104 in
    libxed_stubs_399_xed_decoded_inst_set_branch_displacement_bits x1105
    x1106 x1107)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int64_t,
        Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_decoded_inst_set_branch_displacement" ->
  (fun x1108 x1110 x1111 ->
    let CI.CPointer x1109 = x1108 in
    libxed_stubs_398_xed_decoded_inst_set_branch_displacement x1109 x1110
    x1111)
| Function (CI.Pointer _, Returns (CI.Pointer x1114)),
  "xed_decoded_inst_operands_const" ->
  (fun x1112 ->
    let CI.CPointer x1113 = x1112 in
    CI.make_ptr x1114
      (libxed_stubs_397_xed_decoded_inst_operands_const x1113))
| Function (CI.Pointer _, Returns (CI.Pointer x1117)),
  "xed_decoded_inst_operands" ->
  (fun x1115 ->
    let CI.CPointer x1116 = x1115 in
    CI.make_ptr x1117 (libxed_stubs_396_xed_decoded_inst_operands x1116))
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_decoded_inst_operand_length_bits" ->
  (fun x1118 x1120 ->
    let CI.CPointer x1119 = x1118 in
    libxed_stubs_395_xed_decoded_inst_operand_length_bits x1119 x1120)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_decoded_inst_operand_length" ->
  (fun x1121 x1123 ->
    let CI.CPointer x1122 = x1121 in
    libxed_stubs_394_xed_decoded_inst_operand_length x1122 x1123)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_decoded_inst_operand_elements" ->
  (fun x1124 x1126 ->
    let CI.CPointer x1125 = x1124 in
    libxed_stubs_393_xed_decoded_inst_operand_elements x1125 x1126)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; read = x1130; _};
              read = x1131; _}))),
  "xed_decoded_inst_operand_element_type" ->
  (fun x1127 x1129 ->
    let CI.CPointer x1128 = x1127 in
    x1131
    (x1130
      (libxed_stubs_392_xed_decoded_inst_operand_element_type x1128 x1129)))
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_decoded_inst_operand_element_size_bits" ->
  (fun x1132 x1134 ->
    let CI.CPointer x1133 = x1132 in
    libxed_stubs_391_xed_decoded_inst_operand_element_size_bits x1133 x1134)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; read = x1138; _};
              read = x1139; _}))),
  "xed_decoded_inst_operand_action" ->
  (fun x1135 x1137 ->
    let CI.CPointer x1136 = x1135 in
    x1139
    (x1138 (libxed_stubs_390_xed_decoded_inst_operand_action x1136 x1137)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_number_of_memory_operands" ->
  (fun x1140 ->
    let CI.CPointer x1141 = x1140 in
    libxed_stubs_389_xed_decoded_inst_number_of_memory_operands x1141)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_noperands" ->
  (fun x1142 ->
    let CI.CPointer x1143 = x1142 in
    libxed_stubs_388_xed_decoded_inst_noperands x1143)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_merging" ->
  (fun x1144 ->
    let CI.CPointer x1145 = x1144 in
    libxed_stubs_387_xed_decoded_inst_merging x1145)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Bool))),
  "xed_decoded_inst_mem_written_only" ->
  (fun x1146 x1148 ->
    let CI.CPointer x1147 = x1146 in
    libxed_stubs_386_xed_decoded_inst_mem_written_only x1147 x1148)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Bool))),
  "xed_decoded_inst_mem_written" ->
  (fun x1149 x1151 ->
    let CI.CPointer x1150 = x1149 in
    libxed_stubs_385_xed_decoded_inst_mem_written x1150 x1151)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Bool))),
  "xed_decoded_inst_mem_read" ->
  (fun x1152 x1154 ->
    let CI.CPointer x1153 = x1152 in
    libxed_stubs_384_xed_decoded_inst_mem_read x1153 x1154)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_masking" ->
  (fun x1155 ->
    let CI.CPointer x1156 = x1155 in
    libxed_stubs_383_xed_decoded_inst_masking x1156)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_masked_vector_operation" ->
  (fun x1157 ->
    let CI.CPointer x1158 = x1157 in
    libxed_stubs_382_xed_decoded_inst_masked_vector_operation x1158)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_decoded_inst_is_xrelease" ->
  (fun x1159 ->
    let CI.CPointer x1160 = x1159 in
    libxed_stubs_381_xed_decoded_inst_is_xrelease x1160)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_decoded_inst_is_xacquire" ->
  (fun x1161 ->
    let CI.CPointer x1162 = x1161 in
    libxed_stubs_380_xed_decoded_inst_is_xacquire x1162)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_is_prefetch" ->
  (fun x1163 ->
    let CI.CPointer x1164 = x1163 in
    libxed_stubs_379_xed_decoded_inst_is_prefetch x1164)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_is_broadcast_instruction" ->
  (fun x1165 ->
    let CI.CPointer x1166 = x1165 in
    libxed_stubs_378_xed_decoded_inst_is_broadcast_instruction x1166)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_is_broadcast" ->
  (fun x1167 ->
    let CI.CPointer x1168 = x1167 in
    libxed_stubs_377_xed_decoded_inst_is_broadcast x1168)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_is_apx_zu" ->
  (fun x1169 ->
    let CI.CPointer x1170 = x1169 in
    libxed_stubs_376_xed_decoded_inst_is_apx_zu x1170)
| Function (CI.Pointer _, Returns (CI.Pointer x1173)),
  "xed_decoded_inst_inst" ->
  (fun x1171 ->
    let CI.CPointer x1172 = x1171 in
    CI.make_ptr x1173 (libxed_stubs_375_xed_decoded_inst_inst x1172))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_decoded_inst_has_mpx_prefix" ->
  (fun x1174 ->
    let CI.CPointer x1175 = x1174 in
    libxed_stubs_374_xed_decoded_inst_has_mpx_prefix x1175)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_has_default_flags_values" ->
  (fun x1176 ->
    let CI.CPointer x1177 = x1176 in
    libxed_stubs_373_xed_decoded_inst_has_default_flags_values x1177)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint64_t)),
  "xed_decoded_inst_get_user_data" ->
  (fun x1178 ->
    let CI.CPointer x1179 = x1178 in
    libxed_stubs_372_xed_decoded_inst_get_user_data x1179)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint64_t)),
  "xed_decoded_inst_get_unsigned_immediate" ->
  (fun x1180 ->
    let CI.CPointer x1181 = x1180 in
    libxed_stubs_371_xed_decoded_inst_get_unsigned_immediate x1181)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_stack_address_mode_bits" ->
  (fun x1182 ->
    let CI.CPointer x1183 = x1182 in
    libxed_stubs_370_xed_decoded_inst_get_stack_address_mode_bits x1183)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int32_t)),
  "xed_decoded_inst_get_signed_immediate" ->
  (fun x1184 ->
    let CI.CPointer x1185 = x1184 in
    libxed_stubs_369_xed_decoded_inst_get_signed_immediate x1185)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; read = x1189; _};
              read = x1190; _}))),
  "xed_decoded_inst_get_seg_reg" ->
  (fun x1186 x1188 ->
    let CI.CPointer x1187 = x1186 in
    x1190 (x1189 (libxed_stubs_368_xed_decoded_inst_get_seg_reg x1187 x1188)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Char)),
  "xed_decoded_inst_get_second_immediate" ->
  (fun x1191 ->
    let CI.CPointer x1192 = x1191 in
    libxed_stubs_367_xed_decoded_inst_get_second_immediate x1192)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_decoded_inst_get_scale" ->
  (fun x1193 x1195 ->
    let CI.CPointer x1194 = x1193 in
    libxed_stubs_366_xed_decoded_inst_get_scale x1194 x1195)
| Function (CI.Pointer _, Returns (CI.Pointer x1198)),
  "xed_decoded_inst_get_rflags_info" ->
  (fun x1196 ->
    let CI.CPointer x1197 = x1196 in
    CI.make_ptr x1198
      (libxed_stubs_365_xed_decoded_inst_get_rflags_info x1197))
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1204; _};
           write = x1202; _},
        Returns
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; read = x1206; _};
              read = x1207; _}))),
  "xed_decoded_inst_get_reg" ->
  (fun x1199 x1201 ->
    let CI.CPointer x1200 = x1199 in
    let x1205 = x1204 (x1202 x1201) in
    let x1203 = x1205 in
    x1207 (x1206 (libxed_stubs_364_xed_decoded_inst_get_reg x1200 x1203)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint32_t)),
  "xed_decoded_inst_get_operand_width" ->
  (fun x1208 ->
    let CI.CPointer x1209 = x1208 in
    libxed_stubs_363_xed_decoded_inst_get_operand_width x1209)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_nprefixes" ->
  (fun x1210 ->
    let CI.CPointer x1211 = x1210 in
    libxed_stubs_362_xed_decoded_inst_get_nprefixes x1211)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Char)),
  "xed_decoded_inst_get_modrm" ->
  (fun x1212 ->
    let CI.CPointer x1213 = x1212 in
    libxed_stubs_361_xed_decoded_inst_get_modrm x1213)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_decoded_inst_get_memory_operand_length" ->
  (fun x1214 x1216 ->
    let CI.CPointer x1215 = x1214 in
    libxed_stubs_360_xed_decoded_inst_get_memory_operand_length x1215 x1216)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_decoded_inst_get_memory_displacement_width_bits" ->
  (fun x1217 x1219 ->
    let CI.CPointer x1218 = x1217 in
    libxed_stubs_359_xed_decoded_inst_get_memory_displacement_width_bits
    x1218 x1219)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_decoded_inst_get_memory_displacement_width" ->
  (fun x1220 x1222 ->
    let CI.CPointer x1221 = x1220 in
    libxed_stubs_358_xed_decoded_inst_get_memory_displacement_width x1221
    x1222)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int64_t))),
  "xed_decoded_inst_get_memory_displacement" ->
  (fun x1223 x1225 ->
    let CI.CPointer x1224 = x1223 in
    libxed_stubs_357_xed_decoded_inst_get_memory_displacement x1224 x1225)
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Int))),
  "xed_decoded_inst_get_memop_address_width" ->
  (fun x1226 x1228 ->
    let CI.CPointer x1227 = x1226 in
    libxed_stubs_356_xed_decoded_inst_get_memop_address_width x1227 x1228)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_machine_mode_bits" ->
  (fun x1229 ->
    let CI.CPointer x1230 = x1229 in
    libxed_stubs_355_xed_decoded_inst_get_machine_mode_bits x1230)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_length" ->
  (fun x1231 ->
    let CI.CPointer x1232 = x1231 in
    libxed_stubs_354_xed_decoded_inst_get_length x1232)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1235; _};
           read = x1236; _})),
  "xed_decoded_inst_get_isa_set" ->
  (fun x1233 ->
    let CI.CPointer x1234 = x1233 in
    x1236 (x1235 (libxed_stubs_353_xed_decoded_inst_get_isa_set x1234)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1239; _};
           read = x1240; _})),
  "xed_decoded_inst_get_input_chip" ->
  (fun x1237 ->
    let CI.CPointer x1238 = x1237 in
    x1240 (x1239 (libxed_stubs_352_xed_decoded_inst_get_input_chip x1238)))
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; read = x1244; _};
              read = x1245; _}))),
  "xed_decoded_inst_get_index_reg" ->
  (fun x1241 x1243 ->
    let CI.CPointer x1242 = x1241 in
    x1245
    (x1244 (libxed_stubs_351_xed_decoded_inst_get_index_reg x1242 x1243)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_immediate_width_bits" ->
  (fun x1246 ->
    let CI.CPointer x1247 = x1246 in
    libxed_stubs_350_xed_decoded_inst_get_immediate_width_bits x1247)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_immediate_width" ->
  (fun x1248 ->
    let CI.CPointer x1249 = x1248 in
    libxed_stubs_349_xed_decoded_inst_get_immediate_width x1249)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_immediate_is_signed" ->
  (fun x1250 ->
    let CI.CPointer x1251 = x1250 in
    libxed_stubs_348_xed_decoded_inst_get_immediate_is_signed x1251)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_iform_enum_dispatch" ->
  (fun x1252 ->
    let CI.CPointer x1253 = x1252 in
    libxed_stubs_347_xed_decoded_inst_get_iform_enum_dispatch x1253)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1256; _};
           read = x1257; _})),
  "xed_decoded_inst_get_iform_enum" ->
  (fun x1254 ->
    let CI.CPointer x1255 = x1254 in
    x1257 (x1256 (libxed_stubs_346_xed_decoded_inst_get_iform_enum x1255)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1260; _};
           read = x1261; _})),
  "xed_decoded_inst_get_iclass" ->
  (fun x1258 ->
    let CI.CPointer x1259 = x1258 in
    x1261 (x1260 (libxed_stubs_345_xed_decoded_inst_get_iclass x1259)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1264; _};
           read = x1265; _})),
  "xed_decoded_inst_get_extension" ->
  (fun x1262 ->
    let CI.CPointer x1263 = x1262 in
    x1265 (x1264 (libxed_stubs_344_xed_decoded_inst_get_extension x1263)))
| Function
    (CI.Pointer _, Function (CI.Pointer _, Returns (CI.Primitive CI.Bool))),
  "xed_decoded_inst_get_default_flags_values" ->
  (fun x1266 x1268 ->
    let CI.CPointer x1269 = x1268 in
    let CI.CPointer x1267 = x1266 in
    libxed_stubs_343_xed_decoded_inst_get_default_flags_values x1267 x1269)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1272; _};
           read = x1273; _})),
  "xed_decoded_inst_get_category" ->
  (fun x1270 ->
    let CI.CPointer x1271 = x1270 in
    x1273 (x1272 (libxed_stubs_342_xed_decoded_inst_get_category x1271)))
| Function
    (CI.Pointer _,
     Function (CI.Primitive CI.Int, Returns (CI.Primitive CI.Char))),
  "xed_decoded_inst_get_byte" ->
  (fun x1274 x1276 ->
    let CI.CPointer x1275 = x1274 in
    libxed_stubs_341_xed_decoded_inst_get_byte x1275 x1276)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_branch_displacement_width_bits" ->
  (fun x1277 ->
    let CI.CPointer x1278 = x1277 in
    libxed_stubs_340_xed_decoded_inst_get_branch_displacement_width_bits
    x1278)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_get_branch_displacement_width" ->
  (fun x1279 ->
    let CI.CPointer x1280 = x1279 in
    libxed_stubs_339_xed_decoded_inst_get_branch_displacement_width x1280)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int64_t)),
  "xed_decoded_inst_get_branch_displacement" ->
  (fun x1281 ->
    let CI.CPointer x1282 = x1281 in
    libxed_stubs_338_xed_decoded_inst_get_branch_displacement x1282)
| Function
    (CI.Pointer _,
     Function
       (CI.Primitive CI.Int,
        Returns
          (CI.View
             {CI.ty =
              CI.View {CI.ty = CI.Primitive CI.Uint; read = x1286; _};
              read = x1287; _}))),
  "xed_decoded_inst_get_base_reg" ->
  (fun x1283 x1285 ->
    let CI.CPointer x1284 = x1283 in
    x1287
    (x1286 (libxed_stubs_337_xed_decoded_inst_get_base_reg x1284 x1285)))
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1293; _};
           write = x1291; _},
        Returns (CI.Primitive CI.Uint32_t))),
  "xed_decoded_inst_get_attribute" ->
  (fun x1288 x1290 ->
    let CI.CPointer x1289 = x1288 in
    let x1294 = x1293 (x1291 x1290) in
    let x1292 = x1294 in
    libxed_stubs_336_xed_decoded_inst_get_attribute x1289 x1292)
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.Bytes,
        Function
          (CI.Primitive CI.Int,
           Function
             (CI.Primitive CI.Uint64_t, Returns (CI.Primitive CI.Bool))))),
  "xed_decoded_inst_dump_xed_format" ->
  (fun x1295 x1297 x1298 x1299 ->
    let CI.CPointer x1296 = x1295 in
    libxed_stubs_335_xed_decoded_inst_dump_xed_format x1296 x1297 x1298 x1299)
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.Bytes, Function (CI.Primitive CI.Int, Returns CI.Void))),
  "xed_decoded_inst_dump" ->
  (fun x1300 x1302 x1303 ->
    let CI.CPointer x1301 = x1300 in
    libxed_stubs_334_xed_decoded_inst_dump x1301 x1302 x1303)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_decoded_inst_conditionally_writes_registers" ->
  (fun x1304 ->
    let CI.CPointer x1305 = x1304 in
    libxed_stubs_333_xed_decoded_inst_conditionally_writes_registers x1305)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed_decoded_inst_avx512_dest_elements" ->
  (fun x1306 ->
    let CI.CPointer x1307 = x1306 in
    libxed_stubs_332_xed_decoded_inst_avx512_dest_elements x1307)
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.String,
        Function
          (CI.Primitive CI.Int,
           Function
             (CI.Pointer _,
              Returns
                (CI.View
                   {CI.ty =
                    CI.View {CI.ty = CI.Primitive CI.Uint; read = x1314; _};
                    read = x1315; _}))))),
  "xed_decode_with_features" ->
  (fun x1308 x1310 x1311 x1312 ->
    let CI.CPointer x1313 = x1312 in
    let CI.CPointer x1309 = x1308 in
    x1315
    (x1314
      (libxed_stubs_331_xed_decode_with_features x1309 x1310 x1311 x1313)))
| Function
    (CI.Pointer _,
     Function
       (CI.OCaml CI.String,
        Function
          (CI.Primitive CI.Int,
           Returns
             (CI.View
                {CI.ty =
                 CI.View {CI.ty = CI.Primitive CI.Uint; read = x1320; _};
                 read = x1321; _})))),
  "xed_decode" ->
  (fun x1316 x1318 x1319 ->
    let CI.CPointer x1317 = x1316 in
    x1321 (x1320 (libxed_stubs_330_xed_decode x1317 x1318 x1319)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1325; _};
        write = x1323; _},
     Returns (CI.View {CI.ty = CI.Pointer x1327; read = x1328; _})),
  "xed_cpuid_rec_enum_t2str" ->
  (fun x1322 ->
    let x1326 = x1325 (x1323 x1322) in
    let x1324 = x1326 in
    x1328
    (CI.make_ptr x1327 (libxed_stubs_329_xed_cpuid_rec_enum_t2str x1324)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1332; _};
        write = x1330; _},
     Returns (CI.View {CI.ty = CI.Pointer x1334; read = x1335; _})),
  "xed_cpuid_group_enum_t2str" ->
  (fun x1329 ->
    let x1333 = x1332 (x1330 x1329) in
    let x1331 = x1333 in
    x1335
    (CI.make_ptr x1334 (libxed_stubs_328_xed_cpuid_group_enum_t2str x1331)))
| Function
    (CI.Pointer _, Function (CI.Pointer _, Returns (CI.Primitive CI.Bool))),
  "xed_convert_to_encoder_request" ->
  (fun x1336 x1338 ->
    let CI.CPointer x1339 = x1338 in
    let CI.CPointer x1337 = x1336 in
    libxed_stubs_327_xed_convert_to_encoder_request x1337 x1339)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)), "xed_classify_sse" ->
  (fun x1340 ->
    let CI.CPointer x1341 = x1340 in libxed_stubs_326_xed_classify_sse x1341)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_classify_avx512_maskop" ->
  (fun x1342 ->
    let CI.CPointer x1343 = x1342 in
    libxed_stubs_325_xed_classify_avx512_maskop x1343)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)),
  "xed_classify_avx512" ->
  (fun x1344 ->
    let CI.CPointer x1345 = x1344 in
    libxed_stubs_324_xed_classify_avx512 x1345)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)), "xed_classify_avx" ->
  (fun x1346 ->
    let CI.CPointer x1347 = x1346 in libxed_stubs_323_xed_classify_avx x1347)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)), "xed_classify_apx" ->
  (fun x1348 ->
    let CI.CPointer x1349 = x1348 in libxed_stubs_322_xed_classify_apx x1349)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Bool)), "xed_classify_amx" ->
  (fun x1350 ->
    let CI.CPointer x1351 = x1350 in libxed_stubs_321_xed_classify_amx x1351)
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1355; _};
        write = x1353; _},
     Returns (CI.View {CI.ty = CI.Pointer x1357; read = x1358; _})),
  "xed_chip_enum_t2str" ->
  (fun x1352 ->
    let x1356 = x1355 (x1353 x1352) in
    let x1354 = x1356 in
    x1358 (CI.make_ptr x1357 (libxed_stubs_320_xed_chip_enum_t2str x1354)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1362; _};
        write = x1360; _},
     Returns (CI.View {CI.ty = CI.Pointer x1364; read = x1365; _})),
  "xed_category_enum_t2str" ->
  (fun x1359 ->
    let x1363 = x1362 (x1360 x1359) in
    let x1361 = x1363 in
    x1365
    (CI.make_ptr x1364 (libxed_stubs_319_xed_category_enum_t2str x1361)))
| Function (CI.Void, Returns (CI.Primitive CI.Int)), "xed_attribute_max" ->
  libxed_stubs_318_xed_attribute_max
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1370; _};
        write = x1368; _},
     Returns (CI.View {CI.ty = CI.Pointer x1372; read = x1373; _})),
  "xed_attribute_enum_t2str" ->
  (fun x1367 ->
    let x1371 = x1370 (x1368 x1367) in
    let x1369 = x1371 in
    x1373
    (CI.make_ptr x1372 (libxed_stubs_317_xed_attribute_enum_t2str x1369)))
| Function
    (CI.Primitive CI.Int,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1375; _};
           read = x1376; _})),
  "xed_attribute" ->
  (fun x1374 -> x1376 (x1375 (libxed_stubs_316_xed_attribute x1374)))
| Function
    (CI.View
       {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1380; _};
        write = x1378; _},
     Returns (CI.View {CI.ty = CI.Pointer x1382; read = x1383; _})),
  "xed_address_width_enum_t2str" ->
  (fun x1377 ->
    let x1381 = x1380 (x1378 x1377) in
    let x1379 = x1381 in
    x1383
    (CI.make_ptr x1382 (libxed_stubs_315_xed_address_width_enum_t2str x1379)))
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed_addr" ->
  (fun x1384 x1386 ->
    let CI.CPointer x1385 = x1384 in libxed_stubs_314_xed_addr x1385 x1386)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_zeroing" ->
  (fun x1387 x1389 ->
    let CI.CPointer x1388 = x1387 in
    libxed_stubs_313_xed3_operand_set_zeroing x1388 x1389)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_wbnoinvd" ->
  (fun x1390 x1392 ->
    let CI.CPointer x1391 = x1390 in
    libxed_stubs_312_xed3_operand_set_wbnoinvd x1391 x1392)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_vl_ign" ->
  (fun x1393 x1395 ->
    let CI.CPointer x1394 = x1393 in
    libxed_stubs_311_xed3_operand_set_vl_ign x1394 x1395)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_vl" ->
  (fun x1396 x1398 ->
    let CI.CPointer x1397 = x1396 in
    libxed_stubs_310_xed3_operand_set_vl x1397 x1398)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_vexvalid" ->
  (fun x1399 x1401 ->
    let CI.CPointer x1400 = x1399 in
    libxed_stubs_309_xed3_operand_set_vexvalid x1400 x1401)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_vexdest4" ->
  (fun x1402 x1404 ->
    let CI.CPointer x1403 = x1402 in
    libxed_stubs_308_xed3_operand_set_vexdest4 x1403 x1404)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_vexdest3" ->
  (fun x1405 x1407 ->
    let CI.CPointer x1406 = x1405 in
    libxed_stubs_307_xed3_operand_set_vexdest3 x1406 x1407)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_vexdest210" ->
  (fun x1408 x1410 ->
    let CI.CPointer x1409 = x1408 in
    libxed_stubs_306_xed3_operand_set_vexdest210 x1409 x1410)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_vex_prefix" ->
  (fun x1411 x1413 ->
    let CI.CPointer x1412 = x1411 in
    libxed_stubs_305_xed3_operand_set_vex_prefix x1412 x1413)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_vex_c4" ->
  (fun x1414 x1416 ->
    let CI.CPointer x1415 = x1414 in
    libxed_stubs_304_xed3_operand_set_vex_c4 x1415 x1416)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_using_default_segment1" ->
  (fun x1417 x1419 ->
    let CI.CPointer x1418 = x1417 in
    libxed_stubs_303_xed3_operand_set_using_default_segment1 x1418 x1419)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_using_default_segment0" ->
  (fun x1420 x1422 ->
    let CI.CPointer x1421 = x1420 in
    libxed_stubs_302_xed3_operand_set_using_default_segment0 x1421 x1422)
| Function (CI.Pointer _, Function (CI.Primitive CI.Char, Returns CI.Void)),
  "xed3_operand_set_uimm1" ->
  (fun x1423 x1425 ->
    let CI.CPointer x1424 = x1423 in
    libxed_stubs_301_xed3_operand_set_uimm1 x1424 x1425)
| Function
    (CI.Pointer _, Function (CI.Primitive CI.Uint64_t, Returns CI.Void)),
  "xed3_operand_set_uimm0" ->
  (fun x1426 x1428 ->
    let CI.CPointer x1427 = x1426 in
    libxed_stubs_300_xed3_operand_set_uimm0 x1427 x1428)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_ubit" ->
  (fun x1429 x1431 ->
    let CI.CPointer x1430 = x1429 in
    libxed_stubs_299_xed3_operand_set_ubit x1430 x1431)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_tzcnt" ->
  (fun x1432 x1434 ->
    let CI.CPointer x1433 = x1432 in
    libxed_stubs_298_xed3_operand_set_tzcnt x1433 x1434)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_srm" ->
  (fun x1435 x1437 ->
    let CI.CPointer x1436 = x1435 in
    libxed_stubs_297_xed3_operand_set_srm x1436 x1437)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_smode" ->
  (fun x1438 x1440 ->
    let CI.CPointer x1439 = x1438 in
    libxed_stubs_296_xed3_operand_set_smode x1439 x1440)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_skip_osz" ->
  (fun x1441 x1443 ->
    let CI.CPointer x1442 = x1441 in
    libxed_stubs_295_xed3_operand_set_skip_osz x1442 x1443)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_sibscale" ->
  (fun x1444 x1446 ->
    let CI.CPointer x1445 = x1444 in
    libxed_stubs_294_xed3_operand_set_sibscale x1445 x1446)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_sibindex" ->
  (fun x1447 x1449 ->
    let CI.CPointer x1448 = x1447 in
    libxed_stubs_293_xed3_operand_set_sibindex x1448 x1449)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_sibbase" ->
  (fun x1450 x1452 ->
    let CI.CPointer x1451 = x1450 in
    libxed_stubs_292_xed3_operand_set_sibbase x1451 x1452)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_seg_ovd" ->
  (fun x1453 x1455 ->
    let CI.CPointer x1454 = x1453 in
    libxed_stubs_291_xed3_operand_set_seg_ovd x1454 x1455)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1461; _};
           write = x1459; _},
        Returns CI.Void)),
  "xed3_operand_set_seg1" ->
  (fun x1456 x1458 ->
    let CI.CPointer x1457 = x1456 in
    let x1462 = x1461 (x1459 x1458) in
    let x1460 = x1462 in libxed_stubs_290_xed3_operand_set_seg1 x1457 x1460)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1468; _};
           write = x1466; _},
        Returns CI.Void)),
  "xed3_operand_set_seg0" ->
  (fun x1463 x1465 ->
    let CI.CPointer x1464 = x1463 in
    let x1469 = x1468 (x1466 x1465) in
    let x1467 = x1469 in libxed_stubs_289_xed3_operand_set_seg0 x1464 x1467)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_scc" ->
  (fun x1470 x1472 ->
    let CI.CPointer x1471 = x1470 in
    libxed_stubs_288_xed3_operand_set_scc x1471 x1472)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_scale" ->
  (fun x1473 x1475 ->
    let CI.CPointer x1474 = x1473 in
    libxed_stubs_287_xed3_operand_set_scale x1474 x1475)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_sae" ->
  (fun x1476 x1478 ->
    let CI.CPointer x1477 = x1476 in
    libxed_stubs_286_xed3_operand_set_sae x1477 x1478)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_roundc" ->
  (fun x1479 x1481 ->
    let CI.CPointer x1480 = x1479 in
    libxed_stubs_285_xed3_operand_set_roundc x1480 x1481)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rm" ->
  (fun x1482 x1484 ->
    let CI.CPointer x1483 = x1482 in
    libxed_stubs_284_xed3_operand_set_rm x1483 x1484)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rexx4" ->
  (fun x1485 x1487 ->
    let CI.CPointer x1486 = x1485 in
    libxed_stubs_283_xed3_operand_set_rexx4 x1486 x1487)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rexx" ->
  (fun x1488 x1490 ->
    let CI.CPointer x1489 = x1488 in
    libxed_stubs_282_xed3_operand_set_rexx x1489 x1490)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rexw" ->
  (fun x1491 x1493 ->
    let CI.CPointer x1492 = x1491 in
    libxed_stubs_281_xed3_operand_set_rexw x1492 x1493)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rexr4" ->
  (fun x1494 x1496 ->
    let CI.CPointer x1495 = x1494 in
    libxed_stubs_280_xed3_operand_set_rexr4 x1495 x1496)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rexr" ->
  (fun x1497 x1499 ->
    let CI.CPointer x1498 = x1497 in
    libxed_stubs_279_xed3_operand_set_rexr x1498 x1499)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rexb4" ->
  (fun x1500 x1502 ->
    let CI.CPointer x1501 = x1500 in
    libxed_stubs_278_xed3_operand_set_rexb4 x1501 x1502)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rexb" ->
  (fun x1503 x1505 ->
    let CI.CPointer x1504 = x1503 in
    libxed_stubs_277_xed3_operand_set_rexb x1504 x1505)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rex2" ->
  (fun x1506 x1508 ->
    let CI.CPointer x1507 = x1506 in
    libxed_stubs_276_xed3_operand_set_rex2 x1507 x1508)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rex" ->
  (fun x1509 x1511 ->
    let CI.CPointer x1510 = x1509 in
    libxed_stubs_275_xed3_operand_set_rex x1510 x1511)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_rep" ->
  (fun x1512 x1514 ->
    let CI.CPointer x1513 = x1512 in
    libxed_stubs_274_xed3_operand_set_rep x1513 x1514)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_relbr" ->
  (fun x1515 x1517 ->
    let CI.CPointer x1516 = x1515 in
    libxed_stubs_273_xed3_operand_set_relbr x1516 x1517)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1523; _};
           write = x1521; _},
        Returns CI.Void)),
  "xed3_operand_set_reg9" ->
  (fun x1518 x1520 ->
    let CI.CPointer x1519 = x1518 in
    let x1524 = x1523 (x1521 x1520) in
    let x1522 = x1524 in libxed_stubs_272_xed3_operand_set_reg9 x1519 x1522)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1530; _};
           write = x1528; _},
        Returns CI.Void)),
  "xed3_operand_set_reg8" ->
  (fun x1525 x1527 ->
    let CI.CPointer x1526 = x1525 in
    let x1531 = x1530 (x1528 x1527) in
    let x1529 = x1531 in libxed_stubs_271_xed3_operand_set_reg8 x1526 x1529)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1537; _};
           write = x1535; _},
        Returns CI.Void)),
  "xed3_operand_set_reg7" ->
  (fun x1532 x1534 ->
    let CI.CPointer x1533 = x1532 in
    let x1538 = x1537 (x1535 x1534) in
    let x1536 = x1538 in libxed_stubs_270_xed3_operand_set_reg7 x1533 x1536)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1544; _};
           write = x1542; _},
        Returns CI.Void)),
  "xed3_operand_set_reg6" ->
  (fun x1539 x1541 ->
    let CI.CPointer x1540 = x1539 in
    let x1545 = x1544 (x1542 x1541) in
    let x1543 = x1545 in libxed_stubs_269_xed3_operand_set_reg6 x1540 x1543)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1551; _};
           write = x1549; _},
        Returns CI.Void)),
  "xed3_operand_set_reg5" ->
  (fun x1546 x1548 ->
    let CI.CPointer x1547 = x1546 in
    let x1552 = x1551 (x1549 x1548) in
    let x1550 = x1552 in libxed_stubs_268_xed3_operand_set_reg5 x1547 x1550)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1558; _};
           write = x1556; _},
        Returns CI.Void)),
  "xed3_operand_set_reg4" ->
  (fun x1553 x1555 ->
    let CI.CPointer x1554 = x1553 in
    let x1559 = x1558 (x1556 x1555) in
    let x1557 = x1559 in libxed_stubs_267_xed3_operand_set_reg4 x1554 x1557)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1565; _};
           write = x1563; _},
        Returns CI.Void)),
  "xed3_operand_set_reg3" ->
  (fun x1560 x1562 ->
    let CI.CPointer x1561 = x1560 in
    let x1566 = x1565 (x1563 x1562) in
    let x1564 = x1566 in libxed_stubs_266_xed3_operand_set_reg3 x1561 x1564)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1572; _};
           write = x1570; _},
        Returns CI.Void)),
  "xed3_operand_set_reg2" ->
  (fun x1567 x1569 ->
    let CI.CPointer x1568 = x1567 in
    let x1573 = x1572 (x1570 x1569) in
    let x1571 = x1573 in libxed_stubs_265_xed3_operand_set_reg2 x1568 x1571)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1579; _};
           write = x1577; _},
        Returns CI.Void)),
  "xed3_operand_set_reg1" ->
  (fun x1574 x1576 ->
    let CI.CPointer x1575 = x1574 in
    let x1580 = x1579 (x1577 x1576) in
    let x1578 = x1580 in libxed_stubs_264_xed3_operand_set_reg1 x1575 x1578)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1586; _};
           write = x1584; _},
        Returns CI.Void)),
  "xed3_operand_set_reg0" ->
  (fun x1581 x1583 ->
    let CI.CPointer x1582 = x1581 in
    let x1587 = x1586 (x1584 x1583) in
    let x1585 = x1587 in libxed_stubs_263_xed3_operand_set_reg0 x1582 x1585)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_reg" ->
  (fun x1588 x1590 ->
    let CI.CPointer x1589 = x1588 in
    libxed_stubs_262_xed3_operand_set_reg x1589 x1590)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_realmode" ->
  (fun x1591 x1593 ->
    let CI.CPointer x1592 = x1591 in
    libxed_stubs_261_xed3_operand_set_realmode x1592 x1593)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_ptr" ->
  (fun x1594 x1596 ->
    let CI.CPointer x1595 = x1594 in
    libxed_stubs_260_xed3_operand_set_ptr x1595 x1596)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_prefix66" ->
  (fun x1597 x1599 ->
    let CI.CPointer x1598 = x1597 in
    libxed_stubs_259_xed3_operand_set_prefix66 x1598 x1599)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_prefetchrst" ->
  (fun x1600 x1602 ->
    let CI.CPointer x1601 = x1600 in
    libxed_stubs_258_xed3_operand_set_prefetchrst x1601 x1602)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_prefetchit" ->
  (fun x1603 x1605 ->
    let CI.CPointer x1604 = x1603 in
    libxed_stubs_257_xed3_operand_set_prefetchit x1604 x1605)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_pos_sib" ->
  (fun x1606 x1608 ->
    let CI.CPointer x1607 = x1606 in
    libxed_stubs_256_xed3_operand_set_pos_sib x1607 x1608)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_pos_nominal_opcode" ->
  (fun x1609 x1611 ->
    let CI.CPointer x1610 = x1609 in
    libxed_stubs_255_xed3_operand_set_pos_nominal_opcode x1610 x1611)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_pos_modrm" ->
  (fun x1612 x1614 ->
    let CI.CPointer x1613 = x1612 in
    libxed_stubs_254_xed3_operand_set_pos_modrm x1613 x1614)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_pos_imm1" ->
  (fun x1615 x1617 ->
    let CI.CPointer x1616 = x1615 in
    libxed_stubs_253_xed3_operand_set_pos_imm1 x1616 x1617)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_pos_imm" ->
  (fun x1618 x1620 ->
    let CI.CPointer x1619 = x1618 in
    libxed_stubs_252_xed3_operand_set_pos_imm x1619 x1620)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_pos_disp" ->
  (fun x1621 x1623 ->
    let CI.CPointer x1622 = x1621 in
    libxed_stubs_251_xed3_operand_set_pos_disp x1622 x1623)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_p4" ->
  (fun x1624 x1626 ->
    let CI.CPointer x1625 = x1624 in
    libxed_stubs_250_xed3_operand_set_p4 x1625 x1626)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1632; _};
           write = x1630; _},
        Returns CI.Void)),
  "xed3_operand_set_outreg" ->
  (fun x1627 x1629 ->
    let CI.CPointer x1628 = x1627 in
    let x1633 = x1632 (x1630 x1629) in
    let x1631 = x1633 in libxed_stubs_249_xed3_operand_set_outreg x1628 x1631)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_out_of_bytes" ->
  (fun x1634 x1636 ->
    let CI.CPointer x1635 = x1634 in
    libxed_stubs_248_xed3_operand_set_out_of_bytes x1635 x1636)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_osz" ->
  (fun x1637 x1639 ->
    let CI.CPointer x1638 = x1637 in
    libxed_stubs_247_xed3_operand_set_osz x1638 x1639)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_nseg_prefixes" ->
  (fun x1640 x1642 ->
    let CI.CPointer x1641 = x1640 in
    libxed_stubs_246_xed3_operand_set_nseg_prefixes x1641 x1642)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_nrexes" ->
  (fun x1643 x1645 ->
    let CI.CPointer x1644 = x1643 in
    libxed_stubs_245_xed3_operand_set_nrexes x1644 x1645)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_nprefixes" ->
  (fun x1646 x1648 ->
    let CI.CPointer x1647 = x1646 in
    libxed_stubs_244_xed3_operand_set_nprefixes x1647 x1648)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_norex2" ->
  (fun x1649 x1651 ->
    let CI.CPointer x1650 = x1649 in
    libxed_stubs_243_xed3_operand_set_norex2 x1650 x1651)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_norex" ->
  (fun x1652 x1654 ->
    let CI.CPointer x1653 = x1652 in
    libxed_stubs_242_xed3_operand_set_norex x1653 x1654)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_nominal_opcode" ->
  (fun x1655 x1657 ->
    let CI.CPointer x1656 = x1655 in
    libxed_stubs_241_xed3_operand_set_nominal_opcode x1656 x1657)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_no_vex" ->
  (fun x1658 x1660 ->
    let CI.CPointer x1659 = x1658 in
    libxed_stubs_240_xed3_operand_set_no_vex x1659 x1660)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_no_evex" ->
  (fun x1661 x1663 ->
    let CI.CPointer x1662 = x1661 in
    libxed_stubs_239_xed3_operand_set_no_evex x1662 x1663)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_no_apx" ->
  (fun x1664 x1666 ->
    let CI.CPointer x1665 = x1664 in
    libxed_stubs_238_xed3_operand_set_no_apx x1665 x1666)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_nf" ->
  (fun x1667 x1669 ->
    let CI.CPointer x1668 = x1667 in
    libxed_stubs_237_xed3_operand_set_nf x1668 x1669)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_nelem" ->
  (fun x1670 x1672 ->
    let CI.CPointer x1671 = x1670 in
    libxed_stubs_236_xed3_operand_set_nelem x1671 x1672)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_needrex" ->
  (fun x1673 x1675 ->
    let CI.CPointer x1674 = x1673 in
    libxed_stubs_235_xed3_operand_set_needrex x1674 x1675)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_need_sib" ->
  (fun x1676 x1678 ->
    let CI.CPointer x1677 = x1676 in
    libxed_stubs_234_xed3_operand_set_need_sib x1677 x1678)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_need_memdisp" ->
  (fun x1679 x1681 ->
    let CI.CPointer x1680 = x1679 in
    libxed_stubs_233_xed3_operand_set_need_memdisp x1680 x1681)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_nd" ->
  (fun x1682 x1684 ->
    let CI.CPointer x1683 = x1682 in
    libxed_stubs_232_xed3_operand_set_nd x1683 x1684)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_must_use_evex" ->
  (fun x1685 x1687 ->
    let CI.CPointer x1686 = x1685 in
    libxed_stubs_231_xed3_operand_set_must_use_evex x1686 x1687)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_mpxmode" ->
  (fun x1688 x1690 ->
    let CI.CPointer x1689 = x1688 in
    libxed_stubs_230_xed3_operand_set_mpxmode x1689 x1690)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_modrm_byte" ->
  (fun x1691 x1693 ->
    let CI.CPointer x1692 = x1691 in
    libxed_stubs_229_xed3_operand_set_modrm_byte x1692 x1693)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_modep5" ->
  (fun x1694 x1696 ->
    let CI.CPointer x1695 = x1694 in
    libxed_stubs_228_xed3_operand_set_modep5 x1695 x1696)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_mode_short_ud0" ->
  (fun x1697 x1699 ->
    let CI.CPointer x1698 = x1697 in
    libxed_stubs_227_xed3_operand_set_mode_short_ud0 x1698 x1699)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_mode_first_prefix" ->
  (fun x1700 x1702 ->
    let CI.CPointer x1701 = x1700 in
    libxed_stubs_226_xed3_operand_set_mode_first_prefix x1701 x1702)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_mode" ->
  (fun x1703 x1705 ->
    let CI.CPointer x1704 = x1703 in
    libxed_stubs_225_xed3_operand_set_mode x1704 x1705)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_mod" ->
  (fun x1706 x1708 ->
    let CI.CPointer x1707 = x1706 in
    libxed_stubs_224_xed3_operand_set_mod x1707 x1708)
| Function
    (CI.Pointer _, Function (CI.Primitive CI.Uint16_t, Returns CI.Void)),
  "xed3_operand_set_mem_width" ->
  (fun x1709 x1711 ->
    let CI.CPointer x1710 = x1709 in
    libxed_stubs_223_xed3_operand_set_mem_width x1710 x1711)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_mem1" ->
  (fun x1712 x1714 ->
    let CI.CPointer x1713 = x1712 in
    libxed_stubs_222_xed3_operand_set_mem1 x1713 x1714)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_mem0" ->
  (fun x1715 x1717 ->
    let CI.CPointer x1716 = x1715 in
    libxed_stubs_221_xed3_operand_set_mem0 x1716 x1717)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_max_bytes" ->
  (fun x1718 x1720 ->
    let CI.CPointer x1719 = x1718 in
    libxed_stubs_220_xed3_operand_set_max_bytes x1719 x1720)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_mask" ->
  (fun x1721 x1723 ->
    let CI.CPointer x1722 = x1721 in
    libxed_stubs_219_xed3_operand_set_mask x1722 x1723)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_map" ->
  (fun x1724 x1726 ->
    let CI.CPointer x1725 = x1724 in
    libxed_stubs_218_xed3_operand_set_map x1725 x1726)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_lzcnt" ->
  (fun x1727 x1729 ->
    let CI.CPointer x1728 = x1727 in
    libxed_stubs_217_xed3_operand_set_lzcnt x1728 x1729)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_lock" ->
  (fun x1730 x1732 ->
    let CI.CPointer x1731 = x1730 in
    libxed_stubs_216_xed3_operand_set_lock x1731 x1732)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_llrc" ->
  (fun x1733 x1735 ->
    let CI.CPointer x1734 = x1733 in
    libxed_stubs_215_xed3_operand_set_llrc x1734 x1735)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_last_f2f3" ->
  (fun x1736 x1738 ->
    let CI.CPointer x1737 = x1736 in
    libxed_stubs_214_xed3_operand_set_last_f2f3 x1737 x1738)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1744; _};
           write = x1742; _},
        Returns CI.Void)),
  "xed3_operand_set_index" ->
  (fun x1739 x1741 ->
    let CI.CPointer x1740 = x1739 in
    let x1745 = x1744 (x1742 x1741) in
    let x1743 = x1745 in libxed_stubs_213_xed3_operand_set_index x1740 x1743)
| Function (CI.Pointer _, Function (CI.Primitive CI.Char, Returns CI.Void)),
  "xed3_operand_set_imm_width" ->
  (fun x1746 x1748 ->
    let CI.CPointer x1747 = x1746 in
    libxed_stubs_212_xed3_operand_set_imm_width x1747 x1748)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_imm1_bytes" ->
  (fun x1749 x1751 ->
    let CI.CPointer x1750 = x1749 in
    libxed_stubs_211_xed3_operand_set_imm1_bytes x1750 x1751)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_imm1" ->
  (fun x1752 x1754 ->
    let CI.CPointer x1753 = x1752 in
    libxed_stubs_210_xed3_operand_set_imm1 x1753 x1754)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_imm0signed" ->
  (fun x1755 x1757 ->
    let CI.CPointer x1756 = x1755 in
    libxed_stubs_209_xed3_operand_set_imm0signed x1756 x1757)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_imm0" ->
  (fun x1758 x1760 ->
    let CI.CPointer x1759 = x1758 in
    libxed_stubs_208_xed3_operand_set_imm0 x1759 x1760)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_ild_seg" ->
  (fun x1761 x1763 ->
    let CI.CPointer x1762 = x1761 in
    libxed_stubs_207_xed3_operand_set_ild_seg x1762 x1763)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_ild_f3" ->
  (fun x1764 x1766 ->
    let CI.CPointer x1765 = x1764 in
    libxed_stubs_206_xed3_operand_set_ild_f3 x1765 x1766)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_ild_f2" ->
  (fun x1767 x1769 ->
    let CI.CPointer x1768 = x1767 in
    libxed_stubs_205_xed3_operand_set_ild_f2 x1768 x1769)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1775; _};
           write = x1773; _},
        Returns CI.Void)),
  "xed3_operand_set_iclass" ->
  (fun x1770 x1772 ->
    let CI.CPointer x1771 = x1770 in
    let x1776 = x1775 (x1773 x1772) in
    let x1774 = x1776 in libxed_stubs_204_xed3_operand_set_iclass x1771 x1774)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_hint" ->
  (fun x1777 x1779 ->
    let CI.CPointer x1778 = x1777 in
    libxed_stubs_203_xed3_operand_set_hint x1778 x1779)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_has_sib" ->
  (fun x1780 x1782 ->
    let CI.CPointer x1781 = x1780 in
    libxed_stubs_202_xed3_operand_set_has_sib x1781 x1782)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_has_modrm" ->
  (fun x1783 x1785 ->
    let CI.CPointer x1784 = x1783 in
    libxed_stubs_201_xed3_operand_set_has_modrm x1784 x1785)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_has_egpr" ->
  (fun x1786 x1788 ->
    let CI.CPointer x1787 = x1786 in
    libxed_stubs_200_xed3_operand_set_has_egpr x1787 x1788)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_first_f2f3" ->
  (fun x1789 x1791 ->
    let CI.CPointer x1790 = x1789 in
    libxed_stubs_199_xed3_operand_set_first_f2f3 x1790 x1791)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_evvspace" ->
  (fun x1792 x1794 ->
    let CI.CPointer x1793 = x1792 in
    libxed_stubs_198_xed3_operand_set_evvspace x1793 x1794)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_esrc" ->
  (fun x1795 x1797 ->
    let CI.CPointer x1796 = x1795 in
    libxed_stubs_197_xed3_operand_set_esrc x1796 x1797)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1803; _};
           write = x1801; _},
        Returns CI.Void)),
  "xed3_operand_set_error" ->
  (fun x1798 x1800 ->
    let CI.CPointer x1799 = x1798 in
    let x1804 = x1803 (x1801 x1800) in
    let x1802 = x1804 in libxed_stubs_196_xed3_operand_set_error x1799 x1802)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_eosz" ->
  (fun x1805 x1807 ->
    let CI.CPointer x1806 = x1805 in
    libxed_stubs_195_xed3_operand_set_eosz x1806 x1807)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_encoder_preferred" ->
  (fun x1808 x1810 ->
    let CI.CPointer x1809 = x1808 in
    libxed_stubs_194_xed3_operand_set_encoder_preferred x1809 x1810)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_encode_force" ->
  (fun x1811 x1813 ->
    let CI.CPointer x1812 = x1811 in
    libxed_stubs_193_xed3_operand_set_encode_force x1812 x1813)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_enc_delete" ->
  (fun x1814 x1816 ->
    let CI.CPointer x1815 = x1814 in
    libxed_stubs_192_xed3_operand_set_enc_delete x1815 x1816)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_element_size" ->
  (fun x1817 x1819 ->
    let CI.CPointer x1818 = x1817 in
    libxed_stubs_191_xed3_operand_set_element_size x1818 x1819)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_easz" ->
  (fun x1820 x1822 ->
    let CI.CPointer x1821 = x1820 in
    libxed_stubs_190_xed3_operand_set_easz x1821 x1822)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_dummy" ->
  (fun x1823 x1825 ->
    let CI.CPointer x1824 = x1823 in
    libxed_stubs_189_xed3_operand_set_dummy x1824 x1825)
| Function (CI.Pointer _, Function (CI.Primitive CI.Char, Returns CI.Void)),
  "xed3_operand_set_disp_width" ->
  (fun x1826 x1828 ->
    let CI.CPointer x1827 = x1826 in
    libxed_stubs_188_xed3_operand_set_disp_width x1827 x1828)
| Function
    (CI.Pointer _, Function (CI.Primitive CI.Int64_t, Returns CI.Void)),
  "xed3_operand_set_disp" ->
  (fun x1829 x1831 ->
    let CI.CPointer x1830 = x1829 in
    libxed_stubs_187_xed3_operand_set_disp x1830 x1831)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_dfv" ->
  (fun x1832 x1834 ->
    let CI.CPointer x1833 = x1832 in
    libxed_stubs_186_xed3_operand_set_dfv x1833 x1834)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_df64" ->
  (fun x1835 x1837 ->
    let CI.CPointer x1836 = x1835 in
    libxed_stubs_185_xed3_operand_set_df64 x1836 x1837)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_df32" ->
  (fun x1838 x1840 ->
    let CI.CPointer x1839 = x1838 in
    libxed_stubs_184_xed3_operand_set_df32 x1839 x1840)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_default_seg" ->
  (fun x1841 x1843 ->
    let CI.CPointer x1842 = x1841 in
    libxed_stubs_183_xed3_operand_set_default_seg x1842 x1843)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_cldemote" ->
  (fun x1844 x1846 ->
    let CI.CPointer x1845 = x1844 in
    libxed_stubs_182_xed3_operand_set_cldemote x1845 x1846)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1852; _};
           write = x1850; _},
        Returns CI.Void)),
  "xed3_operand_set_chip" ->
  (fun x1847 x1849 ->
    let CI.CPointer x1848 = x1847 in
    let x1853 = x1852 (x1850 x1849) in
    let x1851 = x1853 in libxed_stubs_181_xed3_operand_set_chip x1848 x1851)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_cet" ->
  (fun x1854 x1856 ->
    let CI.CPointer x1855 = x1854 in
    libxed_stubs_180_xed3_operand_set_cet x1855 x1856)
| Function (CI.Pointer _, Function (CI.Primitive CI.Char, Returns CI.Void)),
  "xed3_operand_set_brdisp_width" ->
  (fun x1857 x1859 ->
    let CI.CPointer x1858 = x1857 in
    libxed_stubs_179_xed3_operand_set_brdisp_width x1858 x1859)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_bcrc" ->
  (fun x1860 x1862 ->
    let CI.CPointer x1861 = x1860 in
    libxed_stubs_178_xed3_operand_set_bcrc x1861 x1862)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_bcast" ->
  (fun x1863 x1865 ->
    let CI.CPointer x1864 = x1863 in
    libxed_stubs_177_xed3_operand_set_bcast x1864 x1865)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1871; _};
           write = x1869; _},
        Returns CI.Void)),
  "xed3_operand_set_base1" ->
  (fun x1866 x1868 ->
    let CI.CPointer x1867 = x1866 in
    let x1872 = x1871 (x1869 x1868) in
    let x1870 = x1872 in libxed_stubs_176_xed3_operand_set_base1 x1867 x1870)
| Function
    (CI.Pointer _,
     Function
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; write = x1878; _};
           write = x1876; _},
        Returns CI.Void)),
  "xed3_operand_set_base0" ->
  (fun x1873 x1875 ->
    let CI.CPointer x1874 = x1873 in
    let x1879 = x1878 (x1876 x1875) in
    let x1877 = x1879 in libxed_stubs_175_xed3_operand_set_base0 x1874 x1877)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_asz" ->
  (fun x1880 x1882 ->
    let CI.CPointer x1881 = x1880 in
    libxed_stubs_174_xed3_operand_set_asz x1881 x1882)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_amd3dnow" ->
  (fun x1883 x1885 ->
    let CI.CPointer x1884 = x1883 in
    libxed_stubs_173_xed3_operand_set_amd3dnow x1884 x1885)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_agen" ->
  (fun x1886 x1888 ->
    let CI.CPointer x1887 = x1886 in
    libxed_stubs_172_xed3_operand_set_agen x1887 x1888)
| Function (CI.Pointer _, Function (CI.Primitive CI.Int, Returns CI.Void)),
  "xed3_operand_set_absbr" ->
  (fun x1889 x1891 ->
    let CI.CPointer x1890 = x1889 in
    libxed_stubs_171_xed3_operand_set_absbr x1890 x1891)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_zeroing" ->
  (fun x1892 ->
    let CI.CPointer x1893 = x1892 in
    libxed_stubs_170_xed3_operand_get_zeroing x1893)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_wbnoinvd" ->
  (fun x1894 ->
    let CI.CPointer x1895 = x1894 in
    libxed_stubs_169_xed3_operand_get_wbnoinvd x1895)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_vl_ign" ->
  (fun x1896 ->
    let CI.CPointer x1897 = x1896 in
    libxed_stubs_168_xed3_operand_get_vl_ign x1897)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_vl" ->
  (fun x1898 ->
    let CI.CPointer x1899 = x1898 in
    libxed_stubs_167_xed3_operand_get_vl x1899)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_vexvalid" ->
  (fun x1900 ->
    let CI.CPointer x1901 = x1900 in
    libxed_stubs_166_xed3_operand_get_vexvalid x1901)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_vexdest4" ->
  (fun x1902 ->
    let CI.CPointer x1903 = x1902 in
    libxed_stubs_165_xed3_operand_get_vexdest4 x1903)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_vexdest3" ->
  (fun x1904 ->
    let CI.CPointer x1905 = x1904 in
    libxed_stubs_164_xed3_operand_get_vexdest3 x1905)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_vexdest210" ->
  (fun x1906 ->
    let CI.CPointer x1907 = x1906 in
    libxed_stubs_163_xed3_operand_get_vexdest210 x1907)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_vex_prefix" ->
  (fun x1908 ->
    let CI.CPointer x1909 = x1908 in
    libxed_stubs_162_xed3_operand_get_vex_prefix x1909)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_vex_c4" ->
  (fun x1910 ->
    let CI.CPointer x1911 = x1910 in
    libxed_stubs_161_xed3_operand_get_vex_c4 x1911)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_using_default_segment1" ->
  (fun x1912 ->
    let CI.CPointer x1913 = x1912 in
    libxed_stubs_160_xed3_operand_get_using_default_segment1 x1913)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_using_default_segment0" ->
  (fun x1914 ->
    let CI.CPointer x1915 = x1914 in
    libxed_stubs_159_xed3_operand_get_using_default_segment0 x1915)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Char)),
  "xed3_operand_get_uimm1" ->
  (fun x1916 ->
    let CI.CPointer x1917 = x1916 in
    libxed_stubs_158_xed3_operand_get_uimm1 x1917)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint64_t)),
  "xed3_operand_get_uimm0" ->
  (fun x1918 ->
    let CI.CPointer x1919 = x1918 in
    libxed_stubs_157_xed3_operand_get_uimm0 x1919)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_ubit" ->
  (fun x1920 ->
    let CI.CPointer x1921 = x1920 in
    libxed_stubs_156_xed3_operand_get_ubit x1921)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_tzcnt" ->
  (fun x1922 ->
    let CI.CPointer x1923 = x1922 in
    libxed_stubs_155_xed3_operand_get_tzcnt x1923)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_srm" ->
  (fun x1924 ->
    let CI.CPointer x1925 = x1924 in
    libxed_stubs_154_xed3_operand_get_srm x1925)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_smode" ->
  (fun x1926 ->
    let CI.CPointer x1927 = x1926 in
    libxed_stubs_153_xed3_operand_get_smode x1927)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_skip_osz" ->
  (fun x1928 ->
    let CI.CPointer x1929 = x1928 in
    libxed_stubs_152_xed3_operand_get_skip_osz x1929)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_sibscale" ->
  (fun x1930 ->
    let CI.CPointer x1931 = x1930 in
    libxed_stubs_151_xed3_operand_get_sibscale x1931)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_sibindex" ->
  (fun x1932 ->
    let CI.CPointer x1933 = x1932 in
    libxed_stubs_150_xed3_operand_get_sibindex x1933)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_sibbase" ->
  (fun x1934 ->
    let CI.CPointer x1935 = x1934 in
    libxed_stubs_149_xed3_operand_get_sibbase x1935)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_seg_ovd" ->
  (fun x1936 ->
    let CI.CPointer x1937 = x1936 in
    libxed_stubs_148_xed3_operand_get_seg_ovd x1937)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1940; _};
           read = x1941; _})),
  "xed3_operand_get_seg1" ->
  (fun x1938 ->
    let CI.CPointer x1939 = x1938 in
    x1941 (x1940 (libxed_stubs_147_xed3_operand_get_seg1 x1939)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1944; _};
           read = x1945; _})),
  "xed3_operand_get_seg0" ->
  (fun x1942 ->
    let CI.CPointer x1943 = x1942 in
    x1945 (x1944 (libxed_stubs_146_xed3_operand_get_seg0 x1943)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_scc" ->
  (fun x1946 ->
    let CI.CPointer x1947 = x1946 in
    libxed_stubs_145_xed3_operand_get_scc x1947)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_scale" ->
  (fun x1948 ->
    let CI.CPointer x1949 = x1948 in
    libxed_stubs_144_xed3_operand_get_scale x1949)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_sae" ->
  (fun x1950 ->
    let CI.CPointer x1951 = x1950 in
    libxed_stubs_143_xed3_operand_get_sae x1951)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_roundc" ->
  (fun x1952 ->
    let CI.CPointer x1953 = x1952 in
    libxed_stubs_142_xed3_operand_get_roundc x1953)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rm" ->
  (fun x1954 ->
    let CI.CPointer x1955 = x1954 in
    libxed_stubs_141_xed3_operand_get_rm x1955)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rexx4" ->
  (fun x1956 ->
    let CI.CPointer x1957 = x1956 in
    libxed_stubs_140_xed3_operand_get_rexx4 x1957)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rexx" ->
  (fun x1958 ->
    let CI.CPointer x1959 = x1958 in
    libxed_stubs_139_xed3_operand_get_rexx x1959)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rexw" ->
  (fun x1960 ->
    let CI.CPointer x1961 = x1960 in
    libxed_stubs_138_xed3_operand_get_rexw x1961)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rexr4" ->
  (fun x1962 ->
    let CI.CPointer x1963 = x1962 in
    libxed_stubs_137_xed3_operand_get_rexr4 x1963)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rexr" ->
  (fun x1964 ->
    let CI.CPointer x1965 = x1964 in
    libxed_stubs_136_xed3_operand_get_rexr x1965)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rexb4" ->
  (fun x1966 ->
    let CI.CPointer x1967 = x1966 in
    libxed_stubs_135_xed3_operand_get_rexb4 x1967)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rexb" ->
  (fun x1968 ->
    let CI.CPointer x1969 = x1968 in
    libxed_stubs_134_xed3_operand_get_rexb x1969)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rex2" ->
  (fun x1970 ->
    let CI.CPointer x1971 = x1970 in
    libxed_stubs_133_xed3_operand_get_rex2 x1971)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rex" ->
  (fun x1972 ->
    let CI.CPointer x1973 = x1972 in
    libxed_stubs_132_xed3_operand_get_rex x1973)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_rep" ->
  (fun x1974 ->
    let CI.CPointer x1975 = x1974 in
    libxed_stubs_131_xed3_operand_get_rep x1975)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_relbr" ->
  (fun x1976 ->
    let CI.CPointer x1977 = x1976 in
    libxed_stubs_130_xed3_operand_get_relbr x1977)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1980; _};
           read = x1981; _})),
  "xed3_operand_get_reg9" ->
  (fun x1978 ->
    let CI.CPointer x1979 = x1978 in
    x1981 (x1980 (libxed_stubs_129_xed3_operand_get_reg9 x1979)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1984; _};
           read = x1985; _})),
  "xed3_operand_get_reg8" ->
  (fun x1982 ->
    let CI.CPointer x1983 = x1982 in
    x1985 (x1984 (libxed_stubs_128_xed3_operand_get_reg8 x1983)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1988; _};
           read = x1989; _})),
  "xed3_operand_get_reg7" ->
  (fun x1986 ->
    let CI.CPointer x1987 = x1986 in
    x1989 (x1988 (libxed_stubs_127_xed3_operand_get_reg7 x1987)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1992; _};
           read = x1993; _})),
  "xed3_operand_get_reg6" ->
  (fun x1990 ->
    let CI.CPointer x1991 = x1990 in
    x1993 (x1992 (libxed_stubs_126_xed3_operand_get_reg6 x1991)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x1996; _};
           read = x1997; _})),
  "xed3_operand_get_reg5" ->
  (fun x1994 ->
    let CI.CPointer x1995 = x1994 in
    x1997 (x1996 (libxed_stubs_125_xed3_operand_get_reg5 x1995)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2000; _};
           read = x2001; _})),
  "xed3_operand_get_reg4" ->
  (fun x1998 ->
    let CI.CPointer x1999 = x1998 in
    x2001 (x2000 (libxed_stubs_124_xed3_operand_get_reg4 x1999)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2004; _};
           read = x2005; _})),
  "xed3_operand_get_reg3" ->
  (fun x2002 ->
    let CI.CPointer x2003 = x2002 in
    x2005 (x2004 (libxed_stubs_123_xed3_operand_get_reg3 x2003)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2008; _};
           read = x2009; _})),
  "xed3_operand_get_reg2" ->
  (fun x2006 ->
    let CI.CPointer x2007 = x2006 in
    x2009 (x2008 (libxed_stubs_122_xed3_operand_get_reg2 x2007)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2012; _};
           read = x2013; _})),
  "xed3_operand_get_reg1" ->
  (fun x2010 ->
    let CI.CPointer x2011 = x2010 in
    x2013 (x2012 (libxed_stubs_121_xed3_operand_get_reg1 x2011)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2016; _};
           read = x2017; _})),
  "xed3_operand_get_reg0" ->
  (fun x2014 ->
    let CI.CPointer x2015 = x2014 in
    x2017 (x2016 (libxed_stubs_120_xed3_operand_get_reg0 x2015)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_reg" ->
  (fun x2018 ->
    let CI.CPointer x2019 = x2018 in
    libxed_stubs_119_xed3_operand_get_reg x2019)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_realmode" ->
  (fun x2020 ->
    let CI.CPointer x2021 = x2020 in
    libxed_stubs_118_xed3_operand_get_realmode x2021)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_ptr" ->
  (fun x2022 ->
    let CI.CPointer x2023 = x2022 in
    libxed_stubs_117_xed3_operand_get_ptr x2023)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_prefix66" ->
  (fun x2024 ->
    let CI.CPointer x2025 = x2024 in
    libxed_stubs_116_xed3_operand_get_prefix66 x2025)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_prefetchrst" ->
  (fun x2026 ->
    let CI.CPointer x2027 = x2026 in
    libxed_stubs_115_xed3_operand_get_prefetchrst x2027)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_prefetchit" ->
  (fun x2028 ->
    let CI.CPointer x2029 = x2028 in
    libxed_stubs_114_xed3_operand_get_prefetchit x2029)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_pos_sib" ->
  (fun x2030 ->
    let CI.CPointer x2031 = x2030 in
    libxed_stubs_113_xed3_operand_get_pos_sib x2031)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_pos_nominal_opcode" ->
  (fun x2032 ->
    let CI.CPointer x2033 = x2032 in
    libxed_stubs_112_xed3_operand_get_pos_nominal_opcode x2033)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_pos_modrm" ->
  (fun x2034 ->
    let CI.CPointer x2035 = x2034 in
    libxed_stubs_111_xed3_operand_get_pos_modrm x2035)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_pos_imm1" ->
  (fun x2036 ->
    let CI.CPointer x2037 = x2036 in
    libxed_stubs_110_xed3_operand_get_pos_imm1 x2037)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_pos_imm" ->
  (fun x2038 ->
    let CI.CPointer x2039 = x2038 in
    libxed_stubs_109_xed3_operand_get_pos_imm x2039)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_pos_disp" ->
  (fun x2040 ->
    let CI.CPointer x2041 = x2040 in
    libxed_stubs_108_xed3_operand_get_pos_disp x2041)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_p4" ->
  (fun x2042 ->
    let CI.CPointer x2043 = x2042 in
    libxed_stubs_107_xed3_operand_get_p4 x2043)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2046; _};
           read = x2047; _})),
  "xed3_operand_get_outreg" ->
  (fun x2044 ->
    let CI.CPointer x2045 = x2044 in
    x2047 (x2046 (libxed_stubs_106_xed3_operand_get_outreg x2045)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_out_of_bytes" ->
  (fun x2048 ->
    let CI.CPointer x2049 = x2048 in
    libxed_stubs_105_xed3_operand_get_out_of_bytes x2049)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_osz" ->
  (fun x2050 ->
    let CI.CPointer x2051 = x2050 in
    libxed_stubs_104_xed3_operand_get_osz x2051)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_nseg_prefixes" ->
  (fun x2052 ->
    let CI.CPointer x2053 = x2052 in
    libxed_stubs_103_xed3_operand_get_nseg_prefixes x2053)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_nrexes" ->
  (fun x2054 ->
    let CI.CPointer x2055 = x2054 in
    libxed_stubs_102_xed3_operand_get_nrexes x2055)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_nprefixes" ->
  (fun x2056 ->
    let CI.CPointer x2057 = x2056 in
    libxed_stubs_101_xed3_operand_get_nprefixes x2057)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_norex2" ->
  (fun x2058 ->
    let CI.CPointer x2059 = x2058 in
    libxed_stubs_100_xed3_operand_get_norex2 x2059)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_norex" ->
  (fun x2060 ->
    let CI.CPointer x2061 = x2060 in
    libxed_stubs_99_xed3_operand_get_norex x2061)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_nominal_opcode" ->
  (fun x2062 ->
    let CI.CPointer x2063 = x2062 in
    libxed_stubs_98_xed3_operand_get_nominal_opcode x2063)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_no_vex" ->
  (fun x2064 ->
    let CI.CPointer x2065 = x2064 in
    libxed_stubs_97_xed3_operand_get_no_vex x2065)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_no_evex" ->
  (fun x2066 ->
    let CI.CPointer x2067 = x2066 in
    libxed_stubs_96_xed3_operand_get_no_evex x2067)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_no_apx" ->
  (fun x2068 ->
    let CI.CPointer x2069 = x2068 in
    libxed_stubs_95_xed3_operand_get_no_apx x2069)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_nf" ->
  (fun x2070 ->
    let CI.CPointer x2071 = x2070 in
    libxed_stubs_94_xed3_operand_get_nf x2071)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_nelem" ->
  (fun x2072 ->
    let CI.CPointer x2073 = x2072 in
    libxed_stubs_93_xed3_operand_get_nelem x2073)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_needrex" ->
  (fun x2074 ->
    let CI.CPointer x2075 = x2074 in
    libxed_stubs_92_xed3_operand_get_needrex x2075)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_need_sib" ->
  (fun x2076 ->
    let CI.CPointer x2077 = x2076 in
    libxed_stubs_91_xed3_operand_get_need_sib x2077)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_need_memdisp" ->
  (fun x2078 ->
    let CI.CPointer x2079 = x2078 in
    libxed_stubs_90_xed3_operand_get_need_memdisp x2079)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_nd" ->
  (fun x2080 ->
    let CI.CPointer x2081 = x2080 in
    libxed_stubs_89_xed3_operand_get_nd x2081)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_must_use_evex" ->
  (fun x2082 ->
    let CI.CPointer x2083 = x2082 in
    libxed_stubs_88_xed3_operand_get_must_use_evex x2083)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_mpxmode" ->
  (fun x2084 ->
    let CI.CPointer x2085 = x2084 in
    libxed_stubs_87_xed3_operand_get_mpxmode x2085)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_modrm_byte" ->
  (fun x2086 ->
    let CI.CPointer x2087 = x2086 in
    libxed_stubs_86_xed3_operand_get_modrm_byte x2087)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_modep5" ->
  (fun x2088 ->
    let CI.CPointer x2089 = x2088 in
    libxed_stubs_85_xed3_operand_get_modep5 x2089)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_mode_short_ud0" ->
  (fun x2090 ->
    let CI.CPointer x2091 = x2090 in
    libxed_stubs_84_xed3_operand_get_mode_short_ud0 x2091)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_mode_first_prefix" ->
  (fun x2092 ->
    let CI.CPointer x2093 = x2092 in
    libxed_stubs_83_xed3_operand_get_mode_first_prefix x2093)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_mode" ->
  (fun x2094 ->
    let CI.CPointer x2095 = x2094 in
    libxed_stubs_82_xed3_operand_get_mode x2095)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_mod" ->
  (fun x2096 ->
    let CI.CPointer x2097 = x2096 in
    libxed_stubs_81_xed3_operand_get_mod x2097)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Uint16_t)),
  "xed3_operand_get_mem_width" ->
  (fun x2098 ->
    let CI.CPointer x2099 = x2098 in
    libxed_stubs_80_xed3_operand_get_mem_width x2099)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_mem1" ->
  (fun x2100 ->
    let CI.CPointer x2101 = x2100 in
    libxed_stubs_79_xed3_operand_get_mem1 x2101)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_mem0" ->
  (fun x2102 ->
    let CI.CPointer x2103 = x2102 in
    libxed_stubs_78_xed3_operand_get_mem0 x2103)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_max_bytes" ->
  (fun x2104 ->
    let CI.CPointer x2105 = x2104 in
    libxed_stubs_77_xed3_operand_get_max_bytes x2105)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_mask" ->
  (fun x2106 ->
    let CI.CPointer x2107 = x2106 in
    libxed_stubs_76_xed3_operand_get_mask x2107)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_map" ->
  (fun x2108 ->
    let CI.CPointer x2109 = x2108 in
    libxed_stubs_75_xed3_operand_get_map x2109)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_lzcnt" ->
  (fun x2110 ->
    let CI.CPointer x2111 = x2110 in
    libxed_stubs_74_xed3_operand_get_lzcnt x2111)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_lock" ->
  (fun x2112 ->
    let CI.CPointer x2113 = x2112 in
    libxed_stubs_73_xed3_operand_get_lock x2113)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_llrc" ->
  (fun x2114 ->
    let CI.CPointer x2115 = x2114 in
    libxed_stubs_72_xed3_operand_get_llrc x2115)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_last_f2f3" ->
  (fun x2116 ->
    let CI.CPointer x2117 = x2116 in
    libxed_stubs_71_xed3_operand_get_last_f2f3 x2117)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2120; _};
           read = x2121; _})),
  "xed3_operand_get_index" ->
  (fun x2118 ->
    let CI.CPointer x2119 = x2118 in
    x2121 (x2120 (libxed_stubs_70_xed3_operand_get_index x2119)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Char)),
  "xed3_operand_get_imm_width" ->
  (fun x2122 ->
    let CI.CPointer x2123 = x2122 in
    libxed_stubs_69_xed3_operand_get_imm_width x2123)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_imm1_bytes" ->
  (fun x2124 ->
    let CI.CPointer x2125 = x2124 in
    libxed_stubs_68_xed3_operand_get_imm1_bytes x2125)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_imm1" ->
  (fun x2126 ->
    let CI.CPointer x2127 = x2126 in
    libxed_stubs_67_xed3_operand_get_imm1 x2127)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_imm0signed" ->
  (fun x2128 ->
    let CI.CPointer x2129 = x2128 in
    libxed_stubs_66_xed3_operand_get_imm0signed x2129)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_imm0" ->
  (fun x2130 ->
    let CI.CPointer x2131 = x2130 in
    libxed_stubs_65_xed3_operand_get_imm0 x2131)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_ild_seg" ->
  (fun x2132 ->
    let CI.CPointer x2133 = x2132 in
    libxed_stubs_64_xed3_operand_get_ild_seg x2133)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_ild_f3" ->
  (fun x2134 ->
    let CI.CPointer x2135 = x2134 in
    libxed_stubs_63_xed3_operand_get_ild_f3 x2135)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_ild_f2" ->
  (fun x2136 ->
    let CI.CPointer x2137 = x2136 in
    libxed_stubs_62_xed3_operand_get_ild_f2 x2137)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2140; _};
           read = x2141; _})),
  "xed3_operand_get_iclass" ->
  (fun x2138 ->
    let CI.CPointer x2139 = x2138 in
    x2141 (x2140 (libxed_stubs_61_xed3_operand_get_iclass x2139)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_hint" ->
  (fun x2142 ->
    let CI.CPointer x2143 = x2142 in
    libxed_stubs_60_xed3_operand_get_hint x2143)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_has_sib" ->
  (fun x2144 ->
    let CI.CPointer x2145 = x2144 in
    libxed_stubs_59_xed3_operand_get_has_sib x2145)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_has_modrm" ->
  (fun x2146 ->
    let CI.CPointer x2147 = x2146 in
    libxed_stubs_58_xed3_operand_get_has_modrm x2147)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_has_egpr" ->
  (fun x2148 ->
    let CI.CPointer x2149 = x2148 in
    libxed_stubs_57_xed3_operand_get_has_egpr x2149)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_first_f2f3" ->
  (fun x2150 ->
    let CI.CPointer x2151 = x2150 in
    libxed_stubs_56_xed3_operand_get_first_f2f3 x2151)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_evvspace" ->
  (fun x2152 ->
    let CI.CPointer x2153 = x2152 in
    libxed_stubs_55_xed3_operand_get_evvspace x2153)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_esrc" ->
  (fun x2154 ->
    let CI.CPointer x2155 = x2154 in
    libxed_stubs_54_xed3_operand_get_esrc x2155)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2158; _};
           read = x2159; _})),
  "xed3_operand_get_error" ->
  (fun x2156 ->
    let CI.CPointer x2157 = x2156 in
    x2159 (x2158 (libxed_stubs_53_xed3_operand_get_error x2157)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_eosz" ->
  (fun x2160 ->
    let CI.CPointer x2161 = x2160 in
    libxed_stubs_52_xed3_operand_get_eosz x2161)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_encoder_preferred" ->
  (fun x2162 ->
    let CI.CPointer x2163 = x2162 in
    libxed_stubs_51_xed3_operand_get_encoder_preferred x2163)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_encode_force" ->
  (fun x2164 ->
    let CI.CPointer x2165 = x2164 in
    libxed_stubs_50_xed3_operand_get_encode_force x2165)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_enc_delete" ->
  (fun x2166 ->
    let CI.CPointer x2167 = x2166 in
    libxed_stubs_49_xed3_operand_get_enc_delete x2167)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_element_size" ->
  (fun x2168 ->
    let CI.CPointer x2169 = x2168 in
    libxed_stubs_48_xed3_operand_get_element_size x2169)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_easz" ->
  (fun x2170 ->
    let CI.CPointer x2171 = x2170 in
    libxed_stubs_47_xed3_operand_get_easz x2171)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_dummy" ->
  (fun x2172 ->
    let CI.CPointer x2173 = x2172 in
    libxed_stubs_46_xed3_operand_get_dummy x2173)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Char)),
  "xed3_operand_get_disp_width" ->
  (fun x2174 ->
    let CI.CPointer x2175 = x2174 in
    libxed_stubs_45_xed3_operand_get_disp_width x2175)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int64_t)),
  "xed3_operand_get_disp" ->
  (fun x2176 ->
    let CI.CPointer x2177 = x2176 in
    libxed_stubs_44_xed3_operand_get_disp x2177)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_dfv" ->
  (fun x2178 ->
    let CI.CPointer x2179 = x2178 in
    libxed_stubs_43_xed3_operand_get_dfv x2179)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_df64" ->
  (fun x2180 ->
    let CI.CPointer x2181 = x2180 in
    libxed_stubs_42_xed3_operand_get_df64 x2181)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_df32" ->
  (fun x2182 ->
    let CI.CPointer x2183 = x2182 in
    libxed_stubs_41_xed3_operand_get_df32 x2183)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_default_seg" ->
  (fun x2184 ->
    let CI.CPointer x2185 = x2184 in
    libxed_stubs_40_xed3_operand_get_default_seg x2185)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_cldemote" ->
  (fun x2186 ->
    let CI.CPointer x2187 = x2186 in
    libxed_stubs_39_xed3_operand_get_cldemote x2187)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2190; _};
           read = x2191; _})),
  "xed3_operand_get_chip" ->
  (fun x2188 ->
    let CI.CPointer x2189 = x2188 in
    x2191 (x2190 (libxed_stubs_38_xed3_operand_get_chip x2189)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_cet" ->
  (fun x2192 ->
    let CI.CPointer x2193 = x2192 in
    libxed_stubs_37_xed3_operand_get_cet x2193)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Char)),
  "xed3_operand_get_brdisp_width" ->
  (fun x2194 ->
    let CI.CPointer x2195 = x2194 in
    libxed_stubs_36_xed3_operand_get_brdisp_width x2195)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_bcrc" ->
  (fun x2196 ->
    let CI.CPointer x2197 = x2196 in
    libxed_stubs_35_xed3_operand_get_bcrc x2197)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_bcast" ->
  (fun x2198 ->
    let CI.CPointer x2199 = x2198 in
    libxed_stubs_34_xed3_operand_get_bcast x2199)
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2202; _};
           read = x2203; _})),
  "xed3_operand_get_base1" ->
  (fun x2200 ->
    let CI.CPointer x2201 = x2200 in
    x2203 (x2202 (libxed_stubs_33_xed3_operand_get_base1 x2201)))
| Function
    (CI.Pointer _,
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2206; _};
           read = x2207; _})),
  "xed3_operand_get_base0" ->
  (fun x2204 ->
    let CI.CPointer x2205 = x2204 in
    x2207 (x2206 (libxed_stubs_32_xed3_operand_get_base0 x2205)))
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_asz" ->
  (fun x2208 ->
    let CI.CPointer x2209 = x2208 in
    libxed_stubs_31_xed3_operand_get_asz x2209)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_amd3dnow" ->
  (fun x2210 ->
    let CI.CPointer x2211 = x2210 in
    libxed_stubs_30_xed3_operand_get_amd3dnow x2211)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_agen" ->
  (fun x2212 ->
    let CI.CPointer x2213 = x2212 in
    libxed_stubs_29_xed3_operand_get_agen x2213)
| Function (CI.Pointer _, Returns (CI.Primitive CI.Int)),
  "xed3_operand_get_absbr" ->
  (fun x2214 ->
    let CI.CPointer x2215 = x2214 in
    libxed_stubs_28_xed3_operand_get_absbr x2215)
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2217; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2220; _};
           read = x2221; _})),
  "str2xed_syntax_enum_t" ->
  (fun x2216 ->
    let CI.CPointer x2219 = x2217 x2216 in
    let x2218 = x2219 in
    x2221 (x2220 (libxed_stubs_27_str2xed_syntax_enum_t x2218)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2223; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2226; _};
           read = x2227; _})),
  "str2xed_reg_enum_t" ->
  (fun x2222 ->
    let CI.CPointer x2225 = x2223 x2222 in
    let x2224 = x2225 in
    x2227 (x2226 (libxed_stubs_26_str2xed_reg_enum_t x2224)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2229; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2232; _};
           read = x2233; _})),
  "str2xed_reg_class_enum_t" ->
  (fun x2228 ->
    let CI.CPointer x2231 = x2229 x2228 in
    let x2230 = x2231 in
    x2233 (x2232 (libxed_stubs_25_str2xed_reg_class_enum_t x2230)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2235; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2238; _};
           read = x2239; _})),
  "str2xed_operand_width_enum_t" ->
  (fun x2234 ->
    let CI.CPointer x2237 = x2235 x2234 in
    let x2236 = x2237 in
    x2239 (x2238 (libxed_stubs_24_str2xed_operand_width_enum_t x2236)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2241; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2244; _};
           read = x2245; _})),
  "str2xed_operand_visibility_enum_t" ->
  (fun x2240 ->
    let CI.CPointer x2243 = x2241 x2240 in
    let x2242 = x2243 in
    x2245 (x2244 (libxed_stubs_23_str2xed_operand_visibility_enum_t x2242)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2247; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2250; _};
           read = x2251; _})),
  "str2xed_operand_type_enum_t" ->
  (fun x2246 ->
    let CI.CPointer x2249 = x2247 x2246 in
    let x2248 = x2249 in
    x2251 (x2250 (libxed_stubs_22_str2xed_operand_type_enum_t x2248)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2253; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2256; _};
           read = x2257; _})),
  "str2xed_operand_enum_t" ->
  (fun x2252 ->
    let CI.CPointer x2255 = x2253 x2252 in
    let x2254 = x2255 in
    x2257 (x2256 (libxed_stubs_21_str2xed_operand_enum_t x2254)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2259; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2262; _};
           read = x2263; _})),
  "str2xed_operand_element_xtype_enum_t" ->
  (fun x2258 ->
    let CI.CPointer x2261 = x2259 x2258 in
    let x2260 = x2261 in
    x2263
    (x2262 (libxed_stubs_20_str2xed_operand_element_xtype_enum_t x2260)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2265; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2268; _};
           read = x2269; _})),
  "str2xed_operand_element_type_enum_t" ->
  (fun x2264 ->
    let CI.CPointer x2267 = x2265 x2264 in
    let x2266 = x2267 in
    x2269 (x2268 (libxed_stubs_19_str2xed_operand_element_type_enum_t x2266)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2271; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2274; _};
           read = x2275; _})),
  "str2xed_operand_convert_enum_t" ->
  (fun x2270 ->
    let CI.CPointer x2273 = x2271 x2270 in
    let x2272 = x2273 in
    x2275 (x2274 (libxed_stubs_18_str2xed_operand_convert_enum_t x2272)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2277; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2280; _};
           read = x2281; _})),
  "str2xed_operand_action_enum_t" ->
  (fun x2276 ->
    let CI.CPointer x2279 = x2277 x2276 in
    let x2278 = x2279 in
    x2281 (x2280 (libxed_stubs_17_str2xed_operand_action_enum_t x2278)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2283; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2286; _};
           read = x2287; _})),
  "str2xed_nonterminal_enum_t" ->
  (fun x2282 ->
    let CI.CPointer x2285 = x2283 x2282 in
    let x2284 = x2285 in
    x2287 (x2286 (libxed_stubs_16_str2xed_nonterminal_enum_t x2284)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2289; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2292; _};
           read = x2293; _})),
  "str2xed_machine_mode_enum_t" ->
  (fun x2288 ->
    let CI.CPointer x2291 = x2289 x2288 in
    let x2290 = x2291 in
    x2293 (x2292 (libxed_stubs_15_str2xed_machine_mode_enum_t x2290)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2295; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2298; _};
           read = x2299; _})),
  "str2xed_isa_set_enum_t" ->
  (fun x2294 ->
    let CI.CPointer x2297 = x2295 x2294 in
    let x2296 = x2297 in
    x2299 (x2298 (libxed_stubs_14_str2xed_isa_set_enum_t x2296)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2301; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2304; _};
           read = x2305; _})),
  "str2xed_iform_enum_t" ->
  (fun x2300 ->
    let CI.CPointer x2303 = x2301 x2300 in
    let x2302 = x2303 in
    x2305 (x2304 (libxed_stubs_13_str2xed_iform_enum_t x2302)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2307; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2310; _};
           read = x2311; _})),
  "str2xed_iclass_enum_t" ->
  (fun x2306 ->
    let CI.CPointer x2309 = x2307 x2306 in
    let x2308 = x2309 in
    x2311 (x2310 (libxed_stubs_12_str2xed_iclass_enum_t x2308)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2313; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2316; _};
           read = x2317; _})),
  "str2xed_flag_enum_t" ->
  (fun x2312 ->
    let CI.CPointer x2315 = x2313 x2312 in
    let x2314 = x2315 in
    x2317 (x2316 (libxed_stubs_11_str2xed_flag_enum_t x2314)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2319; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2322; _};
           read = x2323; _})),
  "str2xed_flag_action_enum_t" ->
  (fun x2318 ->
    let CI.CPointer x2321 = x2319 x2318 in
    let x2320 = x2321 in
    x2323 (x2322 (libxed_stubs_10_str2xed_flag_action_enum_t x2320)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2325; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2328; _};
           read = x2329; _})),
  "str2xed_extension_enum_t" ->
  (fun x2324 ->
    let CI.CPointer x2327 = x2325 x2324 in
    let x2326 = x2327 in
    x2329 (x2328 (libxed_stubs_9_str2xed_extension_enum_t x2326)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2331; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2334; _};
           read = x2335; _})),
  "str2xed_exception_enum_t" ->
  (fun x2330 ->
    let CI.CPointer x2333 = x2331 x2330 in
    let x2332 = x2333 in
    x2335 (x2334 (libxed_stubs_8_str2xed_exception_enum_t x2332)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2337; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2340; _};
           read = x2341; _})),
  "str2xed_error_enum_t" ->
  (fun x2336 ->
    let CI.CPointer x2339 = x2337 x2336 in
    let x2338 = x2339 in
    x2341 (x2340 (libxed_stubs_7_str2xed_error_enum_t x2338)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2343; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2346; _};
           read = x2347; _})),
  "str2xed_cpuid_rec_enum_t" ->
  (fun x2342 ->
    let CI.CPointer x2345 = x2343 x2342 in
    let x2344 = x2345 in
    x2347 (x2346 (libxed_stubs_6_str2xed_cpuid_rec_enum_t x2344)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2349; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2352; _};
           read = x2353; _})),
  "str2xed_cpuid_group_enum_t" ->
  (fun x2348 ->
    let CI.CPointer x2351 = x2349 x2348 in
    let x2350 = x2351 in
    x2353 (x2352 (libxed_stubs_5_str2xed_cpuid_group_enum_t x2350)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2355; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2358; _};
           read = x2359; _})),
  "str2xed_chip_enum_t" ->
  (fun x2354 ->
    let CI.CPointer x2357 = x2355 x2354 in
    let x2356 = x2357 in
    x2359 (x2358 (libxed_stubs_4_str2xed_chip_enum_t x2356)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2361; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2364; _};
           read = x2365; _})),
  "str2xed_category_enum_t" ->
  (fun x2360 ->
    let CI.CPointer x2363 = x2361 x2360 in
    let x2362 = x2363 in
    x2365 (x2364 (libxed_stubs_3_str2xed_category_enum_t x2362)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2367; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2370; _};
           read = x2371; _})),
  "str2xed_attribute_enum_t" ->
  (fun x2366 ->
    let CI.CPointer x2369 = x2367 x2366 in
    let x2368 = x2369 in
    x2371 (x2370 (libxed_stubs_2_str2xed_attribute_enum_t x2368)))
| Function
    (CI.View {CI.ty = CI.Pointer _; write = x2373; _},
     Returns
       (CI.View
          {CI.ty = CI.View {CI.ty = CI.Primitive CI.Uint; read = x2376; _};
           read = x2377; _})),
  "str2xed_address_width_enum_t" ->
  (fun x2372 ->
    let CI.CPointer x2375 = x2373 x2372 in
    let x2374 = x2375 in
    x2377 (x2376 (libxed_stubs_1_str2xed_address_width_enum_t x2374)))
| _, s ->  Printf.ksprintf failwith "No match for %s" s


let foreign_value : type a. string -> a Ctypes.typ -> a Ctypes.ptr =
  fun name t -> match t, name with
| _, s ->  Printf.ksprintf failwith "No match for %s" s

OCaml

Innovation. Community. Security.