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
/* automatically generated by rust-bindgen 0.59.2 */

#![allow(bad_style)]
use ::libc::{pid_t, size_t, ssize_t, FILE};
use ::libelf_sys::*;

#[repr(C)]
pub struct __BindgenUnionField<T>(::std::marker::PhantomData<T>);
impl<T> __BindgenUnionField<T> {
    #[inline]
    pub const fn new() -> Self {
        __BindgenUnionField(::std::marker::PhantomData)
    }
    #[inline]
    pub unsafe fn as_ref(&self) -> &T {
        ::std::mem::transmute(self)
    }
    #[inline]
    pub unsafe fn as_mut(&mut self) -> &mut T {
        ::std::mem::transmute(self)
    }
}
impl<T> ::std::default::Default for __BindgenUnionField<T> {
    #[inline]
    fn default() -> Self {
        Self::new()
    }
}
impl<T> ::std::clone::Clone for __BindgenUnionField<T> {
    #[inline]
    fn clone(&self) -> Self {
        Self::new()
    }
}
impl<T> ::std::marker::Copy for __BindgenUnionField<T> {}
impl<T> ::std::fmt::Debug for __BindgenUnionField<T> {
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        fmt.write_str("__BindgenUnionField")
    }
}
impl<T> ::std::hash::Hash for __BindgenUnionField<T> {
    fn hash<H: ::std::hash::Hasher>(&self, _state: &mut H) {}
}
impl<T> ::std::cmp::PartialEq for __BindgenUnionField<T> {
    fn eq(&self, _other: &__BindgenUnionField<T>) -> bool {
        true
    }
}
impl<T> ::std::cmp::Eq for __BindgenUnionField<T> {}
pub const DWARF_GETMACROS_START: i64 = -9223372036854775808;
pub const DW_AT_subscr_data: u32 = 10;
pub const DW_AT_element_list: u32 = 15;
pub const DW_AT_member: u32 = 20;
pub const DW_ADDR_none: u32 = 0;
pub mod Dwarf_Cmd {
    pub type Type = ::libc::c_uint;
    pub const DWARF_C_READ: Type = 0;
    pub const DWARF_C_RDWR: Type = 1;
    pub const DWARF_C_WRITE: Type = 2;
}
pub const DWARF_CB_OK: ::libc::c_uint = 0;
pub const DWARF_CB_ABORT: ::libc::c_uint = 1;
pub type _bindgen_ty_4 = ::libc::c_uint;
pub const DW_TAG_invalid: ::libc::c_uint = 0;
pub type _bindgen_ty_5 = ::libc::c_uint;
pub type Dwarf_Off = GElf_Off;
pub type Dwarf_Addr = GElf_Addr;
pub type Dwarf_Word = GElf_Xword;
pub type Dwarf_Sword = GElf_Sxword;
pub type Dwarf_Half = GElf_Half;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Abbrev {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Lines_s {
    _unused: [u8; 0],
}
pub type Dwarf_Lines = Dwarf_Lines_s;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Line_s {
    _unused: [u8; 0],
}
pub type Dwarf_Line = Dwarf_Line_s;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Files_s {
    _unused: [u8; 0],
}
pub type Dwarf_Files = Dwarf_Files_s;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Arange_s {
    _unused: [u8; 0],
}
pub type Dwarf_Arange = Dwarf_Arange_s;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Aranges_s {
    _unused: [u8; 0],
}
pub type Dwarf_Aranges = Dwarf_Aranges_s;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_CU {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Macro_s {
    _unused: [u8; 0],
}
pub type Dwarf_Macro = Dwarf_Macro_s;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Attribute {
    pub code: ::libc::c_uint,
    pub form: ::libc::c_uint,
    pub valp: *mut ::libc::c_uchar,
    pub cu: *mut Dwarf_CU,
}
#[test]
fn bindgen_test_layout_Dwarf_Attribute() {
    assert_eq!(
        ::std::mem::size_of::<Dwarf_Attribute>(),
        24usize,
        concat!("Size of: ", stringify!(Dwarf_Attribute))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwarf_Attribute>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwarf_Attribute))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Attribute>())).code as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Attribute),
            "::",
            stringify!(code)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Attribute>())).form as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Attribute),
            "::",
            stringify!(form)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Attribute>())).valp as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Attribute),
            "::",
            stringify!(valp)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Attribute>())).cu as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Attribute),
            "::",
            stringify!(cu)
        )
    );
}
#[repr(C)]
pub struct Dwarf_Block {
    pub length: Dwarf_Word,
    pub data: *mut ::libc::c_uchar,
}
#[test]
fn bindgen_test_layout_Dwarf_Block() {
    assert_eq!(
        ::std::mem::size_of::<Dwarf_Block>(),
        16usize,
        concat!("Size of: ", stringify!(Dwarf_Block))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwarf_Block>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwarf_Block))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Block>())).length as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Block),
            "::",
            stringify!(length)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Block>())).data as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Block),
            "::",
            stringify!(data)
        )
    );
}
impl ::std::fmt::Debug for Dwarf_Block {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        write!(f, "Dwarf_Block {{ data: {:?} }}", self.data)
    }
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Die {
    pub addr: *mut ::libc::c_void,
    pub cu: *mut Dwarf_CU,
    pub abbrev: *mut Dwarf_Abbrev,
    pub padding__: ::libc::c_long,
}
#[test]
fn bindgen_test_layout_Dwarf_Die() {
    assert_eq!(
        ::std::mem::size_of::<Dwarf_Die>(),
        32usize,
        concat!("Size of: ", stringify!(Dwarf_Die))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwarf_Die>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwarf_Die))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Die>())).addr as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Die),
            "::",
            stringify!(addr)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Die>())).cu as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Die),
            "::",
            stringify!(cu)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Die>())).abbrev as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Die),
            "::",
            stringify!(abbrev)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Die>())).padding__ as *const _ as usize },
        24usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Die),
            "::",
            stringify!(padding__)
        )
    );
}
#[repr(C)]
pub struct Dwarf_Global {
    pub cu_offset: Dwarf_Off,
    pub die_offset: Dwarf_Off,
    pub name: *const ::libc::c_char,
}
#[test]
fn bindgen_test_layout_Dwarf_Global() {
    assert_eq!(
        ::std::mem::size_of::<Dwarf_Global>(),
        24usize,
        concat!("Size of: ", stringify!(Dwarf_Global))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwarf_Global>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwarf_Global))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Global>())).cu_offset as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Global),
            "::",
            stringify!(cu_offset)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Global>())).die_offset as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Global),
            "::",
            stringify!(die_offset)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Global>())).name as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Global),
            "::",
            stringify!(name)
        )
    );
}
impl ::std::fmt::Debug for Dwarf_Global {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        write!(f, "Dwarf_Global {{ name: {:?} }}", self.name)
    }
}
#[repr(C)]
pub struct Dwarf_Op {
    pub atom: u8,
    pub number: Dwarf_Word,
    pub number2: Dwarf_Word,
    pub offset: Dwarf_Word,
}
#[test]
fn bindgen_test_layout_Dwarf_Op() {
    assert_eq!(
        ::std::mem::size_of::<Dwarf_Op>(),
        32usize,
        concat!("Size of: ", stringify!(Dwarf_Op))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwarf_Op>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwarf_Op))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Op>())).atom as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Op),
            "::",
            stringify!(atom)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Op>())).number as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Op),
            "::",
            stringify!(number)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Op>())).number2 as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Op),
            "::",
            stringify!(number2)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_Op>())).offset as *const _ as usize },
        24usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_Op),
            "::",
            stringify!(offset)
        )
    );
}
impl ::std::fmt::Debug for Dwarf_Op {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        write!(f, "Dwarf_Op {{  }}")
    }
}
#[repr(C)]
pub struct Dwarf_CIE {
    pub CIE_id: Dwarf_Off,
    pub initial_instructions: *const u8,
    pub initial_instructions_end: *const u8,
    pub code_alignment_factor: Dwarf_Word,
    pub data_alignment_factor: Dwarf_Sword,
    pub return_address_register: Dwarf_Word,
    pub augmentation: *const ::libc::c_char,
    pub augmentation_data: *const u8,
    pub augmentation_data_size: size_t,
    pub fde_augmentation_data_size: size_t,
}
#[test]
fn bindgen_test_layout_Dwarf_CIE() {
    assert_eq!(
        ::std::mem::size_of::<Dwarf_CIE>(),
        80usize,
        concat!("Size of: ", stringify!(Dwarf_CIE))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwarf_CIE>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwarf_CIE))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_CIE>())).CIE_id as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(CIE_id)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_CIE>())).initial_instructions as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(initial_instructions)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<Dwarf_CIE>())).initial_instructions_end as *const _ as usize
        },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(initial_instructions_end)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_CIE>())).code_alignment_factor as *const _ as usize },
        24usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(code_alignment_factor)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_CIE>())).data_alignment_factor as *const _ as usize },
        32usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(data_alignment_factor)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<Dwarf_CIE>())).return_address_register as *const _ as usize
        },
        40usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(return_address_register)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_CIE>())).augmentation as *const _ as usize },
        48usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(augmentation)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_CIE>())).augmentation_data as *const _ as usize },
        56usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(augmentation_data)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<Dwarf_CIE>())).augmentation_data_size as *const _ as usize
        },
        64usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(augmentation_data_size)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<Dwarf_CIE>())).fde_augmentation_data_size as *const _ as usize
        },
        72usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CIE),
            "::",
            stringify!(fde_augmentation_data_size)
        )
    );
}
impl ::std::fmt::Debug for Dwarf_CIE {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        write ! (f , "Dwarf_CIE {{ initial_instructions: {:?}, initial_instructions_end: {:?}, augmentation: {:?}, augmentation_data: {:?} }}" , self . initial_instructions , self . initial_instructions_end , self . augmentation , self . augmentation_data)
    }
}
#[repr(C)]
pub struct Dwarf_FDE {
    pub CIE_pointer: Dwarf_Off,
    pub start: *const u8,
    pub end: *const u8,
}
#[test]
fn bindgen_test_layout_Dwarf_FDE() {
    assert_eq!(
        ::std::mem::size_of::<Dwarf_FDE>(),
        24usize,
        concat!("Size of: ", stringify!(Dwarf_FDE))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwarf_FDE>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwarf_FDE))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_FDE>())).CIE_pointer as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_FDE),
            "::",
            stringify!(CIE_pointer)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_FDE>())).start as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_FDE),
            "::",
            stringify!(start)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_FDE>())).end as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_FDE),
            "::",
            stringify!(end)
        )
    );
}
impl ::std::fmt::Debug for Dwarf_FDE {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        write!(
            f,
            "Dwarf_FDE {{ start: {:?}, end: {:?} }}",
            self.start, self.end
        )
    }
}
#[repr(C)]
pub struct Dwarf_CFI_Entry {
    pub CIE_id: __BindgenUnionField<Dwarf_Off>,
    pub cie: __BindgenUnionField<Dwarf_CIE>,
    pub fde: __BindgenUnionField<Dwarf_FDE>,
    pub bindgen_union_field: [u64; 10usize],
}
#[test]
fn bindgen_test_layout_Dwarf_CFI_Entry() {
    assert_eq!(
        ::std::mem::size_of::<Dwarf_CFI_Entry>(),
        80usize,
        concat!("Size of: ", stringify!(Dwarf_CFI_Entry))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwarf_CFI_Entry>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwarf_CFI_Entry))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_CFI_Entry>())).CIE_id as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CFI_Entry),
            "::",
            stringify!(CIE_id)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_CFI_Entry>())).cie as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CFI_Entry),
            "::",
            stringify!(cie)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwarf_CFI_Entry>())).fde as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwarf_CFI_Entry),
            "::",
            stringify!(fde)
        )
    );
}
impl ::std::fmt::Debug for Dwarf_CFI_Entry {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        write!(f, "Dwarf_CFI_Entry {{ union }}")
    }
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_Frame_s {
    _unused: [u8; 0],
}
pub type Dwarf_Frame = Dwarf_Frame_s;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf_CFI_s {
    _unused: [u8; 0],
}
pub type Dwarf_CFI = Dwarf_CFI_s;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwarf {
    _unused: [u8; 0],
}
pub type Dwarf_OOM = ::std::option::Option<unsafe extern "C" fn()>;
extern "C" {
    pub fn dwarf_begin(fildes: ::libc::c_int, cmd: Dwarf_Cmd::Type) -> *mut Dwarf;
}
extern "C" {
    pub fn dwarf_begin_elf(elf: *mut Elf, cmd: Dwarf_Cmd::Type, scngrp: *mut Elf_Scn)
        -> *mut Dwarf;
}
extern "C" {
    pub fn dwarf_getelf(dwarf: *mut Dwarf) -> *mut Elf;
}
extern "C" {
    pub fn dwarf_cu_getdwarf(cu: *mut Dwarf_CU) -> *mut Dwarf;
}
extern "C" {
    pub fn dwarf_getalt(main: *mut Dwarf) -> *mut Dwarf;
}
extern "C" {
    pub fn dwarf_setalt(main: *mut Dwarf, alt: *mut Dwarf);
}
extern "C" {
    pub fn dwarf_end(dwarf: *mut Dwarf) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_nextcu(
        dwarf: *mut Dwarf,
        off: Dwarf_Off,
        next_off: *mut Dwarf_Off,
        header_sizep: *mut size_t,
        abbrev_offsetp: *mut Dwarf_Off,
        address_sizep: *mut u8,
        offset_sizep: *mut u8,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_next_unit(
        dwarf: *mut Dwarf,
        off: Dwarf_Off,
        next_off: *mut Dwarf_Off,
        header_sizep: *mut size_t,
        versionp: *mut Dwarf_Half,
        abbrev_offsetp: *mut Dwarf_Off,
        address_sizep: *mut u8,
        offset_sizep: *mut u8,
        type_signaturep: *mut u64,
        type_offsetp: *mut Dwarf_Off,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_get_units(
        dwarf: *mut Dwarf,
        cu: *mut Dwarf_CU,
        next_cu: *mut *mut Dwarf_CU,
        version: *mut Dwarf_Half,
        unit_type: *mut u8,
        cudie: *mut Dwarf_Die,
        subdie: *mut Dwarf_Die,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_cu_info(
        cu: *mut Dwarf_CU,
        version: *mut Dwarf_Half,
        unit_type: *mut u8,
        cudie: *mut Dwarf_Die,
        subdie: *mut Dwarf_Die,
        unit_id: *mut u64,
        address_size: *mut u8,
        offset_size: *mut u8,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_next_cfi(
        e_ident: *const ::libc::c_uchar,
        data: *mut Elf_Data,
        eh_frame_p: bool,
        offset: Dwarf_Off,
        next_offset: *mut Dwarf_Off,
        entry: *mut Dwarf_CFI_Entry,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getcfi(dwarf: *mut Dwarf) -> *mut Dwarf_CFI;
}
extern "C" {
    pub fn dwarf_getcfi_elf(elf: *mut Elf) -> *mut Dwarf_CFI;
}
extern "C" {
    pub fn dwarf_cfi_end(cache: *mut Dwarf_CFI) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_offdie(
        dbg: *mut Dwarf,
        offset: Dwarf_Off,
        result: *mut Dwarf_Die,
    ) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwarf_offdie_types(
        dbg: *mut Dwarf,
        offset: Dwarf_Off,
        result: *mut Dwarf_Die,
    ) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwarf_dieoffset(die: *mut Dwarf_Die) -> Dwarf_Off;
}
extern "C" {
    pub fn dwarf_cuoffset(die: *mut Dwarf_Die) -> Dwarf_Off;
}
extern "C" {
    pub fn dwarf_diecu(
        die: *mut Dwarf_Die,
        result: *mut Dwarf_Die,
        address_sizep: *mut u8,
        offset_sizep: *mut u8,
    ) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwarf_die_addr_die(
        dbg: *mut Dwarf,
        addr: *mut ::libc::c_void,
        result: *mut Dwarf_Die,
    ) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwarf_cu_die(
        cu: *mut Dwarf_CU,
        result: *mut Dwarf_Die,
        versionp: *mut Dwarf_Half,
        abbrev_offsetp: *mut Dwarf_Off,
        address_sizep: *mut u8,
        offset_sizep: *mut u8,
        type_signaturep: *mut u64,
        type_offsetp: *mut Dwarf_Off,
    ) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwarf_addrdie(
        dbg: *mut Dwarf,
        addr: Dwarf_Addr,
        result: *mut Dwarf_Die,
    ) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwarf_child(die: *mut Dwarf_Die, result: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_siblingof(die: *mut Dwarf_Die, result: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_peel_type(die: *mut Dwarf_Die, result: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_haschildren(die: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getattrs(
        die: *mut Dwarf_Die,
        callback: ::std::option::Option<
            unsafe extern "C" fn(
                arg1: *mut Dwarf_Attribute,
                arg2: *mut ::libc::c_void,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
        offset: isize,
    ) -> isize;
}
extern "C" {
    pub fn dwarf_tag(die: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_attr(
        die: *mut Dwarf_Die,
        search_name: ::libc::c_uint,
        result: *mut Dwarf_Attribute,
    ) -> *mut Dwarf_Attribute;
}
extern "C" {
    pub fn dwarf_hasattr(die: *mut Dwarf_Die, search_name: ::libc::c_uint) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_attr_integrate(
        die: *mut Dwarf_Die,
        search_name: ::libc::c_uint,
        result: *mut Dwarf_Attribute,
    ) -> *mut Dwarf_Attribute;
}
extern "C" {
    pub fn dwarf_hasattr_integrate(
        die: *mut Dwarf_Die,
        search_name: ::libc::c_uint,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_hasform(attr: *mut Dwarf_Attribute, search_form: ::libc::c_uint) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_whatattr(attr: *mut Dwarf_Attribute) -> ::libc::c_uint;
}
extern "C" {
    pub fn dwarf_whatform(attr: *mut Dwarf_Attribute) -> ::libc::c_uint;
}
extern "C" {
    pub fn dwarf_formstring(attrp: *mut Dwarf_Attribute) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwarf_formudata(
        attr: *mut Dwarf_Attribute,
        return_uval: *mut Dwarf_Word,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_formsdata(
        attr: *mut Dwarf_Attribute,
        return_uval: *mut Dwarf_Sword,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_formaddr(
        attr: *mut Dwarf_Attribute,
        return_addr: *mut Dwarf_Addr,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_formref(
        attr: *mut Dwarf_Attribute,
        return_offset: *mut Dwarf_Off,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_formref_die(attr: *mut Dwarf_Attribute, die_mem: *mut Dwarf_Die)
        -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwarf_formblock(
        attr: *mut Dwarf_Attribute,
        return_block: *mut Dwarf_Block,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_formflag(attr: *mut Dwarf_Attribute, return_bool: *mut bool) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_diename(die: *mut Dwarf_Die) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwarf_highpc(die: *mut Dwarf_Die, return_addr: *mut Dwarf_Addr) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_lowpc(die: *mut Dwarf_Die, return_addr: *mut Dwarf_Addr) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_entrypc(die: *mut Dwarf_Die, return_addr: *mut Dwarf_Addr) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_haspc(die: *mut Dwarf_Die, pc: Dwarf_Addr) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_ranges(
        die: *mut Dwarf_Die,
        offset: isize,
        basep: *mut Dwarf_Addr,
        startp: *mut Dwarf_Addr,
        endp: *mut Dwarf_Addr,
    ) -> isize;
}
extern "C" {
    pub fn dwarf_bytesize(die: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_bitsize(die: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_bitoffset(die: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_arrayorder(die: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_srclang(die: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getabbrev(
        die: *mut Dwarf_Die,
        offset: Dwarf_Off,
        lengthp: *mut size_t,
    ) -> *mut Dwarf_Abbrev;
}
extern "C" {
    pub fn dwarf_offabbrev(
        dbg: *mut Dwarf,
        offset: Dwarf_Off,
        lengthp: *mut size_t,
        abbrevp: *mut Dwarf_Abbrev,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getabbrevcode(abbrev: *mut Dwarf_Abbrev) -> ::libc::c_uint;
}
extern "C" {
    pub fn dwarf_getabbrevtag(abbrev: *mut Dwarf_Abbrev) -> ::libc::c_uint;
}
extern "C" {
    pub fn dwarf_abbrevhaschildren(abbrev: *mut Dwarf_Abbrev) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getattrcnt(abbrev: *mut Dwarf_Abbrev, attrcntp: *mut size_t) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getabbrevattr(
        abbrev: *mut Dwarf_Abbrev,
        idx: size_t,
        namep: *mut ::libc::c_uint,
        formp: *mut ::libc::c_uint,
        offset: *mut Dwarf_Off,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getabbrevattr_data(
        abbrev: *mut Dwarf_Abbrev,
        idx: size_t,
        namep: *mut ::libc::c_uint,
        formp: *mut ::libc::c_uint,
        datap: *mut Dwarf_Sword,
        offset: *mut Dwarf_Off,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getstring(
        dbg: *mut Dwarf,
        offset: Dwarf_Off,
        lenp: *mut size_t,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwarf_getpubnames(
        dbg: *mut Dwarf,
        callback: ::std::option::Option<
            unsafe extern "C" fn(
                arg1: *mut Dwarf,
                arg2: *mut Dwarf_Global,
                arg3: *mut ::libc::c_void,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
        offset: isize,
    ) -> isize;
}
extern "C" {
    pub fn dwarf_getsrclines(
        cudie: *mut Dwarf_Die,
        lines: *mut *mut Dwarf_Lines,
        nlines: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_onesrcline(lines: *mut Dwarf_Lines, idx: size_t) -> *mut Dwarf_Line;
}
extern "C" {
    pub fn dwarf_getsrcfiles(
        cudie: *mut Dwarf_Die,
        files: *mut *mut Dwarf_Files,
        nfiles: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getsrc_die(cudie: *mut Dwarf_Die, addr: Dwarf_Addr) -> *mut Dwarf_Line;
}
extern "C" {
    pub fn dwarf_getsrc_file(
        dbg: *mut Dwarf,
        fname: *const ::libc::c_char,
        line: ::libc::c_int,
        col: ::libc::c_int,
        srcsp: *mut *mut *mut Dwarf_Line,
        nsrcs: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_lineaddr(line: *mut Dwarf_Line, addrp: *mut Dwarf_Addr) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_lineop_index(
        line: *mut Dwarf_Line,
        op_indexp: *mut ::libc::c_uint,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_lineno(line: *mut Dwarf_Line, linep: *mut ::libc::c_int) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_linecol(line: *mut Dwarf_Line, colp: *mut ::libc::c_int) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_linebeginstatement(line: *mut Dwarf_Line, flagp: *mut bool) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_lineendsequence(line: *mut Dwarf_Line, flagp: *mut bool) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_lineblock(line: *mut Dwarf_Line, flagp: *mut bool) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_lineprologueend(line: *mut Dwarf_Line, flagp: *mut bool) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_lineepiloguebegin(line: *mut Dwarf_Line, flagp: *mut bool) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_lineisa(line: *mut Dwarf_Line, isap: *mut ::libc::c_uint) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_linediscriminator(
        line: *mut Dwarf_Line,
        discp: *mut ::libc::c_uint,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_linesrc(
        line: *mut Dwarf_Line,
        mtime: *mut Dwarf_Word,
        length: *mut Dwarf_Word,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwarf_linecontext(lines: *mut Dwarf_Lines, line: *mut Dwarf_Line) -> *mut Dwarf_Line;
}
extern "C" {
    pub fn dwarf_linefunctionname(dbg: *mut Dwarf, line: *mut Dwarf_Line) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwarf_filesrc(
        file: *mut Dwarf_Files,
        idx: size_t,
        mtime: *mut Dwarf_Word,
        length: *mut Dwarf_Word,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwarf_line_file(
        line: *mut Dwarf_Line,
        files: *mut *mut Dwarf_Files,
        idx: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getsrcdirs(
        files: *mut Dwarf_Files,
        result: *mut *const *const ::libc::c_char,
        ndirs: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_next_lines(
        dwarf: *mut Dwarf,
        off: Dwarf_Off,
        next_off: *mut Dwarf_Off,
        cu: *mut *mut Dwarf_CU,
        srcfiles: *mut *mut Dwarf_Files,
        nfiles: *mut size_t,
        srclines: *mut *mut Dwarf_Lines,
        nlines: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getlocation(
        attr: *mut Dwarf_Attribute,
        expr: *mut *mut Dwarf_Op,
        exprlen: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getlocation_addr(
        attr: *mut Dwarf_Attribute,
        address: Dwarf_Addr,
        exprs: *mut *mut Dwarf_Op,
        exprlens: *mut size_t,
        nlocs: size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getlocations(
        attr: *mut Dwarf_Attribute,
        offset: isize,
        basep: *mut Dwarf_Addr,
        startp: *mut Dwarf_Addr,
        endp: *mut Dwarf_Addr,
        expr: *mut *mut Dwarf_Op,
        exprlen: *mut size_t,
    ) -> isize;
}
extern "C" {
    pub fn dwarf_getlocation_implicit_value(
        attr: *mut Dwarf_Attribute,
        op: *const Dwarf_Op,
        return_block: *mut Dwarf_Block,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getlocation_implicit_pointer(
        attr: *mut Dwarf_Attribute,
        op: *const Dwarf_Op,
        result: *mut Dwarf_Attribute,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getlocation_die(
        attr: *mut Dwarf_Attribute,
        op: *const Dwarf_Op,
        result: *mut Dwarf_Die,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getlocation_attr(
        attr: *mut Dwarf_Attribute,
        op: *const Dwarf_Op,
        result: *mut Dwarf_Attribute,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_aggregate_size(die: *mut Dwarf_Die, size: *mut Dwarf_Word) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_default_lower_bound(
        lang: ::libc::c_int,
        result: *mut Dwarf_Sword,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getscopes(
        cudie: *mut Dwarf_Die,
        pc: Dwarf_Addr,
        scopes: *mut *mut Dwarf_Die,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getscopes_die(die: *mut Dwarf_Die, scopes: *mut *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getscopevar(
        scopes: *mut Dwarf_Die,
        nscopes: ::libc::c_int,
        name: *const ::libc::c_char,
        skip_shadows: ::libc::c_int,
        match_file: *const ::libc::c_char,
        match_lineno: ::libc::c_int,
        match_linecol: ::libc::c_int,
        result: *mut Dwarf_Die,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getaranges(
        dbg: *mut Dwarf,
        aranges: *mut *mut Dwarf_Aranges,
        naranges: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_onearange(aranges: *mut Dwarf_Aranges, idx: size_t) -> *mut Dwarf_Arange;
}
extern "C" {
    pub fn dwarf_getarangeinfo(
        arange: *mut Dwarf_Arange,
        addrp: *mut Dwarf_Addr,
        lengthp: *mut Dwarf_Word,
        offsetp: *mut Dwarf_Off,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getarange_addr(aranges: *mut Dwarf_Aranges, addr: Dwarf_Addr)
        -> *mut Dwarf_Arange;
}
extern "C" {
    pub fn dwarf_getfuncs(
        cudie: *mut Dwarf_Die,
        callback: ::std::option::Option<
            unsafe extern "C" fn(arg1: *mut Dwarf_Die, arg2: *mut ::libc::c_void) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
        offset: isize,
    ) -> isize;
}
extern "C" {
    pub fn dwarf_decl_file(decl: *mut Dwarf_Die) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwarf_decl_line(decl: *mut Dwarf_Die, linep: *mut ::libc::c_int) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_decl_column(decl: *mut Dwarf_Die, colp: *mut ::libc::c_int) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_func_inline(func: *mut Dwarf_Die) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_func_inline_instances(
        func: *mut Dwarf_Die,
        callback: ::std::option::Option<
            unsafe extern "C" fn(arg1: *mut Dwarf_Die, arg2: *mut ::libc::c_void) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_entry_breakpoints(
        die: *mut Dwarf_Die,
        bkpts: *mut *mut Dwarf_Addr,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getmacros(
        cudie: *mut Dwarf_Die,
        callback: ::std::option::Option<
            unsafe extern "C" fn(
                arg1: *mut Dwarf_Macro,
                arg2: *mut ::libc::c_void,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
        token: isize,
    ) -> isize;
}
extern "C" {
    pub fn dwarf_getmacros_off(
        dbg: *mut Dwarf,
        macoff: Dwarf_Off,
        callback: ::std::option::Option<
            unsafe extern "C" fn(
                arg1: *mut Dwarf_Macro,
                arg2: *mut ::libc::c_void,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
        token: isize,
    ) -> isize;
}
extern "C" {
    pub fn dwarf_macro_getsrcfiles(
        dbg: *mut Dwarf,
        macro_: *mut Dwarf_Macro,
        files: *mut *mut Dwarf_Files,
        nfiles: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_macro_opcode(
        macro_: *mut Dwarf_Macro,
        opcodep: *mut ::libc::c_uint,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_macro_getparamcnt(
        macro_: *mut Dwarf_Macro,
        paramcntp: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_macro_param(
        macro_: *mut Dwarf_Macro,
        idx: size_t,
        attribute: *mut Dwarf_Attribute,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_macro_param1(macro_: *mut Dwarf_Macro, paramp: *mut Dwarf_Word) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_macro_param2(
        macro_: *mut Dwarf_Macro,
        paramp: *mut Dwarf_Word,
        strp: *mut *const ::libc::c_char,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_cfi_addrframe(
        cache: *mut Dwarf_CFI,
        address: Dwarf_Addr,
        frame: *mut *mut Dwarf_Frame,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_frame_info(
        frame: *mut Dwarf_Frame,
        start: *mut Dwarf_Addr,
        end: *mut Dwarf_Addr,
        signalp: *mut bool,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_frame_cfa(
        frame: *mut Dwarf_Frame,
        ops: *mut *mut Dwarf_Op,
        nops: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_frame_register(
        frame: *mut Dwarf_Frame,
        regno: ::libc::c_int,
        ops_mem: *mut Dwarf_Op,
        ops: *mut *mut Dwarf_Op,
        nops: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_errno() -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_errmsg(err: ::libc::c_int) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwarf_new_oom_handler(dbg: *mut Dwarf, handler: Dwarf_OOM) -> Dwarf_OOM;
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwfl {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwfl_Module {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwfl_Line {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwfl_Thread {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwfl_Frame {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwfl_Callbacks {
    pub find_elf: ::std::option::Option<
        unsafe extern "C" fn(
            mod_: *mut Dwfl_Module,
            userdata: *mut *mut ::libc::c_void,
            modname: *const ::libc::c_char,
            base: Dwarf_Addr,
            file_name: *mut *mut ::libc::c_char,
            elfp: *mut *mut Elf,
        ) -> ::libc::c_int,
    >,
    pub find_debuginfo: ::std::option::Option<
        unsafe extern "C" fn(
            mod_: *mut Dwfl_Module,
            userdata: *mut *mut ::libc::c_void,
            modname: *const ::libc::c_char,
            base: Dwarf_Addr,
            file_name: *const ::libc::c_char,
            debuglink_file: *const ::libc::c_char,
            debuglink_crc: GElf_Word,
            debuginfo_file_name: *mut *mut ::libc::c_char,
        ) -> ::libc::c_int,
    >,
    pub section_address: ::std::option::Option<
        unsafe extern "C" fn(
            mod_: *mut Dwfl_Module,
            userdata: *mut *mut ::libc::c_void,
            modname: *const ::libc::c_char,
            base: Dwarf_Addr,
            secname: *const ::libc::c_char,
            shndx: GElf_Word,
            shdr: *const GElf_Shdr,
            addr: *mut Dwarf_Addr,
        ) -> ::libc::c_int,
    >,
    pub debuginfo_path: *mut *mut ::libc::c_char,
}
#[test]
fn bindgen_test_layout_Dwfl_Callbacks() {
    assert_eq!(
        ::std::mem::size_of::<Dwfl_Callbacks>(),
        32usize,
        concat!("Size of: ", stringify!(Dwfl_Callbacks))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwfl_Callbacks>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwfl_Callbacks))
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwfl_Callbacks>())).find_elf as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Callbacks),
            "::",
            stringify!(find_elf)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwfl_Callbacks>())).find_debuginfo as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Callbacks),
            "::",
            stringify!(find_debuginfo)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwfl_Callbacks>())).section_address as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Callbacks),
            "::",
            stringify!(section_address)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwfl_Callbacks>())).debuginfo_path as *const _ as usize },
        24usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Callbacks),
            "::",
            stringify!(debuginfo_path)
        )
    );
}
extern "C" {
    pub fn dwfl_begin(callbacks: *const Dwfl_Callbacks) -> *mut Dwfl;
}
extern "C" {
    pub fn dwfl_end(arg1: *mut Dwfl);
}
extern "C" {
    pub fn dwfl_version(arg1: *mut Dwfl) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_errno() -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_errmsg(err: ::libc::c_int) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_report_begin(dwfl: *mut Dwfl);
}
extern "C" {
    pub fn dwfl_report_segment(
        dwfl: *mut Dwfl,
        ndx: ::libc::c_int,
        phdr: *const GElf_Phdr,
        bias: GElf_Addr,
        ident: *const ::libc::c_void,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_report_module(
        dwfl: *mut Dwfl,
        name: *const ::libc::c_char,
        start: Dwarf_Addr,
        end: Dwarf_Addr,
    ) -> *mut Dwfl_Module;
}
extern "C" {
    pub fn dwfl_report_elf(
        dwfl: *mut Dwfl,
        name: *const ::libc::c_char,
        file_name: *const ::libc::c_char,
        fd: ::libc::c_int,
        base: GElf_Addr,
        add_p_vaddr: bool,
    ) -> *mut Dwfl_Module;
}
extern "C" {
    pub fn dwfl_report_offline(
        dwfl: *mut Dwfl,
        name: *const ::libc::c_char,
        file_name: *const ::libc::c_char,
        fd: ::libc::c_int,
    ) -> *mut Dwfl_Module;
}
extern "C" {
    pub fn dwfl_report_end(
        dwfl: *mut Dwfl,
        removed: ::std::option::Option<
            unsafe extern "C" fn(
                arg1: *mut Dwfl_Module,
                arg2: *mut ::libc::c_void,
                arg3: *const ::libc::c_char,
                arg4: Dwarf_Addr,
                arg: *mut ::libc::c_void,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_report_begin_add(dwfl: *mut Dwfl);
}
extern "C" {
    pub fn dwfl_module_info(
        mod_: *mut Dwfl_Module,
        userdata: *mut *mut *mut ::libc::c_void,
        start: *mut Dwarf_Addr,
        end: *mut Dwarf_Addr,
        dwbias: *mut Dwarf_Addr,
        symbias: *mut Dwarf_Addr,
        mainfile: *mut *const ::libc::c_char,
        debugfile: *mut *const ::libc::c_char,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_getmodules(
        dwfl: *mut Dwfl,
        callback: ::std::option::Option<
            unsafe extern "C" fn(
                arg1: *mut Dwfl_Module,
                arg2: *mut *mut ::libc::c_void,
                arg3: *const ::libc::c_char,
                arg4: Dwarf_Addr,
                arg: *mut ::libc::c_void,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
        offset: isize,
    ) -> isize;
}
extern "C" {
    pub fn dwfl_addrmodule(dwfl: *mut Dwfl, address: Dwarf_Addr) -> *mut Dwfl_Module;
}
extern "C" {
    pub fn dwfl_addrsegment(
        dwfl: *mut Dwfl,
        address: Dwarf_Addr,
        mod_: *mut *mut Dwfl_Module,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_module_report_build_id(
        mod_: *mut Dwfl_Module,
        bits: *const ::libc::c_uchar,
        len: size_t,
        vaddr: GElf_Addr,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_module_build_id(
        mod_: *mut Dwfl_Module,
        bits: *mut *const ::libc::c_uchar,
        vaddr: *mut GElf_Addr,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_build_id_find_elf(
        arg1: *mut Dwfl_Module,
        arg2: *mut *mut ::libc::c_void,
        arg3: *const ::libc::c_char,
        arg4: Dwarf_Addr,
        arg5: *mut *mut ::libc::c_char,
        arg6: *mut *mut Elf,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_build_id_find_debuginfo(
        arg1: *mut Dwfl_Module,
        arg2: *mut *mut ::libc::c_void,
        arg3: *const ::libc::c_char,
        arg4: Dwarf_Addr,
        arg5: *const ::libc::c_char,
        arg6: *const ::libc::c_char,
        arg7: GElf_Word,
        arg8: *mut *mut ::libc::c_char,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_standard_find_debuginfo(
        arg1: *mut Dwfl_Module,
        arg2: *mut *mut ::libc::c_void,
        arg3: *const ::libc::c_char,
        arg4: Dwarf_Addr,
        arg5: *const ::libc::c_char,
        arg6: *const ::libc::c_char,
        arg7: GElf_Word,
        arg8: *mut *mut ::libc::c_char,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_offline_section_address(
        arg1: *mut Dwfl_Module,
        arg2: *mut *mut ::libc::c_void,
        arg3: *const ::libc::c_char,
        arg4: Dwarf_Addr,
        arg5: *const ::libc::c_char,
        arg6: GElf_Word,
        arg7: *const GElf_Shdr,
        addr: *mut Dwarf_Addr,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linux_kernel_find_elf(
        arg1: *mut Dwfl_Module,
        arg2: *mut *mut ::libc::c_void,
        arg3: *const ::libc::c_char,
        arg4: Dwarf_Addr,
        arg5: *mut *mut ::libc::c_char,
        arg6: *mut *mut Elf,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linux_kernel_module_section_address(
        arg1: *mut Dwfl_Module,
        arg2: *mut *mut ::libc::c_void,
        arg3: *const ::libc::c_char,
        arg4: Dwarf_Addr,
        arg5: *const ::libc::c_char,
        arg6: GElf_Word,
        arg7: *const GElf_Shdr,
        addr: *mut Dwarf_Addr,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linux_kernel_report_kernel(dwfl: *mut Dwfl) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linux_kernel_report_modules(dwfl: *mut Dwfl) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linux_kernel_report_offline(
        dwfl: *mut Dwfl,
        release: *const ::libc::c_char,
        predicate: ::std::option::Option<
            unsafe extern "C" fn(
                arg1: *const ::libc::c_char,
                arg2: *const ::libc::c_char,
            ) -> ::libc::c_int,
        >,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_core_file_report(
        dwfl: *mut Dwfl,
        elf: *mut Elf,
        executable: *const ::libc::c_char,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linux_proc_report(dwfl: *mut Dwfl, pid: pid_t) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linux_proc_maps_report(dwfl: *mut Dwfl, arg1: *mut FILE) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linux_proc_find_elf(
        mod_: *mut Dwfl_Module,
        userdata: *mut *mut ::libc::c_void,
        module_name: *const ::libc::c_char,
        base: Dwarf_Addr,
        file_name: *mut *mut ::libc::c_char,
        arg1: *mut *mut Elf,
    ) -> ::libc::c_int;
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct argp {
    _unused: [u8; 0],
}
extern "C" {
    pub fn dwfl_standard_argp() -> *const argp;
}
extern "C" {
    #[doc = " Relocation of addresses from Dwfl"]
    pub fn dwfl_module_relocations(mod_: *mut Dwfl_Module) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_module_relocate_address(
        mod_: *mut Dwfl_Module,
        address: *mut Dwarf_Addr,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_module_relocation_info(
        mod_: *mut Dwfl_Module,
        idx: ::libc::c_uint,
        shndxp: *mut GElf_Word,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_validate_address(
        dwfl: *mut Dwfl,
        address: Dwarf_Addr,
        offset: Dwarf_Sword,
    ) -> ::libc::c_int;
}
extern "C" {
    #[doc = " ELF access functions"]
    pub fn dwfl_module_getelf(arg1: *mut Dwfl_Module, bias: *mut GElf_Addr) -> *mut Elf;
}
extern "C" {
    pub fn dwfl_module_getsymtab(mod_: *mut Dwfl_Module) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_module_getsymtab_first_global(mod_: *mut Dwfl_Module) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_module_getsym(
        mod_: *mut Dwfl_Module,
        ndx: ::libc::c_int,
        sym: *mut GElf_Sym,
        shndxp: *mut GElf_Word,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_module_getsym_info(
        mod_: *mut Dwfl_Module,
        ndx: ::libc::c_int,
        sym: *mut GElf_Sym,
        addr: *mut GElf_Addr,
        shndxp: *mut GElf_Word,
        elfp: *mut *mut Elf,
        bias: *mut Dwarf_Addr,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_module_addrname(
        mod_: *mut Dwfl_Module,
        address: GElf_Addr,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_module_addrinfo(
        mod_: *mut Dwfl_Module,
        address: GElf_Addr,
        offset: *mut GElf_Off,
        sym: *mut GElf_Sym,
        shndxp: *mut GElf_Word,
        elfp: *mut *mut Elf,
        bias: *mut Dwarf_Addr,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_module_addrsym(
        mod_: *mut Dwfl_Module,
        address: GElf_Addr,
        sym: *mut GElf_Sym,
        shndxp: *mut GElf_Word,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_module_address_section(
        mod_: *mut Dwfl_Module,
        address: *mut Dwarf_Addr,
        bias: *mut Dwarf_Addr,
    ) -> *mut Elf_Scn;
}
extern "C" {
    #[doc = " Dwarf access functions"]
    pub fn dwfl_module_getdwarf(arg1: *mut Dwfl_Module, bias: *mut Dwarf_Addr) -> *mut Dwarf;
}
extern "C" {
    pub fn dwfl_getdwarf(
        arg1: *mut Dwfl,
        callback: ::std::option::Option<
            unsafe extern "C" fn(
                arg1: *mut Dwfl_Module,
                arg2: *mut *mut ::libc::c_void,
                arg3: *const ::libc::c_char,
                arg4: Dwarf_Addr,
                arg5: *mut Dwarf,
                arg6: Dwarf_Addr,
                arg7: *mut ::libc::c_void,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
        offset: isize,
    ) -> isize;
}
extern "C" {
    pub fn dwfl_addrdwarf(dwfl: *mut Dwfl, addr: Dwarf_Addr, bias: *mut Dwarf_Addr) -> *mut Dwarf;
}
extern "C" {
    pub fn dwfl_addrdie(dwfl: *mut Dwfl, addr: Dwarf_Addr, bias: *mut Dwarf_Addr)
        -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwfl_module_addrdie(
        mod_: *mut Dwfl_Module,
        addr: Dwarf_Addr,
        bias: *mut Dwarf_Addr,
    ) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwfl_nextcu(
        dwfl: *mut Dwfl,
        lastcu: *mut Dwarf_Die,
        bias: *mut Dwarf_Addr,
    ) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwfl_module_nextcu(
        mod_: *mut Dwfl_Module,
        lastcu: *mut Dwarf_Die,
        bias: *mut Dwarf_Addr,
    ) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwfl_cumodule(cudie: *mut Dwarf_Die) -> *mut Dwfl_Module;
}
extern "C" {
    pub fn dwfl_getsrclines(cudie: *mut Dwarf_Die, nlines: *mut size_t) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_onesrcline(cudie: *mut Dwarf_Die, idx: size_t) -> *mut Dwfl_Line;
}
extern "C" {
    pub fn dwfl_module_getsrc(mod_: *mut Dwfl_Module, addr: Dwarf_Addr) -> *mut Dwfl_Line;
}
extern "C" {
    pub fn dwfl_getsrc(dwfl: *mut Dwfl, addr: Dwarf_Addr) -> *mut Dwfl_Line;
}
extern "C" {
    pub fn dwfl_module_getsrc_file(
        mod_: *mut Dwfl_Module,
        fname: *const ::libc::c_char,
        lineno: ::libc::c_int,
        column: ::libc::c_int,
        srcsp: *mut *mut *mut Dwfl_Line,
        nsrcs: *mut size_t,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linemodule(line: *mut Dwfl_Line) -> *mut Dwfl_Module;
}
extern "C" {
    pub fn dwfl_linecu(line: *mut Dwfl_Line) -> *mut Dwarf_Die;
}
extern "C" {
    pub fn dwfl_lineinfo(
        line: *mut Dwfl_Line,
        addr: *mut Dwarf_Addr,
        linep: *mut ::libc::c_int,
        colp: *mut ::libc::c_int,
        mtime: *mut Dwarf_Word,
        length: *mut Dwarf_Word,
    ) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwfl_dwarf_line(line: *mut Dwfl_Line, bias: *mut Dwarf_Addr) -> *mut Dwarf_Line;
}
extern "C" {
    pub fn dwfl_line_comp_dir(line: *mut Dwfl_Line) -> *const ::libc::c_char;
}
extern "C" {
    #[doc = " Machine backend access functions"]
    pub fn dwfl_module_return_value_location(
        mod_: *mut Dwfl_Module,
        functypedie: *mut Dwarf_Die,
        locops: *mut *const Dwarf_Op,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_module_register_names(
        mod_: *mut Dwfl_Module,
        callback: ::std::option::Option<
            unsafe extern "C" fn(
                arg: *mut ::libc::c_void,
                regno: ::libc::c_int,
                setname: *const ::libc::c_char,
                prefix: *const ::libc::c_char,
                regname: *const ::libc::c_char,
                bits: ::libc::c_int,
                type_: ::libc::c_int,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_module_dwarf_cfi(mod_: *mut Dwfl_Module, bias: *mut Dwarf_Addr) -> *mut Dwarf_CFI;
}
extern "C" {
    pub fn dwfl_module_eh_cfi(mod_: *mut Dwfl_Module, bias: *mut Dwarf_Addr) -> *mut Dwarf_CFI;
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwfl_Thread_Callbacks {
    pub next_thread: ::std::option::Option<
        unsafe extern "C" fn(
            dwfl: *mut Dwfl,
            dwfl_arg: *mut ::libc::c_void,
            thread_argp: *mut *mut ::libc::c_void,
        ) -> pid_t,
    >,
    pub get_thread: ::std::option::Option<
        unsafe extern "C" fn(
            dwfl: *mut Dwfl,
            tid: pid_t,
            dwfl_arg: *mut ::libc::c_void,
            thread_argp: *mut *mut ::libc::c_void,
        ) -> bool,
    >,
    pub memory_read: ::std::option::Option<
        unsafe extern "C" fn(
            dwfl: *mut Dwfl,
            addr: Dwarf_Addr,
            result: *mut Dwarf_Word,
            dwfl_arg: *mut ::libc::c_void,
        ) -> bool,
    >,
    pub set_initial_registers: ::std::option::Option<
        unsafe extern "C" fn(thread: *mut Dwfl_Thread, thread_arg: *mut ::libc::c_void) -> bool,
    >,
    pub detach:
        ::std::option::Option<unsafe extern "C" fn(dwfl: *mut Dwfl, dwfl_arg: *mut ::libc::c_void)>,
    pub thread_detach: ::std::option::Option<
        unsafe extern "C" fn(thread: *mut Dwfl_Thread, thread_arg: *mut ::libc::c_void),
    >,
}
#[test]
fn bindgen_test_layout_Dwfl_Thread_Callbacks() {
    assert_eq!(
        ::std::mem::size_of::<Dwfl_Thread_Callbacks>(),
        48usize,
        concat!("Size of: ", stringify!(Dwfl_Thread_Callbacks))
    );
    assert_eq!(
        ::std::mem::align_of::<Dwfl_Thread_Callbacks>(),
        8usize,
        concat!("Alignment of ", stringify!(Dwfl_Thread_Callbacks))
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<Dwfl_Thread_Callbacks>())).next_thread as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Thread_Callbacks),
            "::",
            stringify!(next_thread)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<Dwfl_Thread_Callbacks>())).get_thread as *const _ as usize
        },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Thread_Callbacks),
            "::",
            stringify!(get_thread)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<Dwfl_Thread_Callbacks>())).memory_read as *const _ as usize
        },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Thread_Callbacks),
            "::",
            stringify!(memory_read)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<Dwfl_Thread_Callbacks>())).set_initial_registers as *const _
                as usize
        },
        24usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Thread_Callbacks),
            "::",
            stringify!(set_initial_registers)
        )
    );
    assert_eq!(
        unsafe { &(*(::std::ptr::null::<Dwfl_Thread_Callbacks>())).detach as *const _ as usize },
        32usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Thread_Callbacks),
            "::",
            stringify!(detach)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::std::ptr::null::<Dwfl_Thread_Callbacks>())).thread_detach as *const _ as usize
        },
        40usize,
        concat!(
            "Offset of field: ",
            stringify!(Dwfl_Thread_Callbacks),
            "::",
            stringify!(thread_detach)
        )
    );
}
extern "C" {
    pub fn dwfl_attach_state(
        dwfl: *mut Dwfl,
        elf: *mut Elf,
        pid: pid_t,
        thread_callbacks: *const Dwfl_Thread_Callbacks,
        dwfl_arg: *mut ::libc::c_void,
    ) -> bool;
}
extern "C" {
    pub fn dwfl_core_file_attach(dwfl: *mut Dwfl, elf: *mut Elf) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_linux_proc_attach(
        dwfl: *mut Dwfl,
        pid: pid_t,
        assume_ptrace_stopped: bool,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_pid(dwfl: *mut Dwfl) -> pid_t;
}
extern "C" {
    pub fn dwfl_thread_dwfl(thread: *mut Dwfl_Thread) -> *mut Dwfl;
}
extern "C" {
    pub fn dwfl_thread_tid(thread: *mut Dwfl_Thread) -> pid_t;
}
extern "C" {
    pub fn dwfl_frame_thread(state: *mut Dwfl_Frame) -> *mut Dwfl_Thread;
}
extern "C" {
    pub fn dwfl_thread_state_registers(
        thread: *mut Dwfl_Thread,
        firstreg: ::libc::c_int,
        nregs: ::libc::c_uint,
        regs: *const Dwarf_Word,
    ) -> bool;
}
extern "C" {
    pub fn dwfl_thread_state_register_pc(thread: *mut Dwfl_Thread, pc: Dwarf_Word);
}
extern "C" {
    pub fn dwfl_getthreads(
        dwfl: *mut Dwfl,
        callback: ::std::option::Option<
            unsafe extern "C" fn(
                thread: *mut Dwfl_Thread,
                arg: *mut ::libc::c_void,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_thread_getframes(
        thread: *mut Dwfl_Thread,
        callback: ::std::option::Option<
            unsafe extern "C" fn(state: *mut Dwfl_Frame, arg: *mut ::libc::c_void) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_getthread_frames(
        dwfl: *mut Dwfl,
        tid: pid_t,
        callback: ::std::option::Option<
            unsafe extern "C" fn(
                thread: *mut Dwfl_Frame,
                arg: *mut ::libc::c_void,
            ) -> ::libc::c_int,
        >,
        arg: *mut ::libc::c_void,
    ) -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_frame_pc(
        state: *mut Dwfl_Frame,
        pc: *mut Dwarf_Addr,
        isactivation: *mut bool,
    ) -> bool;
}
extern "C" {
    pub fn dwelf_elf_gnu_debuglink(elf: *mut Elf, crc: *mut GElf_Word) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwelf_dwarf_gnu_debugaltlink(
        dwarf: *mut Dwarf,
        namep: *mut *const ::libc::c_char,
        build_idp: *mut *const ::libc::c_void,
    ) -> ssize_t;
}
extern "C" {
    pub fn dwelf_elf_gnu_build_id(elf: *mut Elf, build_idp: *mut *const ::libc::c_void) -> ssize_t;
}
extern "C" {
    pub fn dwelf_scn_gnu_compressed_size(scn: *mut Elf_Scn) -> ssize_t;
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwelf_Strtab {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Dwelf_Strent {
    _unused: [u8; 0],
}
extern "C" {
    pub fn dwelf_strtab_init(nullstr: bool) -> *mut Dwelf_Strtab;
}
extern "C" {
    pub fn dwelf_strtab_add(
        st: *mut Dwelf_Strtab,
        str_: *const ::libc::c_char,
    ) -> *mut Dwelf_Strent;
}
extern "C" {
    pub fn dwelf_strtab_add_len(
        st: *mut Dwelf_Strtab,
        str_: *const ::libc::c_char,
        len: size_t,
    ) -> *mut Dwelf_Strent;
}
extern "C" {
    pub fn dwelf_strtab_finalize(st: *mut Dwelf_Strtab, data: *mut Elf_Data) -> *mut Elf_Data;
}
extern "C" {
    pub fn dwelf_strent_off(se: *mut Dwelf_Strent) -> size_t;
}
extern "C" {
    pub fn dwelf_strent_str(se: *mut Dwelf_Strent) -> *const ::libc::c_char;
}
extern "C" {
    pub fn dwelf_strtab_free(st: *mut Dwelf_Strtab);
}
extern "C" {
    pub fn dwelf_elf_begin(fd: ::libc::c_int) -> *mut Elf;
}
extern "C" {
    pub fn dwelf_elf_e_machine_string(machine: ::libc::c_int) -> *const ::libc::c_char;
}
pub const DW_UT_compile: ::libc::c_uint = 1;
pub const DW_UT_type: ::libc::c_uint = 2;
pub const DW_UT_partial: ::libc::c_uint = 3;
pub const DW_UT_skeleton: ::libc::c_uint = 4;
pub const DW_UT_split_compile: ::libc::c_uint = 5;
pub const DW_UT_split_type: ::libc::c_uint = 6;
pub const DW_UT_lo_user: ::libc::c_uint = 128;
pub const DW_UT_hi_user: ::libc::c_uint = 255;
pub type _bindgen_ty_6 = ::libc::c_uint;
pub const DW_TAG_array_type: ::libc::c_uint = 1;
pub const DW_TAG_class_type: ::libc::c_uint = 2;
pub const DW_TAG_entry_point: ::libc::c_uint = 3;
pub const DW_TAG_enumeration_type: ::libc::c_uint = 4;
pub const DW_TAG_formal_parameter: ::libc::c_uint = 5;
pub const DW_TAG_imported_declaration: ::libc::c_uint = 8;
pub const DW_TAG_label: ::libc::c_uint = 10;
pub const DW_TAG_lexical_block: ::libc::c_uint = 11;
pub const DW_TAG_member: ::libc::c_uint = 13;
pub const DW_TAG_pointer_type: ::libc::c_uint = 15;
pub const DW_TAG_reference_type: ::libc::c_uint = 16;
pub const DW_TAG_compile_unit: ::libc::c_uint = 17;
pub const DW_TAG_string_type: ::libc::c_uint = 18;
pub const DW_TAG_structure_type: ::libc::c_uint = 19;
pub const DW_TAG_subroutine_type: ::libc::c_uint = 21;
pub const DW_TAG_typedef: ::libc::c_uint = 22;
pub const DW_TAG_union_type: ::libc::c_uint = 23;
pub const DW_TAG_unspecified_parameters: ::libc::c_uint = 24;
pub const DW_TAG_variant: ::libc::c_uint = 25;
pub const DW_TAG_common_block: ::libc::c_uint = 26;
pub const DW_TAG_common_inclusion: ::libc::c_uint = 27;
pub const DW_TAG_inheritance: ::libc::c_uint = 28;
pub const DW_TAG_inlined_subroutine: ::libc::c_uint = 29;
pub const DW_TAG_module: ::libc::c_uint = 30;
pub const DW_TAG_ptr_to_member_type: ::libc::c_uint = 31;
pub const DW_TAG_set_type: ::libc::c_uint = 32;
pub const DW_TAG_subrange_type: ::libc::c_uint = 33;
pub const DW_TAG_with_stmt: ::libc::c_uint = 34;
pub const DW_TAG_access_declaration: ::libc::c_uint = 35;
pub const DW_TAG_base_type: ::libc::c_uint = 36;
pub const DW_TAG_catch_block: ::libc::c_uint = 37;
pub const DW_TAG_const_type: ::libc::c_uint = 38;
pub const DW_TAG_constant: ::libc::c_uint = 39;
pub const DW_TAG_enumerator: ::libc::c_uint = 40;
pub const DW_TAG_file_type: ::libc::c_uint = 41;
pub const DW_TAG_friend: ::libc::c_uint = 42;
pub const DW_TAG_namelist: ::libc::c_uint = 43;
pub const DW_TAG_namelist_item: ::libc::c_uint = 44;
pub const DW_TAG_packed_type: ::libc::c_uint = 45;
pub const DW_TAG_subprogram: ::libc::c_uint = 46;
pub const DW_TAG_template_type_parameter: ::libc::c_uint = 47;
pub const DW_TAG_template_value_parameter: ::libc::c_uint = 48;
pub const DW_TAG_thrown_type: ::libc::c_uint = 49;
pub const DW_TAG_try_block: ::libc::c_uint = 50;
pub const DW_TAG_variant_part: ::libc::c_uint = 51;
pub const DW_TAG_variable: ::libc::c_uint = 52;
pub const DW_TAG_volatile_type: ::libc::c_uint = 53;
pub const DW_TAG_dwarf_procedure: ::libc::c_uint = 54;
pub const DW_TAG_restrict_type: ::libc::c_uint = 55;
pub const DW_TAG_interface_type: ::libc::c_uint = 56;
pub const DW_TAG_namespace: ::libc::c_uint = 57;
pub const DW_TAG_imported_module: ::libc::c_uint = 58;
pub const DW_TAG_unspecified_type: ::libc::c_uint = 59;
pub const DW_TAG_partial_unit: ::libc::c_uint = 60;
pub const DW_TAG_imported_unit: ::libc::c_uint = 61;
pub const DW_TAG_condition: ::libc::c_uint = 63;
pub const DW_TAG_shared_type: ::libc::c_uint = 64;
pub const DW_TAG_type_unit: ::libc::c_uint = 65;
pub const DW_TAG_rvalue_reference_type: ::libc::c_uint = 66;
pub const DW_TAG_template_alias: ::libc::c_uint = 67;
pub const DW_TAG_coarray_type: ::libc::c_uint = 68;
pub const DW_TAG_generic_subrange: ::libc::c_uint = 69;
pub const DW_TAG_dynamic_type: ::libc::c_uint = 70;
pub const DW_TAG_atomic_type: ::libc::c_uint = 71;
pub const DW_TAG_call_site: ::libc::c_uint = 72;
pub const DW_TAG_call_site_parameter: ::libc::c_uint = 73;
pub const DW_TAG_skeleton_unit: ::libc::c_uint = 74;
pub const DW_TAG_immutable_type: ::libc::c_uint = 75;
pub const DW_TAG_lo_user: ::libc::c_uint = 16512;
pub const DW_TAG_MIPS_loop: ::libc::c_uint = 16513;
pub const DW_TAG_format_label: ::libc::c_uint = 16641;
pub const DW_TAG_function_template: ::libc::c_uint = 16642;
pub const DW_TAG_class_template: ::libc::c_uint = 16643;
pub const DW_TAG_GNU_BINCL: ::libc::c_uint = 16644;
pub const DW_TAG_GNU_EINCL: ::libc::c_uint = 16645;
pub const DW_TAG_GNU_template_template_param: ::libc::c_uint = 16646;
pub const DW_TAG_GNU_template_parameter_pack: ::libc::c_uint = 16647;
pub const DW_TAG_GNU_formal_parameter_pack: ::libc::c_uint = 16648;
pub const DW_TAG_GNU_call_site: ::libc::c_uint = 16649;
pub const DW_TAG_GNU_call_site_parameter: ::libc::c_uint = 16650;
pub const DW_TAG_hi_user: ::libc::c_uint = 65535;
pub type _bindgen_ty_7 = ::libc::c_uint;
pub const DW_CHILDREN_no: ::libc::c_uint = 0;
pub const DW_CHILDREN_yes: ::libc::c_uint = 1;
pub type _bindgen_ty_8 = ::libc::c_uint;
pub const DW_AT_sibling: ::libc::c_uint = 1;
pub const DW_AT_location: ::libc::c_uint = 2;
pub const DW_AT_name: ::libc::c_uint = 3;
pub const DW_AT_ordering: ::libc::c_uint = 9;
pub const DW_AT_byte_size: ::libc::c_uint = 11;
pub const DW_AT_bit_offset: ::libc::c_uint = 12;
pub const DW_AT_bit_size: ::libc::c_uint = 13;
pub const DW_AT_stmt_list: ::libc::c_uint = 16;
pub const DW_AT_low_pc: ::libc::c_uint = 17;
pub const DW_AT_high_pc: ::libc::c_uint = 18;
pub const DW_AT_language: ::libc::c_uint = 19;
pub const DW_AT_discr: ::libc::c_uint = 21;
pub const DW_AT_discr_value: ::libc::c_uint = 22;
pub const DW_AT_visibility: ::libc::c_uint = 23;
pub const DW_AT_import: ::libc::c_uint = 24;
pub const DW_AT_string_length: ::libc::c_uint = 25;
pub const DW_AT_common_reference: ::libc::c_uint = 26;
pub const DW_AT_comp_dir: ::libc::c_uint = 27;
pub const DW_AT_const_value: ::libc::c_uint = 28;
pub const DW_AT_containing_type: ::libc::c_uint = 29;
pub const DW_AT_default_value: ::libc::c_uint = 30;
pub const DW_AT_inline: ::libc::c_uint = 32;
pub const DW_AT_is_optional: ::libc::c_uint = 33;
pub const DW_AT_lower_bound: ::libc::c_uint = 34;
pub const DW_AT_producer: ::libc::c_uint = 37;
pub const DW_AT_prototyped: ::libc::c_uint = 39;
pub const DW_AT_return_addr: ::libc::c_uint = 42;
pub const DW_AT_start_scope: ::libc::c_uint = 44;
pub const DW_AT_bit_stride: ::libc::c_uint = 46;
pub const DW_AT_upper_bound: ::libc::c_uint = 47;
pub const DW_AT_abstract_origin: ::libc::c_uint = 49;
pub const DW_AT_accessibility: ::libc::c_uint = 50;
pub const DW_AT_address_class: ::libc::c_uint = 51;
pub const DW_AT_artificial: ::libc::c_uint = 52;
pub const DW_AT_base_types: ::libc::c_uint = 53;
pub const DW_AT_calling_convention: ::libc::c_uint = 54;
pub const DW_AT_count: ::libc::c_uint = 55;
pub const DW_AT_data_member_location: ::libc::c_uint = 56;
pub const DW_AT_decl_column: ::libc::c_uint = 57;
pub const DW_AT_decl_file: ::libc::c_uint = 58;
pub const DW_AT_decl_line: ::libc::c_uint = 59;
pub const DW_AT_declaration: ::libc::c_uint = 60;
pub const DW_AT_discr_list: ::libc::c_uint = 61;
pub const DW_AT_encoding: ::libc::c_uint = 62;
pub const DW_AT_external: ::libc::c_uint = 63;
pub const DW_AT_frame_base: ::libc::c_uint = 64;
pub const DW_AT_friend: ::libc::c_uint = 65;
pub const DW_AT_identifier_case: ::libc::c_uint = 66;
pub const DW_AT_macro_info: ::libc::c_uint = 67;
pub const DW_AT_namelist_item: ::libc::c_uint = 68;
pub const DW_AT_priority: ::libc::c_uint = 69;
pub const DW_AT_segment: ::libc::c_uint = 70;
pub const DW_AT_specification: ::libc::c_uint = 71;
pub const DW_AT_static_link: ::libc::c_uint = 72;
pub const DW_AT_type: ::libc::c_uint = 73;
pub const DW_AT_use_location: ::libc::c_uint = 74;
pub const DW_AT_variable_parameter: ::libc::c_uint = 75;
pub const DW_AT_virtuality: ::libc::c_uint = 76;
pub const DW_AT_vtable_elem_location: ::libc::c_uint = 77;
pub const DW_AT_allocated: ::libc::c_uint = 78;
pub const DW_AT_associated: ::libc::c_uint = 79;
pub const DW_AT_data_location: ::libc::c_uint = 80;
pub const DW_AT_byte_stride: ::libc::c_uint = 81;
pub const DW_AT_entry_pc: ::libc::c_uint = 82;
pub const DW_AT_use_UTF8: ::libc::c_uint = 83;
pub const DW_AT_extension: ::libc::c_uint = 84;
pub const DW_AT_ranges: ::libc::c_uint = 85;
pub const DW_AT_trampoline: ::libc::c_uint = 86;
pub const DW_AT_call_column: ::libc::c_uint = 87;
pub const DW_AT_call_file: ::libc::c_uint = 88;
pub const DW_AT_call_line: ::libc::c_uint = 89;
pub const DW_AT_description: ::libc::c_uint = 90;
pub const DW_AT_binary_scale: ::libc::c_uint = 91;
pub const DW_AT_decimal_scale: ::libc::c_uint = 92;
pub const DW_AT_small: ::libc::c_uint = 93;
pub const DW_AT_decimal_sign: ::libc::c_uint = 94;
pub const DW_AT_digit_count: ::libc::c_uint = 95;
pub const DW_AT_picture_string: ::libc::c_uint = 96;
pub const DW_AT_mutable: ::libc::c_uint = 97;
pub const DW_AT_threads_scaled: ::libc::c_uint = 98;
pub const DW_AT_explicit: ::libc::c_uint = 99;
pub const DW_AT_object_pointer: ::libc::c_uint = 100;
pub const DW_AT_endianity: ::libc::c_uint = 101;
pub const DW_AT_elemental: ::libc::c_uint = 102;
pub const DW_AT_pure: ::libc::c_uint = 103;
pub const DW_AT_recursive: ::libc::c_uint = 104;
pub const DW_AT_signature: ::libc::c_uint = 105;
pub const DW_AT_main_subprogram: ::libc::c_uint = 106;
pub const DW_AT_data_bit_offset: ::libc::c_uint = 107;
pub const DW_AT_const_expr: ::libc::c_uint = 108;
pub const DW_AT_enum_class: ::libc::c_uint = 109;
pub const DW_AT_linkage_name: ::libc::c_uint = 110;
pub const DW_AT_string_length_bit_size: ::libc::c_uint = 111;
pub const DW_AT_string_length_byte_size: ::libc::c_uint = 112;
pub const DW_AT_rank: ::libc::c_uint = 113;
pub const DW_AT_str_offsets_base: ::libc::c_uint = 114;
pub const DW_AT_addr_base: ::libc::c_uint = 115;
pub const DW_AT_rnglists_base: ::libc::c_uint = 116;
pub const DW_AT_dwo_name: ::libc::c_uint = 118;
pub const DW_AT_reference: ::libc::c_uint = 119;
pub const DW_AT_rvalue_reference: ::libc::c_uint = 120;
pub const DW_AT_macros: ::libc::c_uint = 121;
pub const DW_AT_call_all_calls: ::libc::c_uint = 122;
pub const DW_AT_call_all_source_calls: ::libc::c_uint = 123;
pub const DW_AT_call_all_tail_calls: ::libc::c_uint = 124;
pub const DW_AT_call_return_pc: ::libc::c_uint = 125;
pub const DW_AT_call_value: ::libc::c_uint = 126;
pub const DW_AT_call_origin: ::libc::c_uint = 127;
pub const DW_AT_call_parameter: ::libc::c_uint = 128;
pub const DW_AT_call_pc: ::libc::c_uint = 129;
pub const DW_AT_call_tail_call: ::libc::c_uint = 130;
pub const DW_AT_call_target: ::libc::c_uint = 131;
pub const DW_AT_call_target_clobbered: ::libc::c_uint = 132;
pub const DW_AT_call_data_location: ::libc::c_uint = 133;
pub const DW_AT_call_data_value: ::libc::c_uint = 134;
pub const DW_AT_noreturn: ::libc::c_uint = 135;
pub const DW_AT_alignment: ::libc::c_uint = 136;
pub const DW_AT_export_symbols: ::libc::c_uint = 137;
pub const DW_AT_deleted: ::libc::c_uint = 138;
pub const DW_AT_defaulted: ::libc::c_uint = 139;
pub const DW_AT_loclists_base: ::libc::c_uint = 140;
pub const DW_AT_lo_user: ::libc::c_uint = 8192;
pub const DW_AT_MIPS_fde: ::libc::c_uint = 8193;
pub const DW_AT_MIPS_loop_begin: ::libc::c_uint = 8194;
pub const DW_AT_MIPS_tail_loop_begin: ::libc::c_uint = 8195;
pub const DW_AT_MIPS_epilog_begin: ::libc::c_uint = 8196;
pub const DW_AT_MIPS_loop_unroll_factor: ::libc::c_uint = 8197;
pub const DW_AT_MIPS_software_pipeline_depth: ::libc::c_uint = 8198;
pub const DW_AT_MIPS_linkage_name: ::libc::c_uint = 8199;
pub const DW_AT_MIPS_stride: ::libc::c_uint = 8200;
pub const DW_AT_MIPS_abstract_name: ::libc::c_uint = 8201;
pub const DW_AT_MIPS_clone_origin: ::libc::c_uint = 8202;
pub const DW_AT_MIPS_has_inlines: ::libc::c_uint = 8203;
pub const DW_AT_MIPS_stride_byte: ::libc::c_uint = 8204;
pub const DW_AT_MIPS_stride_elem: ::libc::c_uint = 8205;
pub const DW_AT_MIPS_ptr_dopetype: ::libc::c_uint = 8206;
pub const DW_AT_MIPS_allocatable_dopetype: ::libc::c_uint = 8207;
pub const DW_AT_MIPS_assumed_shape_dopetype: ::libc::c_uint = 8208;
pub const DW_AT_MIPS_assumed_size: ::libc::c_uint = 8209;
pub const DW_AT_sf_names: ::libc::c_uint = 8449;
pub const DW_AT_src_info: ::libc::c_uint = 8450;
pub const DW_AT_mac_info: ::libc::c_uint = 8451;
pub const DW_AT_src_coords: ::libc::c_uint = 8452;
pub const DW_AT_body_begin: ::libc::c_uint = 8453;
pub const DW_AT_body_end: ::libc::c_uint = 8454;
pub const DW_AT_GNU_vector: ::libc::c_uint = 8455;
pub const DW_AT_GNU_guarded_by: ::libc::c_uint = 8456;
pub const DW_AT_GNU_pt_guarded_by: ::libc::c_uint = 8457;
pub const DW_AT_GNU_guarded: ::libc::c_uint = 8458;
pub const DW_AT_GNU_pt_guarded: ::libc::c_uint = 8459;
pub const DW_AT_GNU_locks_excluded: ::libc::c_uint = 8460;
pub const DW_AT_GNU_exclusive_locks_required: ::libc::c_uint = 8461;
pub const DW_AT_GNU_shared_locks_required: ::libc::c_uint = 8462;
pub const DW_AT_GNU_odr_signature: ::libc::c_uint = 8463;
pub const DW_AT_GNU_template_name: ::libc::c_uint = 8464;
pub const DW_AT_GNU_call_site_value: ::libc::c_uint = 8465;
pub const DW_AT_GNU_call_site_data_value: ::libc::c_uint = 8466;
pub const DW_AT_GNU_call_site_target: ::libc::c_uint = 8467;
pub const DW_AT_GNU_call_site_target_clobbered: ::libc::c_uint = 8468;
pub const DW_AT_GNU_tail_call: ::libc::c_uint = 8469;
pub const DW_AT_GNU_all_tail_call_sites: ::libc::c_uint = 8470;
pub const DW_AT_GNU_all_call_sites: ::libc::c_uint = 8471;
pub const DW_AT_GNU_all_source_call_sites: ::libc::c_uint = 8472;
pub const DW_AT_GNU_locviews: ::libc::c_uint = 8503;
pub const DW_AT_GNU_entry_view: ::libc::c_uint = 8504;
pub const DW_AT_GNU_macros: ::libc::c_uint = 8473;
pub const DW_AT_GNU_deleted: ::libc::c_uint = 8474;
pub const DW_AT_GNU_dwo_name: ::libc::c_uint = 8496;
pub const DW_AT_GNU_dwo_id: ::libc::c_uint = 8497;
pub const DW_AT_GNU_ranges_base: ::libc::c_uint = 8498;
pub const DW_AT_GNU_addr_base: ::libc::c_uint = 8499;
pub const DW_AT_GNU_pubnames: ::libc::c_uint = 8500;
pub const DW_AT_GNU_pubtypes: ::libc::c_uint = 8501;
pub const DW_AT_GNU_numerator: ::libc::c_uint = 8963;
pub const DW_AT_GNU_denominator: ::libc::c_uint = 8964;
pub const DW_AT_GNU_bias: ::libc::c_uint = 8965;
pub const DW_AT_hi_user: ::libc::c_uint = 16383;
pub type _bindgen_ty_9 = ::libc::c_uint;
pub const DW_FORM_addr: ::libc::c_uint = 1;
pub const DW_FORM_block2: ::libc::c_uint = 3;
pub const DW_FORM_block4: ::libc::c_uint = 4;
pub const DW_FORM_data2: ::libc::c_uint = 5;
pub const DW_FORM_data4: ::libc::c_uint = 6;
pub const DW_FORM_data8: ::libc::c_uint = 7;
pub const DW_FORM_string: ::libc::c_uint = 8;
pub const DW_FORM_block: ::libc::c_uint = 9;
pub const DW_FORM_block1: ::libc::c_uint = 10;
pub const DW_FORM_data1: ::libc::c_uint = 11;
pub const DW_FORM_flag: ::libc::c_uint = 12;
pub const DW_FORM_sdata: ::libc::c_uint = 13;
pub const DW_FORM_strp: ::libc::c_uint = 14;
pub const DW_FORM_udata: ::libc::c_uint = 15;
pub const DW_FORM_ref_addr: ::libc::c_uint = 16;
pub const DW_FORM_ref1: ::libc::c_uint = 17;
pub const DW_FORM_ref2: ::libc::c_uint = 18;
pub const DW_FORM_ref4: ::libc::c_uint = 19;
pub const DW_FORM_ref8: ::libc::c_uint = 20;
pub const DW_FORM_ref_udata: ::libc::c_uint = 21;
pub const DW_FORM_indirect: ::libc::c_uint = 22;
pub const DW_FORM_sec_offset: ::libc::c_uint = 23;
pub const DW_FORM_exprloc: ::libc::c_uint = 24;
pub const DW_FORM_flag_present: ::libc::c_uint = 25;
pub const DW_FORM_strx: ::libc::c_uint = 26;
pub const DW_FORM_addrx: ::libc::c_uint = 27;
pub const DW_FORM_ref_sup4: ::libc::c_uint = 28;
pub const DW_FORM_strp_sup: ::libc::c_uint = 29;
pub const DW_FORM_data16: ::libc::c_uint = 30;
pub const DW_FORM_line_strp: ::libc::c_uint = 31;
pub const DW_FORM_ref_sig8: ::libc::c_uint = 32;
pub const DW_FORM_implicit_const: ::libc::c_uint = 33;
pub const DW_FORM_loclistx: ::libc::c_uint = 34;
pub const DW_FORM_rnglistx: ::libc::c_uint = 35;
pub const DW_FORM_ref_sup8: ::libc::c_uint = 36;
pub const DW_FORM_strx1: ::libc::c_uint = 37;
pub const DW_FORM_strx2: ::libc::c_uint = 38;
pub const DW_FORM_strx3: ::libc::c_uint = 39;
pub const DW_FORM_strx4: ::libc::c_uint = 40;
pub const DW_FORM_addrx1: ::libc::c_uint = 41;
pub const DW_FORM_addrx2: ::libc::c_uint = 42;
pub const DW_FORM_addrx3: ::libc::c_uint = 43;
pub const DW_FORM_addrx4: ::libc::c_uint = 44;
pub const DW_FORM_GNU_addr_index: ::libc::c_uint = 7937;
pub const DW_FORM_GNU_str_index: ::libc::c_uint = 7938;
pub const DW_FORM_GNU_ref_alt: ::libc::c_uint = 7968;
pub const DW_FORM_GNU_strp_alt: ::libc::c_uint = 7969;
pub type _bindgen_ty_10 = ::libc::c_uint;
pub const DW_OP_addr: ::libc::c_uint = 3;
pub const DW_OP_deref: ::libc::c_uint = 6;
pub const DW_OP_const1u: ::libc::c_uint = 8;
pub const DW_OP_const1s: ::libc::c_uint = 9;
pub const DW_OP_const2u: ::libc::c_uint = 10;
pub const DW_OP_const2s: ::libc::c_uint = 11;
pub const DW_OP_const4u: ::libc::c_uint = 12;
pub const DW_OP_const4s: ::libc::c_uint = 13;
pub const DW_OP_const8u: ::libc::c_uint = 14;
pub const DW_OP_const8s: ::libc::c_uint = 15;
pub const DW_OP_constu: ::libc::c_uint = 16;
pub const DW_OP_consts: ::libc::c_uint = 17;
pub const DW_OP_dup: ::libc::c_uint = 18;
pub const DW_OP_drop: ::libc::c_uint = 19;
pub const DW_OP_over: ::libc::c_uint = 20;
pub const DW_OP_pick: ::libc::c_uint = 21;
pub const DW_OP_swap: ::libc::c_uint = 22;
pub const DW_OP_rot: ::libc::c_uint = 23;
pub const DW_OP_xderef: ::libc::c_uint = 24;
pub const DW_OP_abs: ::libc::c_uint = 25;
pub const DW_OP_and: ::libc::c_uint = 26;
pub const DW_OP_div: ::libc::c_uint = 27;
pub const DW_OP_minus: ::libc::c_uint = 28;
pub const DW_OP_mod: ::libc::c_uint = 29;
pub const DW_OP_mul: ::libc::c_uint = 30;
pub const DW_OP_neg: ::libc::c_uint = 31;
pub const DW_OP_not: ::libc::c_uint = 32;
pub const DW_OP_or: ::libc::c_uint = 33;
pub const DW_OP_plus: ::libc::c_uint = 34;
pub const DW_OP_plus_uconst: ::libc::c_uint = 35;
pub const DW_OP_shl: ::libc::c_uint = 36;
pub const DW_OP_shr: ::libc::c_uint = 37;
pub const DW_OP_shra: ::libc::c_uint = 38;
pub const DW_OP_xor: ::libc::c_uint = 39;
pub const DW_OP_bra: ::libc::c_uint = 40;
pub const DW_OP_eq: ::libc::c_uint = 41;
pub const DW_OP_ge: ::libc::c_uint = 42;
pub const DW_OP_gt: ::libc::c_uint = 43;
pub const DW_OP_le: ::libc::c_uint = 44;
pub const DW_OP_lt: ::libc::c_uint = 45;
pub const DW_OP_ne: ::libc::c_uint = 46;
pub const DW_OP_skip: ::libc::c_uint = 47;
pub const DW_OP_lit0: ::libc::c_uint = 48;
pub const DW_OP_lit1: ::libc::c_uint = 49;
pub const DW_OP_lit2: ::libc::c_uint = 50;
pub const DW_OP_lit3: ::libc::c_uint = 51;
pub const DW_OP_lit4: ::libc::c_uint = 52;
pub const DW_OP_lit5: ::libc::c_uint = 53;
pub const DW_OP_lit6: ::libc::c_uint = 54;
pub const DW_OP_lit7: ::libc::c_uint = 55;
pub const DW_OP_lit8: ::libc::c_uint = 56;
pub const DW_OP_lit9: ::libc::c_uint = 57;
pub const DW_OP_lit10: ::libc::c_uint = 58;
pub const DW_OP_lit11: ::libc::c_uint = 59;
pub const DW_OP_lit12: ::libc::c_uint = 60;
pub const DW_OP_lit13: ::libc::c_uint = 61;
pub const DW_OP_lit14: ::libc::c_uint = 62;
pub const DW_OP_lit15: ::libc::c_uint = 63;
pub const DW_OP_lit16: ::libc::c_uint = 64;
pub const DW_OP_lit17: ::libc::c_uint = 65;
pub const DW_OP_lit18: ::libc::c_uint = 66;
pub const DW_OP_lit19: ::libc::c_uint = 67;
pub const DW_OP_lit20: ::libc::c_uint = 68;
pub const DW_OP_lit21: ::libc::c_uint = 69;
pub const DW_OP_lit22: ::libc::c_uint = 70;
pub const DW_OP_lit23: ::libc::c_uint = 71;
pub const DW_OP_lit24: ::libc::c_uint = 72;
pub const DW_OP_lit25: ::libc::c_uint = 73;
pub const DW_OP_lit26: ::libc::c_uint = 74;
pub const DW_OP_lit27: ::libc::c_uint = 75;
pub const DW_OP_lit28: ::libc::c_uint = 76;
pub const DW_OP_lit29: ::libc::c_uint = 77;
pub const DW_OP_lit30: ::libc::c_uint = 78;
pub const DW_OP_lit31: ::libc::c_uint = 79;
pub const DW_OP_reg0: ::libc::c_uint = 80;
pub const DW_OP_reg1: ::libc::c_uint = 81;
pub const DW_OP_reg2: ::libc::c_uint = 82;
pub const DW_OP_reg3: ::libc::c_uint = 83;
pub const DW_OP_reg4: ::libc::c_uint = 84;
pub const DW_OP_reg5: ::libc::c_uint = 85;
pub const DW_OP_reg6: ::libc::c_uint = 86;
pub const DW_OP_reg7: ::libc::c_uint = 87;
pub const DW_OP_reg8: ::libc::c_uint = 88;
pub const DW_OP_reg9: ::libc::c_uint = 89;
pub const DW_OP_reg10: ::libc::c_uint = 90;
pub const DW_OP_reg11: ::libc::c_uint = 91;
pub const DW_OP_reg12: ::libc::c_uint = 92;
pub const DW_OP_reg13: ::libc::c_uint = 93;
pub const DW_OP_reg14: ::libc::c_uint = 94;
pub const DW_OP_reg15: ::libc::c_uint = 95;
pub const DW_OP_reg16: ::libc::c_uint = 96;
pub const DW_OP_reg17: ::libc::c_uint = 97;
pub const DW_OP_reg18: ::libc::c_uint = 98;
pub const DW_OP_reg19: ::libc::c_uint = 99;
pub const DW_OP_reg20: ::libc::c_uint = 100;
pub const DW_OP_reg21: ::libc::c_uint = 101;
pub const DW_OP_reg22: ::libc::c_uint = 102;
pub const DW_OP_reg23: ::libc::c_uint = 103;
pub const DW_OP_reg24: ::libc::c_uint = 104;
pub const DW_OP_reg25: ::libc::c_uint = 105;
pub const DW_OP_reg26: ::libc::c_uint = 106;
pub const DW_OP_reg27: ::libc::c_uint = 107;
pub const DW_OP_reg28: ::libc::c_uint = 108;
pub const DW_OP_reg29: ::libc::c_uint = 109;
pub const DW_OP_reg30: ::libc::c_uint = 110;
pub const DW_OP_reg31: ::libc::c_uint = 111;
pub const DW_OP_breg0: ::libc::c_uint = 112;
pub const DW_OP_breg1: ::libc::c_uint = 113;
pub const DW_OP_breg2: ::libc::c_uint = 114;
pub const DW_OP_breg3: ::libc::c_uint = 115;
pub const DW_OP_breg4: ::libc::c_uint = 116;
pub const DW_OP_breg5: ::libc::c_uint = 117;
pub const DW_OP_breg6: ::libc::c_uint = 118;
pub const DW_OP_breg7: ::libc::c_uint = 119;
pub const DW_OP_breg8: ::libc::c_uint = 120;
pub const DW_OP_breg9: ::libc::c_uint = 121;
pub const DW_OP_breg10: ::libc::c_uint = 122;
pub const DW_OP_breg11: ::libc::c_uint = 123;
pub const DW_OP_breg12: ::libc::c_uint = 124;
pub const DW_OP_breg13: ::libc::c_uint = 125;
pub const DW_OP_breg14: ::libc::c_uint = 126;
pub const DW_OP_breg15: ::libc::c_uint = 127;
pub const DW_OP_breg16: ::libc::c_uint = 128;
pub const DW_OP_breg17: ::libc::c_uint = 129;
pub const DW_OP_breg18: ::libc::c_uint = 130;
pub const DW_OP_breg19: ::libc::c_uint = 131;
pub const DW_OP_breg20: ::libc::c_uint = 132;
pub const DW_OP_breg21: ::libc::c_uint = 133;
pub const DW_OP_breg22: ::libc::c_uint = 134;
pub const DW_OP_breg23: ::libc::c_uint = 135;
pub const DW_OP_breg24: ::libc::c_uint = 136;
pub const DW_OP_breg25: ::libc::c_uint = 137;
pub const DW_OP_breg26: ::libc::c_uint = 138;
pub const DW_OP_breg27: ::libc::c_uint = 139;
pub const DW_OP_breg28: ::libc::c_uint = 140;
pub const DW_OP_breg29: ::libc::c_uint = 141;
pub const DW_OP_breg30: ::libc::c_uint = 142;
pub const DW_OP_breg31: ::libc::c_uint = 143;
pub const DW_OP_regx: ::libc::c_uint = 144;
pub const DW_OP_fbreg: ::libc::c_uint = 145;
pub const DW_OP_bregx: ::libc::c_uint = 146;
pub const DW_OP_piece: ::libc::c_uint = 147;
pub const DW_OP_deref_size: ::libc::c_uint = 148;
pub const DW_OP_xderef_size: ::libc::c_uint = 149;
pub const DW_OP_nop: ::libc::c_uint = 150;
pub const DW_OP_push_object_address: ::libc::c_uint = 151;
pub const DW_OP_call2: ::libc::c_uint = 152;
pub const DW_OP_call4: ::libc::c_uint = 153;
pub const DW_OP_call_ref: ::libc::c_uint = 154;
pub const DW_OP_form_tls_address: ::libc::c_uint = 155;
pub const DW_OP_call_frame_cfa: ::libc::c_uint = 156;
pub const DW_OP_bit_piece: ::libc::c_uint = 157;
pub const DW_OP_implicit_value: ::libc::c_uint = 158;
pub const DW_OP_stack_value: ::libc::c_uint = 159;
pub const DW_OP_implicit_pointer: ::libc::c_uint = 160;
pub const DW_OP_addrx: ::libc::c_uint = 161;
pub const DW_OP_constx: ::libc::c_uint = 162;
pub const DW_OP_entry_value: ::libc::c_uint = 163;
pub const DW_OP_const_type: ::libc::c_uint = 164;
pub const DW_OP_regval_type: ::libc::c_uint = 165;
pub const DW_OP_deref_type: ::libc::c_uint = 166;
pub const DW_OP_xderef_type: ::libc::c_uint = 167;
pub const DW_OP_convert: ::libc::c_uint = 168;
pub const DW_OP_reinterpret: ::libc::c_uint = 169;
pub const DW_OP_GNU_push_tls_address: ::libc::c_uint = 224;
pub const DW_OP_GNU_uninit: ::libc::c_uint = 240;
pub const DW_OP_GNU_encoded_addr: ::libc::c_uint = 241;
pub const DW_OP_GNU_implicit_pointer: ::libc::c_uint = 242;
pub const DW_OP_GNU_entry_value: ::libc::c_uint = 243;
pub const DW_OP_GNU_const_type: ::libc::c_uint = 244;
pub const DW_OP_GNU_regval_type: ::libc::c_uint = 245;
pub const DW_OP_GNU_deref_type: ::libc::c_uint = 246;
pub const DW_OP_GNU_convert: ::libc::c_uint = 247;
pub const DW_OP_GNU_reinterpret: ::libc::c_uint = 249;
pub const DW_OP_GNU_parameter_ref: ::libc::c_uint = 250;
pub const DW_OP_GNU_addr_index: ::libc::c_uint = 251;
pub const DW_OP_GNU_const_index: ::libc::c_uint = 252;
pub const DW_OP_GNU_variable_value: ::libc::c_uint = 253;
pub const DW_OP_lo_user: ::libc::c_uint = 224;
pub const DW_OP_hi_user: ::libc::c_uint = 255;
pub type _bindgen_ty_11 = ::libc::c_uint;
pub const DW_ATE_void: ::libc::c_uint = 0;
pub const DW_ATE_address: ::libc::c_uint = 1;
pub const DW_ATE_boolean: ::libc::c_uint = 2;
pub const DW_ATE_complex_float: ::libc::c_uint = 3;
pub const DW_ATE_float: ::libc::c_uint = 4;
pub const DW_ATE_signed: ::libc::c_uint = 5;
pub const DW_ATE_signed_char: ::libc::c_uint = 6;
pub const DW_ATE_unsigned: ::libc::c_uint = 7;
pub const DW_ATE_unsigned_char: ::libc::c_uint = 8;
pub const DW_ATE_imaginary_float: ::libc::c_uint = 9;
pub const DW_ATE_packed_decimal: ::libc::c_uint = 10;
pub const DW_ATE_numeric_string: ::libc::c_uint = 11;
pub const DW_ATE_edited: ::libc::c_uint = 12;
pub const DW_ATE_signed_fixed: ::libc::c_uint = 13;
pub const DW_ATE_unsigned_fixed: ::libc::c_uint = 14;
pub const DW_ATE_decimal_float: ::libc::c_uint = 15;
pub const DW_ATE_UTF: ::libc::c_uint = 16;
pub const DW_ATE_UCS: ::libc::c_uint = 17;
pub const DW_ATE_ASCII: ::libc::c_uint = 18;
pub const DW_ATE_lo_user: ::libc::c_uint = 128;
pub const DW_ATE_hi_user: ::libc::c_uint = 255;
pub type _bindgen_ty_12 = ::libc::c_uint;
pub const DW_DS_unsigned: ::libc::c_uint = 1;
pub const DW_DS_leading_overpunch: ::libc::c_uint = 2;
pub const DW_DS_trailing_overpunch: ::libc::c_uint = 3;
pub const DW_DS_leading_separate: ::libc::c_uint = 4;
pub const DW_DS_trailing_separate: ::libc::c_uint = 5;
pub type _bindgen_ty_13 = ::libc::c_uint;
pub const DW_END_default: ::libc::c_uint = 0;
pub const DW_END_big: ::libc::c_uint = 1;
pub const DW_END_little: ::libc::c_uint = 2;
pub const DW_END_lo_user: ::libc::c_uint = 64;
pub const DW_END_hi_user: ::libc::c_uint = 255;
pub type _bindgen_ty_14 = ::libc::c_uint;
pub const DW_ACCESS_public: ::libc::c_uint = 1;
pub const DW_ACCESS_protected: ::libc::c_uint = 2;
pub const DW_ACCESS_private: ::libc::c_uint = 3;
pub type _bindgen_ty_15 = ::libc::c_uint;
pub const DW_VIS_local: ::libc::c_uint = 1;
pub const DW_VIS_exported: ::libc::c_uint = 2;
pub const DW_VIS_qualified: ::libc::c_uint = 3;
pub type _bindgen_ty_16 = ::libc::c_uint;
pub const DW_VIRTUALITY_none: ::libc::c_uint = 0;
pub const DW_VIRTUALITY_virtual: ::libc::c_uint = 1;
pub const DW_VIRTUALITY_pure_virtual: ::libc::c_uint = 2;
pub type _bindgen_ty_17 = ::libc::c_uint;
pub const DW_LANG_C89: ::libc::c_uint = 1;
pub const DW_LANG_C: ::libc::c_uint = 2;
pub const DW_LANG_Ada83: ::libc::c_uint = 3;
pub const DW_LANG_C_plus_plus: ::libc::c_uint = 4;
pub const DW_LANG_Cobol74: ::libc::c_uint = 5;
pub const DW_LANG_Cobol85: ::libc::c_uint = 6;
pub const DW_LANG_Fortran77: ::libc::c_uint = 7;
pub const DW_LANG_Fortran90: ::libc::c_uint = 8;
pub const DW_LANG_Pascal83: ::libc::c_uint = 9;
pub const DW_LANG_Modula2: ::libc::c_uint = 10;
pub const DW_LANG_Java: ::libc::c_uint = 11;
pub const DW_LANG_C99: ::libc::c_uint = 12;
pub const DW_LANG_Ada95: ::libc::c_uint = 13;
pub const DW_LANG_Fortran95: ::libc::c_uint = 14;
pub const DW_LANG_PLI: ::libc::c_uint = 15;
pub const DW_LANG_ObjC: ::libc::c_uint = 16;
pub const DW_LANG_ObjC_plus_plus: ::libc::c_uint = 17;
pub const DW_LANG_UPC: ::libc::c_uint = 18;
pub const DW_LANG_D: ::libc::c_uint = 19;
pub const DW_LANG_Python: ::libc::c_uint = 20;
pub const DW_LANG_OpenCL: ::libc::c_uint = 21;
pub const DW_LANG_Go: ::libc::c_uint = 22;
pub const DW_LANG_Modula3: ::libc::c_uint = 23;
pub const DW_LANG_Haskell: ::libc::c_uint = 24;
pub const DW_LANG_C_plus_plus_03: ::libc::c_uint = 25;
pub const DW_LANG_C_plus_plus_11: ::libc::c_uint = 26;
pub const DW_LANG_OCaml: ::libc::c_uint = 27;
pub const DW_LANG_Rust: ::libc::c_uint = 28;
pub const DW_LANG_C11: ::libc::c_uint = 29;
pub const DW_LANG_Swift: ::libc::c_uint = 30;
pub const DW_LANG_Julia: ::libc::c_uint = 31;
pub const DW_LANG_Dylan: ::libc::c_uint = 32;
pub const DW_LANG_C_plus_plus_14: ::libc::c_uint = 33;
pub const DW_LANG_Fortran03: ::libc::c_uint = 34;
pub const DW_LANG_Fortran08: ::libc::c_uint = 35;
pub const DW_LANG_RenderScript: ::libc::c_uint = 36;
pub const DW_LANG_BLISS: ::libc::c_uint = 37;
pub const DW_LANG_lo_user: ::libc::c_uint = 32768;
pub const DW_LANG_Mips_Assembler: ::libc::c_uint = 32769;
pub const DW_LANG_hi_user: ::libc::c_uint = 65535;
pub type _bindgen_ty_18 = ::libc::c_uint;
pub const DW_ID_case_sensitive: ::libc::c_uint = 0;
pub const DW_ID_up_case: ::libc::c_uint = 1;
pub const DW_ID_down_case: ::libc::c_uint = 2;
pub const DW_ID_case_insensitive: ::libc::c_uint = 3;
pub type _bindgen_ty_19 = ::libc::c_uint;
pub const DW_CC_normal: ::libc::c_uint = 1;
pub const DW_CC_program: ::libc::c_uint = 2;
pub const DW_CC_nocall: ::libc::c_uint = 3;
pub const DW_CC_pass_by_reference: ::libc::c_uint = 4;
pub const DW_CC_pass_by_value: ::libc::c_uint = 5;
pub const DW_CC_lo_user: ::libc::c_uint = 64;
pub const DW_CC_hi_user: ::libc::c_uint = 255;
pub type _bindgen_ty_20 = ::libc::c_uint;
pub const DW_INL_not_inlined: ::libc::c_uint = 0;
pub const DW_INL_inlined: ::libc::c_uint = 1;
pub const DW_INL_declared_not_inlined: ::libc::c_uint = 2;
pub const DW_INL_declared_inlined: ::libc::c_uint = 3;
pub type _bindgen_ty_21 = ::libc::c_uint;
pub const DW_ORD_row_major: ::libc::c_uint = 0;
pub const DW_ORD_col_major: ::libc::c_uint = 1;
pub type _bindgen_ty_22 = ::libc::c_uint;
pub const DW_DSC_label: ::libc::c_uint = 0;
pub const DW_DSC_range: ::libc::c_uint = 1;
pub type _bindgen_ty_23 = ::libc::c_uint;
pub const DW_DEFAULTED_no: ::libc::c_uint = 0;
pub const DW_DEFAULTED_in_class: ::libc::c_uint = 1;
pub const DW_DEFAULTED_out_of_class: ::libc::c_uint = 2;
pub type _bindgen_ty_24 = ::libc::c_uint;
pub const DW_LNCT_path: ::libc::c_uint = 1;
pub const DW_LNCT_directory_index: ::libc::c_uint = 2;
pub const DW_LNCT_timestamp: ::libc::c_uint = 3;
pub const DW_LNCT_size: ::libc::c_uint = 4;
pub const DW_LNCT_MD5: ::libc::c_uint = 5;
pub const DW_LNCT_lo_user: ::libc::c_uint = 8192;
pub const DW_LNCT_hi_user: ::libc::c_uint = 16383;
pub type _bindgen_ty_25 = ::libc::c_uint;
pub const DW_LNS_copy: ::libc::c_uint = 1;
pub const DW_LNS_advance_pc: ::libc::c_uint = 2;
pub const DW_LNS_advance_line: ::libc::c_uint = 3;
pub const DW_LNS_set_file: ::libc::c_uint = 4;
pub const DW_LNS_set_column: ::libc::c_uint = 5;
pub const DW_LNS_negate_stmt: ::libc::c_uint = 6;
pub const DW_LNS_set_basic_block: ::libc::c_uint = 7;
pub const DW_LNS_const_add_pc: ::libc::c_uint = 8;
pub const DW_LNS_fixed_advance_pc: ::libc::c_uint = 9;
pub const DW_LNS_set_prologue_end: ::libc::c_uint = 10;
pub const DW_LNS_set_epilogue_begin: ::libc::c_uint = 11;
pub const DW_LNS_set_isa: ::libc::c_uint = 12;
pub type _bindgen_ty_26 = ::libc::c_uint;
pub const DW_LNE_end_sequence: ::libc::c_uint = 1;
pub const DW_LNE_set_address: ::libc::c_uint = 2;
pub const DW_LNE_define_file: ::libc::c_uint = 3;
pub const DW_LNE_set_discriminator: ::libc::c_uint = 4;
pub const DW_LNE_lo_user: ::libc::c_uint = 128;
pub const DW_LNE_NVIDIA_inlined_call: ::libc::c_uint = 144;
pub const DW_LNE_NVIDIA_set_function_name: ::libc::c_uint = 145;
pub const DW_LNE_hi_user: ::libc::c_uint = 255;
pub type _bindgen_ty_27 = ::libc::c_uint;
pub const DW_MACINFO_define: ::libc::c_uint = 1;
pub const DW_MACINFO_undef: ::libc::c_uint = 2;
pub const DW_MACINFO_start_file: ::libc::c_uint = 3;
pub const DW_MACINFO_end_file: ::libc::c_uint = 4;
pub const DW_MACINFO_vendor_ext: ::libc::c_uint = 255;
pub type _bindgen_ty_28 = ::libc::c_uint;
pub const DW_MACRO_define: ::libc::c_uint = 1;
pub const DW_MACRO_undef: ::libc::c_uint = 2;
pub const DW_MACRO_start_file: ::libc::c_uint = 3;
pub const DW_MACRO_end_file: ::libc::c_uint = 4;
pub const DW_MACRO_define_strp: ::libc::c_uint = 5;
pub const DW_MACRO_undef_strp: ::libc::c_uint = 6;
pub const DW_MACRO_import: ::libc::c_uint = 7;
pub const DW_MACRO_define_sup: ::libc::c_uint = 8;
pub const DW_MACRO_undef_sup: ::libc::c_uint = 9;
pub const DW_MACRO_import_sup: ::libc::c_uint = 10;
pub const DW_MACRO_define_strx: ::libc::c_uint = 11;
pub const DW_MACRO_undef_strx: ::libc::c_uint = 12;
pub const DW_MACRO_lo_user: ::libc::c_uint = 224;
pub const DW_MACRO_hi_user: ::libc::c_uint = 255;
pub type _bindgen_ty_29 = ::libc::c_uint;
pub const DW_RLE_end_of_list: ::libc::c_uint = 0;
pub const DW_RLE_base_addressx: ::libc::c_uint = 1;
pub const DW_RLE_startx_endx: ::libc::c_uint = 2;
pub const DW_RLE_startx_length: ::libc::c_uint = 3;
pub const DW_RLE_offset_pair: ::libc::c_uint = 4;
pub const DW_RLE_base_address: ::libc::c_uint = 5;
pub const DW_RLE_start_end: ::libc::c_uint = 6;
pub const DW_RLE_start_length: ::libc::c_uint = 7;
pub type _bindgen_ty_30 = ::libc::c_uint;
pub const DW_LLE_end_of_list: ::libc::c_uint = 0;
pub const DW_LLE_base_addressx: ::libc::c_uint = 1;
pub const DW_LLE_startx_endx: ::libc::c_uint = 2;
pub const DW_LLE_startx_length: ::libc::c_uint = 3;
pub const DW_LLE_offset_pair: ::libc::c_uint = 4;
pub const DW_LLE_default_location: ::libc::c_uint = 5;
pub const DW_LLE_base_address: ::libc::c_uint = 6;
pub const DW_LLE_start_end: ::libc::c_uint = 7;
pub const DW_LLE_start_length: ::libc::c_uint = 8;
pub type _bindgen_ty_31 = ::libc::c_uint;
pub const DW_LLE_GNU_end_of_list_entry: ::libc::c_uint = 0;
pub const DW_LLE_GNU_base_address_selection_entry: ::libc::c_uint = 1;
pub const DW_LLE_GNU_start_end_entry: ::libc::c_uint = 2;
pub const DW_LLE_GNU_start_length_entry: ::libc::c_uint = 3;
pub type _bindgen_ty_32 = ::libc::c_uint;
pub const DW_CFA_advance_loc: ::libc::c_uint = 64;
pub const DW_CFA_offset: ::libc::c_uint = 128;
pub const DW_CFA_restore: ::libc::c_uint = 192;
pub const DW_CFA_extended: ::libc::c_uint = 0;
pub const DW_CFA_nop: ::libc::c_uint = 0;
pub const DW_CFA_set_loc: ::libc::c_uint = 1;
pub const DW_CFA_advance_loc1: ::libc::c_uint = 2;
pub const DW_CFA_advance_loc2: ::libc::c_uint = 3;
pub const DW_CFA_advance_loc4: ::libc::c_uint = 4;
pub const DW_CFA_offset_extended: ::libc::c_uint = 5;
pub const DW_CFA_restore_extended: ::libc::c_uint = 6;
pub const DW_CFA_undefined: ::libc::c_uint = 7;
pub const DW_CFA_same_value: ::libc::c_uint = 8;
pub const DW_CFA_register: ::libc::c_uint = 9;
pub const DW_CFA_remember_state: ::libc::c_uint = 10;
pub const DW_CFA_restore_state: ::libc::c_uint = 11;
pub const DW_CFA_def_cfa: ::libc::c_uint = 12;
pub const DW_CFA_def_cfa_register: ::libc::c_uint = 13;
pub const DW_CFA_def_cfa_offset: ::libc::c_uint = 14;
pub const DW_CFA_def_cfa_expression: ::libc::c_uint = 15;
pub const DW_CFA_expression: ::libc::c_uint = 16;
pub const DW_CFA_offset_extended_sf: ::libc::c_uint = 17;
pub const DW_CFA_def_cfa_sf: ::libc::c_uint = 18;
pub const DW_CFA_def_cfa_offset_sf: ::libc::c_uint = 19;
pub const DW_CFA_val_offset: ::libc::c_uint = 20;
pub const DW_CFA_val_offset_sf: ::libc::c_uint = 21;
pub const DW_CFA_val_expression: ::libc::c_uint = 22;
pub const DW_CFA_low_user: ::libc::c_uint = 28;
pub const DW_CFA_MIPS_advance_loc8: ::libc::c_uint = 29;
pub const DW_CFA_GNU_window_save: ::libc::c_uint = 45;
pub const DW_CFA_AARCH64_negate_ra_state: ::libc::c_uint = 45;
pub const DW_CFA_GNU_args_size: ::libc::c_uint = 46;
pub const DW_CFA_GNU_negative_offset_extended: ::libc::c_uint = 47;
pub const DW_CFA_high_user: ::libc::c_uint = 63;
pub type _bindgen_ty_33 = ::libc::c_uint;
pub const DW_CIE_ID_32: ::libc::c_ulong = 4294967295;
pub const DW_CIE_ID_64: ::libc::c_ulong = 18446744073709551615;
pub type _bindgen_ty_34 = ::libc::c_ulong;
pub const DW_EH_PE_absptr: ::libc::c_uint = 0;
pub const DW_EH_PE_omit: ::libc::c_uint = 255;
pub const DW_EH_PE_uleb128: ::libc::c_uint = 1;
pub const DW_EH_PE_udata2: ::libc::c_uint = 2;
pub const DW_EH_PE_udata4: ::libc::c_uint = 3;
pub const DW_EH_PE_udata8: ::libc::c_uint = 4;
pub const DW_EH_PE_sleb128: ::libc::c_uint = 9;
pub const DW_EH_PE_sdata2: ::libc::c_uint = 10;
pub const DW_EH_PE_sdata4: ::libc::c_uint = 11;
pub const DW_EH_PE_sdata8: ::libc::c_uint = 12;
pub const DW_EH_PE_signed: ::libc::c_uint = 8;
pub const DW_EH_PE_pcrel: ::libc::c_uint = 16;
pub const DW_EH_PE_textrel: ::libc::c_uint = 32;
pub const DW_EH_PE_datarel: ::libc::c_uint = 48;
pub const DW_EH_PE_funcrel: ::libc::c_uint = 64;
pub const DW_EH_PE_aligned: ::libc::c_uint = 80;
pub const DW_EH_PE_indirect: ::libc::c_uint = 128;
pub type _bindgen_ty_35 = ::libc::c_uint;