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

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

pub const DWARF_GETMACROS_START: ::libc::c_longlong = -9223372036854775808;
pub const DW_AT_subscr_data: ::libc::c_uint = 10;
pub const DW_AT_element_list: ::libc::c_uint = 15;
pub const DW_AT_member: ::libc::c_uint = 20;
pub const DW_ADDR_none: ::libc::c_uint = 0;
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum Dwarf_Cmd { DWARF_C_READ = 0, DWARF_C_RDWR = 1, DWARF_C_WRITE = 2, }
pub const DWARF_CB_OK: _bindgen_ty_4 = 0;
pub const DWARF_CB_ABORT: _bindgen_ty_4 = 1;
pub type _bindgen_ty_4 = ::libc::c_uint;
pub const DW_TAG_invalid: _bindgen_ty_5 = 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)]
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 {
                & ( * ( 0 as * const Dwarf_Attribute ) ) . code as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Attribute ) ,
                "::" , stringify ! ( code ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Attribute ) ) . form as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Attribute ) ,
                "::" , stringify ! ( form ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Attribute ) ) . valp as * const _
                as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Attribute ) ,
                "::" , stringify ! ( valp ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Attribute ) ) . cu as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Attribute ) ,
                "::" , stringify ! ( cu ) ));
}
impl Clone for Dwarf_Attribute {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
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 {
                & ( * ( 0 as * const Dwarf_Block ) ) . length as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Block ) , "::" ,
                stringify ! ( length ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Block ) ) . data as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Block ) , "::" ,
                stringify ! ( data ) ));
}
impl Clone for Dwarf_Block {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
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 {
                & ( * ( 0 as * const Dwarf_Die ) ) . addr as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Die ) , "::" ,
                stringify ! ( addr ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Die ) ) . cu as * const _ as usize
                } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Die ) , "::" ,
                stringify ! ( cu ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Die ) ) . abbrev as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Die ) , "::" ,
                stringify ! ( abbrev ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Die ) ) . padding__ as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Die ) , "::" ,
                stringify ! ( padding__ ) ));
}
impl Clone for Dwarf_Die {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
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 {
                & ( * ( 0 as * const Dwarf_Global ) ) . cu_offset as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Global ) , "::" ,
                stringify ! ( cu_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Global ) ) . die_offset as * const
                _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Global ) , "::" ,
                stringify ! ( die_offset ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Global ) ) . name as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Global ) , "::" ,
                stringify ! ( name ) ));
}
impl Clone for Dwarf_Global {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
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 {
                & ( * ( 0 as * const Dwarf_Op ) ) . atom as * const _ as usize
                } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Op ) , "::" ,
                stringify ! ( atom ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Op ) ) . number as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Op ) , "::" ,
                stringify ! ( number ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Op ) ) . number2 as * const _ as
                usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Op ) , "::" ,
                stringify ! ( number2 ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_Op ) ) . offset as * const _ as
                usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_Op ) , "::" ,
                stringify ! ( offset ) ));
}
impl Clone for Dwarf_Op {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
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: usize,
    pub fde_augmentation_data_size: usize,
}
#[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 {
                & ( * ( 0 as * const Dwarf_CIE ) ) . CIE_id as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( CIE_id ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CIE ) ) . initial_instructions as *
                const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( initial_instructions ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CIE ) ) . initial_instructions_end
                as * const _ as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( initial_instructions_end ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CIE ) ) . code_alignment_factor as
                * const _ as usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( code_alignment_factor ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CIE ) ) . data_alignment_factor as
                * const _ as usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( data_alignment_factor ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CIE ) ) . return_address_register
                as * const _ as usize } , 40usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( return_address_register ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CIE ) ) . augmentation as * const _
                as usize } , 48usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( augmentation ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CIE ) ) . augmentation_data as *
                const _ as usize } , 56usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( augmentation_data ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CIE ) ) . augmentation_data_size as
                * const _ as usize } , 64usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( augmentation_data_size ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CIE ) ) .
                fde_augmentation_data_size as * const _ as usize } , 72usize ,
                concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CIE ) , "::" ,
                stringify ! ( fde_augmentation_data_size ) ));
}
impl Clone for Dwarf_CIE {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
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 {
                & ( * ( 0 as * const Dwarf_FDE ) ) . CIE_pointer as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_FDE ) , "::" ,
                stringify ! ( CIE_pointer ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_FDE ) ) . start as * const _ as
                usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_FDE ) , "::" ,
                stringify ! ( start ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_FDE ) ) . end as * const _ as usize
                } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_FDE ) , "::" ,
                stringify ! ( end ) ));
}
impl Clone for Dwarf_FDE {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Copy)]
pub union Dwarf_CFI_Entry {
    pub CIE_id: Dwarf_Off,
    pub cie: Dwarf_CIE,
    pub fde: Dwarf_FDE,
    _bindgen_union_align: [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 {
                & ( * ( 0 as * const Dwarf_CFI_Entry ) ) . CIE_id as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CFI_Entry ) ,
                "::" , stringify ! ( CIE_id ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CFI_Entry ) ) . cie as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CFI_Entry ) ,
                "::" , stringify ! ( cie ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwarf_CFI_Entry ) ) . fde as * const _ as
                usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwarf_CFI_Entry ) ,
                "::" , stringify ! ( fde ) ));
}
impl Clone for Dwarf_CFI_Entry {
    fn clone(&self) -> Self { *self }
}
#[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) -> *mut Dwarf;
}
extern "C" {
    pub fn dwarf_begin_elf(elf: *mut Elf, cmd: Dwarf_Cmd,
                           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_getscn_info(dwarf: *mut Dwarf) -> *mut Elf_Data;
}
extern "C" {
    pub fn dwarf_nextcu(dwarf: *mut Dwarf, off: Dwarf_Off,
                        next_off: *mut Dwarf_Off, header_sizep: *mut usize,
                        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 usize,
                           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_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_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 usize) -> *mut Dwarf_Abbrev;
}
extern "C" {
    pub fn dwarf_offabbrev(dbg: *mut Dwarf, offset: Dwarf_Off,
                           lengthp: *mut usize, 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 usize)
     -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getabbrevattr(abbrev: *mut Dwarf_Abbrev, idx: usize,
                               namep: *mut ::libc::c_uint,
                               formp: *mut ::libc::c_uint,
                               offset: *mut Dwarf_Off) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getstring(dbg: *mut Dwarf, offset: Dwarf_Off,
                           lenp: *mut usize) -> *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 usize)
     -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_onesrcline(lines: *mut Dwarf_Lines, idx: usize)
     -> *mut Dwarf_Line;
}
extern "C" {
    pub fn dwarf_getsrcfiles(cudie: *mut Dwarf_Die,
                             files: *mut *mut Dwarf_Files, nfiles: *mut usize)
     -> ::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 usize) -> ::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_filesrc(file: *mut Dwarf_Files, idx: usize,
                         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 usize)
     -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getsrcdirs(files: *mut Dwarf_Files,
                            result: *mut *const *const ::libc::c_char,
                            ndirs: *mut usize) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getlocation(attr: *mut Dwarf_Attribute,
                             expr: *mut *mut Dwarf_Op, exprlen: *mut usize)
     -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_getlocation_addr(attr: *mut Dwarf_Attribute,
                                  address: Dwarf_Addr,
                                  exprs: *mut *mut Dwarf_Op,
                                  exprlens: *mut usize, nlocs: usize)
     -> ::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 usize) -> 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 usize) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_onearange(aranges: *mut Dwarf_Aranges, idx: usize)
     -> *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 usize) -> ::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 usize) -> ::libc::c_int;
}
extern "C" {
    pub fn dwarf_macro_param(macro_: *mut Dwarf_Macro, idx: usize,
                             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 usize) -> ::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 usize)
     -> ::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)]
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 {
                & ( * ( 0 as * const Dwfl_Callbacks ) ) . find_elf as * const
                _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Callbacks ) , "::"
                , stringify ! ( find_elf ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwfl_Callbacks ) ) . find_debuginfo as *
                const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Callbacks ) , "::"
                , stringify ! ( find_debuginfo ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwfl_Callbacks ) ) . section_address as *
                const _ as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Callbacks ) , "::"
                , stringify ! ( section_address ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwfl_Callbacks ) ) . debuginfo_path as *
                const _ as usize } , 24usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Callbacks ) , "::"
                , stringify ! ( debuginfo_path ) ));
}
impl Clone for Dwfl_Callbacks {
    fn clone(&self) -> Self { *self }
}
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: usize, 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" {
    /// 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" {
    /// 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" {
    /// 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 usize)
     -> ::libc::c_int;
}
extern "C" {
    pub fn dwfl_onesrcline(cudie: *mut Dwarf_Die, idx: usize)
     -> *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 usize) -> ::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" {
    /// 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)]
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 {
                & ( * ( 0 as * const Dwfl_Thread_Callbacks ) ) . next_thread
                as * const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Thread_Callbacks )
                , "::" , stringify ! ( next_thread ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwfl_Thread_Callbacks ) ) . get_thread as
                * const _ as usize } , 8usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Thread_Callbacks )
                , "::" , stringify ! ( get_thread ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwfl_Thread_Callbacks ) ) . memory_read
                as * const _ as usize } , 16usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Thread_Callbacks )
                , "::" , stringify ! ( memory_read ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwfl_Thread_Callbacks ) ) .
                set_initial_registers as * const _ as usize } , 24usize ,
                concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Thread_Callbacks )
                , "::" , stringify ! ( set_initial_registers ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwfl_Thread_Callbacks ) ) . detach as *
                const _ as usize } , 32usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Thread_Callbacks )
                , "::" , stringify ! ( detach ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const Dwfl_Thread_Callbacks ) ) . thread_detach
                as * const _ as usize } , 40usize , concat ! (
                "Alignment of field: " , stringify ! ( Dwfl_Thread_Callbacks )
                , "::" , stringify ! ( thread_detach ) ));
}
impl Clone for Dwfl_Thread_Callbacks {
    fn clone(&self) -> Self { *self }
}
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)
     -> isize;
}
extern "C" {
    pub fn dwelf_elf_gnu_build_id(elf: *mut Elf,
                                  build_idp: *mut *const ::libc::c_void)
     -> isize;
}
extern "C" {
    pub fn dwelf_scn_gnu_compressed_size(scn: *mut Elf_Scn) -> isize;
}
#[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: usize)
     -> *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) -> usize;
}
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);
}
pub const DW_TAG_array_type: _bindgen_ty_6 = 1;
pub const DW_TAG_class_type: _bindgen_ty_6 = 2;
pub const DW_TAG_entry_point: _bindgen_ty_6 = 3;
pub const DW_TAG_enumeration_type: _bindgen_ty_6 = 4;
pub const DW_TAG_formal_parameter: _bindgen_ty_6 = 5;
pub const DW_TAG_imported_declaration: _bindgen_ty_6 = 8;
pub const DW_TAG_label: _bindgen_ty_6 = 10;
pub const DW_TAG_lexical_block: _bindgen_ty_6 = 11;
pub const DW_TAG_member: _bindgen_ty_6 = 13;
pub const DW_TAG_pointer_type: _bindgen_ty_6 = 15;
pub const DW_TAG_reference_type: _bindgen_ty_6 = 16;
pub const DW_TAG_compile_unit: _bindgen_ty_6 = 17;
pub const DW_TAG_string_type: _bindgen_ty_6 = 18;
pub const DW_TAG_structure_type: _bindgen_ty_6 = 19;
pub const DW_TAG_subroutine_type: _bindgen_ty_6 = 21;
pub const DW_TAG_typedef: _bindgen_ty_6 = 22;
pub const DW_TAG_union_type: _bindgen_ty_6 = 23;
pub const DW_TAG_unspecified_parameters: _bindgen_ty_6 = 24;
pub const DW_TAG_variant: _bindgen_ty_6 = 25;
pub const DW_TAG_common_block: _bindgen_ty_6 = 26;
pub const DW_TAG_common_inclusion: _bindgen_ty_6 = 27;
pub const DW_TAG_inheritance: _bindgen_ty_6 = 28;
pub const DW_TAG_inlined_subroutine: _bindgen_ty_6 = 29;
pub const DW_TAG_module: _bindgen_ty_6 = 30;
pub const DW_TAG_ptr_to_member_type: _bindgen_ty_6 = 31;
pub const DW_TAG_set_type: _bindgen_ty_6 = 32;
pub const DW_TAG_subrange_type: _bindgen_ty_6 = 33;
pub const DW_TAG_with_stmt: _bindgen_ty_6 = 34;
pub const DW_TAG_access_declaration: _bindgen_ty_6 = 35;
pub const DW_TAG_base_type: _bindgen_ty_6 = 36;
pub const DW_TAG_catch_block: _bindgen_ty_6 = 37;
pub const DW_TAG_const_type: _bindgen_ty_6 = 38;
pub const DW_TAG_constant: _bindgen_ty_6 = 39;
pub const DW_TAG_enumerator: _bindgen_ty_6 = 40;
pub const DW_TAG_file_type: _bindgen_ty_6 = 41;
pub const DW_TAG_friend: _bindgen_ty_6 = 42;
pub const DW_TAG_namelist: _bindgen_ty_6 = 43;
pub const DW_TAG_namelist_item: _bindgen_ty_6 = 44;
pub const DW_TAG_packed_type: _bindgen_ty_6 = 45;
pub const DW_TAG_subprogram: _bindgen_ty_6 = 46;
pub const DW_TAG_template_type_parameter: _bindgen_ty_6 = 47;
pub const DW_TAG_template_value_parameter: _bindgen_ty_6 = 48;
pub const DW_TAG_thrown_type: _bindgen_ty_6 = 49;
pub const DW_TAG_try_block: _bindgen_ty_6 = 50;
pub const DW_TAG_variant_part: _bindgen_ty_6 = 51;
pub const DW_TAG_variable: _bindgen_ty_6 = 52;
pub const DW_TAG_volatile_type: _bindgen_ty_6 = 53;
pub const DW_TAG_dwarf_procedure: _bindgen_ty_6 = 54;
pub const DW_TAG_restrict_type: _bindgen_ty_6 = 55;
pub const DW_TAG_interface_type: _bindgen_ty_6 = 56;
pub const DW_TAG_namespace: _bindgen_ty_6 = 57;
pub const DW_TAG_imported_module: _bindgen_ty_6 = 58;
pub const DW_TAG_unspecified_type: _bindgen_ty_6 = 59;
pub const DW_TAG_partial_unit: _bindgen_ty_6 = 60;
pub const DW_TAG_imported_unit: _bindgen_ty_6 = 61;
pub const DW_TAG_condition: _bindgen_ty_6 = 63;
pub const DW_TAG_shared_type: _bindgen_ty_6 = 64;
pub const DW_TAG_type_unit: _bindgen_ty_6 = 65;
pub const DW_TAG_rvalue_reference_type: _bindgen_ty_6 = 66;
pub const DW_TAG_template_alias: _bindgen_ty_6 = 67;
pub const DW_TAG_coarray_type: _bindgen_ty_6 = 68;
pub const DW_TAG_generic_subrange: _bindgen_ty_6 = 69;
pub const DW_TAG_dynamic_type: _bindgen_ty_6 = 70;
pub const DW_TAG_atomic_type: _bindgen_ty_6 = 71;
pub const DW_TAG_call_site: _bindgen_ty_6 = 72;
pub const DW_TAG_call_site_parameter: _bindgen_ty_6 = 73;
pub const DW_TAG_skeleton_unit: _bindgen_ty_6 = 74;
pub const DW_TAG_immutable_type: _bindgen_ty_6 = 75;
pub const DW_TAG_lo_user: _bindgen_ty_6 = 16512;
pub const DW_TAG_MIPS_loop: _bindgen_ty_6 = 16513;
pub const DW_TAG_format_label: _bindgen_ty_6 = 16641;
pub const DW_TAG_function_template: _bindgen_ty_6 = 16642;
pub const DW_TAG_class_template: _bindgen_ty_6 = 16643;
pub const DW_TAG_GNU_BINCL: _bindgen_ty_6 = 16644;
pub const DW_TAG_GNU_EINCL: _bindgen_ty_6 = 16645;
pub const DW_TAG_GNU_template_template_param: _bindgen_ty_6 = 16646;
pub const DW_TAG_GNU_template_parameter_pack: _bindgen_ty_6 = 16647;
pub const DW_TAG_GNU_formal_parameter_pack: _bindgen_ty_6 = 16648;
pub const DW_TAG_GNU_call_site: _bindgen_ty_6 = 16649;
pub const DW_TAG_GNU_call_site_parameter: _bindgen_ty_6 = 16650;
pub const DW_TAG_hi_user: _bindgen_ty_6 = 65535;
pub type _bindgen_ty_6 = ::libc::c_uint;
pub const DW_CHILDREN_no: _bindgen_ty_7 = 0;
pub const DW_CHILDREN_yes: _bindgen_ty_7 = 1;
pub type _bindgen_ty_7 = ::libc::c_uint;
pub const DW_AT_sibling: _bindgen_ty_8 = 1;
pub const DW_AT_location: _bindgen_ty_8 = 2;
pub const DW_AT_name: _bindgen_ty_8 = 3;
pub const DW_AT_ordering: _bindgen_ty_8 = 9;
pub const DW_AT_byte_size: _bindgen_ty_8 = 11;
pub const DW_AT_bit_offset: _bindgen_ty_8 = 12;
pub const DW_AT_bit_size: _bindgen_ty_8 = 13;
pub const DW_AT_stmt_list: _bindgen_ty_8 = 16;
pub const DW_AT_low_pc: _bindgen_ty_8 = 17;
pub const DW_AT_high_pc: _bindgen_ty_8 = 18;
pub const DW_AT_language: _bindgen_ty_8 = 19;
pub const DW_AT_discr: _bindgen_ty_8 = 21;
pub const DW_AT_discr_value: _bindgen_ty_8 = 22;
pub const DW_AT_visibility: _bindgen_ty_8 = 23;
pub const DW_AT_import: _bindgen_ty_8 = 24;
pub const DW_AT_string_length: _bindgen_ty_8 = 25;
pub const DW_AT_common_reference: _bindgen_ty_8 = 26;
pub const DW_AT_comp_dir: _bindgen_ty_8 = 27;
pub const DW_AT_const_value: _bindgen_ty_8 = 28;
pub const DW_AT_containing_type: _bindgen_ty_8 = 29;
pub const DW_AT_default_value: _bindgen_ty_8 = 30;
pub const DW_AT_inline: _bindgen_ty_8 = 32;
pub const DW_AT_is_optional: _bindgen_ty_8 = 33;
pub const DW_AT_lower_bound: _bindgen_ty_8 = 34;
pub const DW_AT_producer: _bindgen_ty_8 = 37;
pub const DW_AT_prototyped: _bindgen_ty_8 = 39;
pub const DW_AT_return_addr: _bindgen_ty_8 = 42;
pub const DW_AT_start_scope: _bindgen_ty_8 = 44;
pub const DW_AT_bit_stride: _bindgen_ty_8 = 46;
pub const DW_AT_upper_bound: _bindgen_ty_8 = 47;
pub const DW_AT_abstract_origin: _bindgen_ty_8 = 49;
pub const DW_AT_accessibility: _bindgen_ty_8 = 50;
pub const DW_AT_address_class: _bindgen_ty_8 = 51;
pub const DW_AT_artificial: _bindgen_ty_8 = 52;
pub const DW_AT_base_types: _bindgen_ty_8 = 53;
pub const DW_AT_calling_convention: _bindgen_ty_8 = 54;
pub const DW_AT_count: _bindgen_ty_8 = 55;
pub const DW_AT_data_member_location: _bindgen_ty_8 = 56;
pub const DW_AT_decl_column: _bindgen_ty_8 = 57;
pub const DW_AT_decl_file: _bindgen_ty_8 = 58;
pub const DW_AT_decl_line: _bindgen_ty_8 = 59;
pub const DW_AT_declaration: _bindgen_ty_8 = 60;
pub const DW_AT_discr_list: _bindgen_ty_8 = 61;
pub const DW_AT_encoding: _bindgen_ty_8 = 62;
pub const DW_AT_external: _bindgen_ty_8 = 63;
pub const DW_AT_frame_base: _bindgen_ty_8 = 64;
pub const DW_AT_friend: _bindgen_ty_8 = 65;
pub const DW_AT_identifier_case: _bindgen_ty_8 = 66;
pub const DW_AT_macro_info: _bindgen_ty_8 = 67;
pub const DW_AT_namelist_item: _bindgen_ty_8 = 68;
pub const DW_AT_priority: _bindgen_ty_8 = 69;
pub const DW_AT_segment: _bindgen_ty_8 = 70;
pub const DW_AT_specification: _bindgen_ty_8 = 71;
pub const DW_AT_static_link: _bindgen_ty_8 = 72;
pub const DW_AT_type: _bindgen_ty_8 = 73;
pub const DW_AT_use_location: _bindgen_ty_8 = 74;
pub const DW_AT_variable_parameter: _bindgen_ty_8 = 75;
pub const DW_AT_virtuality: _bindgen_ty_8 = 76;
pub const DW_AT_vtable_elem_location: _bindgen_ty_8 = 77;
pub const DW_AT_allocated: _bindgen_ty_8 = 78;
pub const DW_AT_associated: _bindgen_ty_8 = 79;
pub const DW_AT_data_location: _bindgen_ty_8 = 80;
pub const DW_AT_byte_stride: _bindgen_ty_8 = 81;
pub const DW_AT_entry_pc: _bindgen_ty_8 = 82;
pub const DW_AT_use_UTF8: _bindgen_ty_8 = 83;
pub const DW_AT_extension: _bindgen_ty_8 = 84;
pub const DW_AT_ranges: _bindgen_ty_8 = 85;
pub const DW_AT_trampoline: _bindgen_ty_8 = 86;
pub const DW_AT_call_column: _bindgen_ty_8 = 87;
pub const DW_AT_call_file: _bindgen_ty_8 = 88;
pub const DW_AT_call_line: _bindgen_ty_8 = 89;
pub const DW_AT_description: _bindgen_ty_8 = 90;
pub const DW_AT_binary_scale: _bindgen_ty_8 = 91;
pub const DW_AT_decimal_scale: _bindgen_ty_8 = 92;
pub const DW_AT_small: _bindgen_ty_8 = 93;
pub const DW_AT_decimal_sign: _bindgen_ty_8 = 94;
pub const DW_AT_digit_count: _bindgen_ty_8 = 95;
pub const DW_AT_picture_string: _bindgen_ty_8 = 96;
pub const DW_AT_mutable: _bindgen_ty_8 = 97;
pub const DW_AT_threads_scaled: _bindgen_ty_8 = 98;
pub const DW_AT_explicit: _bindgen_ty_8 = 99;
pub const DW_AT_object_pointer: _bindgen_ty_8 = 100;
pub const DW_AT_endianity: _bindgen_ty_8 = 101;
pub const DW_AT_elemental: _bindgen_ty_8 = 102;
pub const DW_AT_pure: _bindgen_ty_8 = 103;
pub const DW_AT_recursive: _bindgen_ty_8 = 104;
pub const DW_AT_signature: _bindgen_ty_8 = 105;
pub const DW_AT_main_subprogram: _bindgen_ty_8 = 106;
pub const DW_AT_data_bit_offset: _bindgen_ty_8 = 107;
pub const DW_AT_const_expr: _bindgen_ty_8 = 108;
pub const DW_AT_enum_class: _bindgen_ty_8 = 109;
pub const DW_AT_linkage_name: _bindgen_ty_8 = 110;
pub const DW_AT_string_length_bit_size: _bindgen_ty_8 = 111;
pub const DW_AT_string_length_byte_size: _bindgen_ty_8 = 112;
pub const DW_AT_rank: _bindgen_ty_8 = 113;
pub const DW_AT_str_offsets_base: _bindgen_ty_8 = 114;
pub const DW_AT_addr_base: _bindgen_ty_8 = 115;
pub const DW_AT_rnglists_base: _bindgen_ty_8 = 116;
pub const DW_AT_dwo_name: _bindgen_ty_8 = 118;
pub const DW_AT_reference: _bindgen_ty_8 = 119;
pub const DW_AT_rvalue_reference: _bindgen_ty_8 = 120;
pub const DW_AT_macros: _bindgen_ty_8 = 121;
pub const DW_AT_call_all_calls: _bindgen_ty_8 = 122;
pub const DW_AT_call_all_source_calls: _bindgen_ty_8 = 123;
pub const DW_AT_call_all_tail_calls: _bindgen_ty_8 = 124;
pub const DW_AT_call_return_pc: _bindgen_ty_8 = 125;
pub const DW_AT_call_value: _bindgen_ty_8 = 126;
pub const DW_AT_call_origin: _bindgen_ty_8 = 127;
pub const DW_AT_call_parameter: _bindgen_ty_8 = 128;
pub const DW_AT_call_pc: _bindgen_ty_8 = 129;
pub const DW_AT_call_tail_call: _bindgen_ty_8 = 130;
pub const DW_AT_call_target: _bindgen_ty_8 = 131;
pub const DW_AT_call_target_clobbered: _bindgen_ty_8 = 132;
pub const DW_AT_call_data_location: _bindgen_ty_8 = 133;
pub const DW_AT_call_data_value: _bindgen_ty_8 = 134;
pub const DW_AT_noreturn: _bindgen_ty_8 = 135;
pub const DW_AT_alignment: _bindgen_ty_8 = 136;
pub const DW_AT_export_symbols: _bindgen_ty_8 = 137;
pub const DW_AT_deleted: _bindgen_ty_8 = 138;
pub const DW_AT_defaulted: _bindgen_ty_8 = 139;
pub const DW_AT_loclists_base: _bindgen_ty_8 = 140;
pub const DW_AT_lo_user: _bindgen_ty_8 = 8192;
pub const DW_AT_MIPS_fde: _bindgen_ty_8 = 8193;
pub const DW_AT_MIPS_loop_begin: _bindgen_ty_8 = 8194;
pub const DW_AT_MIPS_tail_loop_begin: _bindgen_ty_8 = 8195;
pub const DW_AT_MIPS_epilog_begin: _bindgen_ty_8 = 8196;
pub const DW_AT_MIPS_loop_unroll_factor: _bindgen_ty_8 = 8197;
pub const DW_AT_MIPS_software_pipeline_depth: _bindgen_ty_8 = 8198;
pub const DW_AT_MIPS_linkage_name: _bindgen_ty_8 = 8199;
pub const DW_AT_MIPS_stride: _bindgen_ty_8 = 8200;
pub const DW_AT_MIPS_abstract_name: _bindgen_ty_8 = 8201;
pub const DW_AT_MIPS_clone_origin: _bindgen_ty_8 = 8202;
pub const DW_AT_MIPS_has_inlines: _bindgen_ty_8 = 8203;
pub const DW_AT_MIPS_stride_byte: _bindgen_ty_8 = 8204;
pub const DW_AT_MIPS_stride_elem: _bindgen_ty_8 = 8205;
pub const DW_AT_MIPS_ptr_dopetype: _bindgen_ty_8 = 8206;
pub const DW_AT_MIPS_allocatable_dopetype: _bindgen_ty_8 = 8207;
pub const DW_AT_MIPS_assumed_shape_dopetype: _bindgen_ty_8 = 8208;
pub const DW_AT_MIPS_assumed_size: _bindgen_ty_8 = 8209;
pub const DW_AT_sf_names: _bindgen_ty_8 = 8449;
pub const DW_AT_src_info: _bindgen_ty_8 = 8450;
pub const DW_AT_mac_info: _bindgen_ty_8 = 8451;
pub const DW_AT_src_coords: _bindgen_ty_8 = 8452;
pub const DW_AT_body_begin: _bindgen_ty_8 = 8453;
pub const DW_AT_body_end: _bindgen_ty_8 = 8454;
pub const DW_AT_GNU_vector: _bindgen_ty_8 = 8455;
pub const DW_AT_GNU_guarded_by: _bindgen_ty_8 = 8456;
pub const DW_AT_GNU_pt_guarded_by: _bindgen_ty_8 = 8457;
pub const DW_AT_GNU_guarded: _bindgen_ty_8 = 8458;
pub const DW_AT_GNU_pt_guarded: _bindgen_ty_8 = 8459;
pub const DW_AT_GNU_locks_excluded: _bindgen_ty_8 = 8460;
pub const DW_AT_GNU_exclusive_locks_required: _bindgen_ty_8 = 8461;
pub const DW_AT_GNU_shared_locks_required: _bindgen_ty_8 = 8462;
pub const DW_AT_GNU_odr_signature: _bindgen_ty_8 = 8463;
pub const DW_AT_GNU_template_name: _bindgen_ty_8 = 8464;
pub const DW_AT_GNU_call_site_value: _bindgen_ty_8 = 8465;
pub const DW_AT_GNU_call_site_data_value: _bindgen_ty_8 = 8466;
pub const DW_AT_GNU_call_site_target: _bindgen_ty_8 = 8467;
pub const DW_AT_GNU_call_site_target_clobbered: _bindgen_ty_8 = 8468;
pub const DW_AT_GNU_tail_call: _bindgen_ty_8 = 8469;
pub const DW_AT_GNU_all_tail_call_sites: _bindgen_ty_8 = 8470;
pub const DW_AT_GNU_all_call_sites: _bindgen_ty_8 = 8471;
pub const DW_AT_GNU_all_source_call_sites: _bindgen_ty_8 = 8472;
pub const DW_AT_GNU_macros: _bindgen_ty_8 = 8473;
pub const DW_AT_GNU_deleted: _bindgen_ty_8 = 8474;
pub const DW_AT_hi_user: _bindgen_ty_8 = 16383;
pub type _bindgen_ty_8 = ::libc::c_uint;
pub const DW_FORM_addr: _bindgen_ty_9 = 1;
pub const DW_FORM_block2: _bindgen_ty_9 = 3;
pub const DW_FORM_block4: _bindgen_ty_9 = 4;
pub const DW_FORM_data2: _bindgen_ty_9 = 5;
pub const DW_FORM_data4: _bindgen_ty_9 = 6;
pub const DW_FORM_data8: _bindgen_ty_9 = 7;
pub const DW_FORM_string: _bindgen_ty_9 = 8;
pub const DW_FORM_block: _bindgen_ty_9 = 9;
pub const DW_FORM_block1: _bindgen_ty_9 = 10;
pub const DW_FORM_data1: _bindgen_ty_9 = 11;
pub const DW_FORM_flag: _bindgen_ty_9 = 12;
pub const DW_FORM_sdata: _bindgen_ty_9 = 13;
pub const DW_FORM_strp: _bindgen_ty_9 = 14;
pub const DW_FORM_udata: _bindgen_ty_9 = 15;
pub const DW_FORM_ref_addr: _bindgen_ty_9 = 16;
pub const DW_FORM_ref1: _bindgen_ty_9 = 17;
pub const DW_FORM_ref2: _bindgen_ty_9 = 18;
pub const DW_FORM_ref4: _bindgen_ty_9 = 19;
pub const DW_FORM_ref8: _bindgen_ty_9 = 20;
pub const DW_FORM_ref_udata: _bindgen_ty_9 = 21;
pub const DW_FORM_indirect: _bindgen_ty_9 = 22;
pub const DW_FORM_sec_offset: _bindgen_ty_9 = 23;
pub const DW_FORM_exprloc: _bindgen_ty_9 = 24;
pub const DW_FORM_flag_present: _bindgen_ty_9 = 25;
pub const DW_FORM_ref_sig8: _bindgen_ty_9 = 32;
pub const DW_FORM_GNU_ref_alt: _bindgen_ty_9 = 7968;
pub const DW_FORM_GNU_strp_alt: _bindgen_ty_9 = 7969;
pub type _bindgen_ty_9 = ::libc::c_uint;
pub const DW_OP_addr: _bindgen_ty_10 = 3;
pub const DW_OP_deref: _bindgen_ty_10 = 6;
pub const DW_OP_const1u: _bindgen_ty_10 = 8;
pub const DW_OP_const1s: _bindgen_ty_10 = 9;
pub const DW_OP_const2u: _bindgen_ty_10 = 10;
pub const DW_OP_const2s: _bindgen_ty_10 = 11;
pub const DW_OP_const4u: _bindgen_ty_10 = 12;
pub const DW_OP_const4s: _bindgen_ty_10 = 13;
pub const DW_OP_const8u: _bindgen_ty_10 = 14;
pub const DW_OP_const8s: _bindgen_ty_10 = 15;
pub const DW_OP_constu: _bindgen_ty_10 = 16;
pub const DW_OP_consts: _bindgen_ty_10 = 17;
pub const DW_OP_dup: _bindgen_ty_10 = 18;
pub const DW_OP_drop: _bindgen_ty_10 = 19;
pub const DW_OP_over: _bindgen_ty_10 = 20;
pub const DW_OP_pick: _bindgen_ty_10 = 21;
pub const DW_OP_swap: _bindgen_ty_10 = 22;
pub const DW_OP_rot: _bindgen_ty_10 = 23;
pub const DW_OP_xderef: _bindgen_ty_10 = 24;
pub const DW_OP_abs: _bindgen_ty_10 = 25;
pub const DW_OP_and: _bindgen_ty_10 = 26;
pub const DW_OP_div: _bindgen_ty_10 = 27;
pub const DW_OP_minus: _bindgen_ty_10 = 28;
pub const DW_OP_mod: _bindgen_ty_10 = 29;
pub const DW_OP_mul: _bindgen_ty_10 = 30;
pub const DW_OP_neg: _bindgen_ty_10 = 31;
pub const DW_OP_not: _bindgen_ty_10 = 32;
pub const DW_OP_or: _bindgen_ty_10 = 33;
pub const DW_OP_plus: _bindgen_ty_10 = 34;
pub const DW_OP_plus_uconst: _bindgen_ty_10 = 35;
pub const DW_OP_shl: _bindgen_ty_10 = 36;
pub const DW_OP_shr: _bindgen_ty_10 = 37;
pub const DW_OP_shra: _bindgen_ty_10 = 38;
pub const DW_OP_xor: _bindgen_ty_10 = 39;
pub const DW_OP_bra: _bindgen_ty_10 = 40;
pub const DW_OP_eq: _bindgen_ty_10 = 41;
pub const DW_OP_ge: _bindgen_ty_10 = 42;
pub const DW_OP_gt: _bindgen_ty_10 = 43;
pub const DW_OP_le: _bindgen_ty_10 = 44;
pub const DW_OP_lt: _bindgen_ty_10 = 45;
pub const DW_OP_ne: _bindgen_ty_10 = 46;
pub const DW_OP_skip: _bindgen_ty_10 = 47;
pub const DW_OP_lit0: _bindgen_ty_10 = 48;
pub const DW_OP_lit1: _bindgen_ty_10 = 49;
pub const DW_OP_lit2: _bindgen_ty_10 = 50;
pub const DW_OP_lit3: _bindgen_ty_10 = 51;
pub const DW_OP_lit4: _bindgen_ty_10 = 52;
pub const DW_OP_lit5: _bindgen_ty_10 = 53;
pub const DW_OP_lit6: _bindgen_ty_10 = 54;
pub const DW_OP_lit7: _bindgen_ty_10 = 55;
pub const DW_OP_lit8: _bindgen_ty_10 = 56;
pub const DW_OP_lit9: _bindgen_ty_10 = 57;
pub const DW_OP_lit10: _bindgen_ty_10 = 58;
pub const DW_OP_lit11: _bindgen_ty_10 = 59;
pub const DW_OP_lit12: _bindgen_ty_10 = 60;
pub const DW_OP_lit13: _bindgen_ty_10 = 61;
pub const DW_OP_lit14: _bindgen_ty_10 = 62;
pub const DW_OP_lit15: _bindgen_ty_10 = 63;
pub const DW_OP_lit16: _bindgen_ty_10 = 64;
pub const DW_OP_lit17: _bindgen_ty_10 = 65;
pub const DW_OP_lit18: _bindgen_ty_10 = 66;
pub const DW_OP_lit19: _bindgen_ty_10 = 67;
pub const DW_OP_lit20: _bindgen_ty_10 = 68;
pub const DW_OP_lit21: _bindgen_ty_10 = 69;
pub const DW_OP_lit22: _bindgen_ty_10 = 70;
pub const DW_OP_lit23: _bindgen_ty_10 = 71;
pub const DW_OP_lit24: _bindgen_ty_10 = 72;
pub const DW_OP_lit25: _bindgen_ty_10 = 73;
pub const DW_OP_lit26: _bindgen_ty_10 = 74;
pub const DW_OP_lit27: _bindgen_ty_10 = 75;
pub const DW_OP_lit28: _bindgen_ty_10 = 76;
pub const DW_OP_lit29: _bindgen_ty_10 = 77;
pub const DW_OP_lit30: _bindgen_ty_10 = 78;
pub const DW_OP_lit31: _bindgen_ty_10 = 79;
pub const DW_OP_reg0: _bindgen_ty_10 = 80;
pub const DW_OP_reg1: _bindgen_ty_10 = 81;
pub const DW_OP_reg2: _bindgen_ty_10 = 82;
pub const DW_OP_reg3: _bindgen_ty_10 = 83;
pub const DW_OP_reg4: _bindgen_ty_10 = 84;
pub const DW_OP_reg5: _bindgen_ty_10 = 85;
pub const DW_OP_reg6: _bindgen_ty_10 = 86;
pub const DW_OP_reg7: _bindgen_ty_10 = 87;
pub const DW_OP_reg8: _bindgen_ty_10 = 88;
pub const DW_OP_reg9: _bindgen_ty_10 = 89;
pub const DW_OP_reg10: _bindgen_ty_10 = 90;
pub const DW_OP_reg11: _bindgen_ty_10 = 91;
pub const DW_OP_reg12: _bindgen_ty_10 = 92;
pub const DW_OP_reg13: _bindgen_ty_10 = 93;
pub const DW_OP_reg14: _bindgen_ty_10 = 94;
pub const DW_OP_reg15: _bindgen_ty_10 = 95;
pub const DW_OP_reg16: _bindgen_ty_10 = 96;
pub const DW_OP_reg17: _bindgen_ty_10 = 97;
pub const DW_OP_reg18: _bindgen_ty_10 = 98;
pub const DW_OP_reg19: _bindgen_ty_10 = 99;
pub const DW_OP_reg20: _bindgen_ty_10 = 100;
pub const DW_OP_reg21: _bindgen_ty_10 = 101;
pub const DW_OP_reg22: _bindgen_ty_10 = 102;
pub const DW_OP_reg23: _bindgen_ty_10 = 103;
pub const DW_OP_reg24: _bindgen_ty_10 = 104;
pub const DW_OP_reg25: _bindgen_ty_10 = 105;
pub const DW_OP_reg26: _bindgen_ty_10 = 106;
pub const DW_OP_reg27: _bindgen_ty_10 = 107;
pub const DW_OP_reg28: _bindgen_ty_10 = 108;
pub const DW_OP_reg29: _bindgen_ty_10 = 109;
pub const DW_OP_reg30: _bindgen_ty_10 = 110;
pub const DW_OP_reg31: _bindgen_ty_10 = 111;
pub const DW_OP_breg0: _bindgen_ty_10 = 112;
pub const DW_OP_breg1: _bindgen_ty_10 = 113;
pub const DW_OP_breg2: _bindgen_ty_10 = 114;
pub const DW_OP_breg3: _bindgen_ty_10 = 115;
pub const DW_OP_breg4: _bindgen_ty_10 = 116;
pub const DW_OP_breg5: _bindgen_ty_10 = 117;
pub const DW_OP_breg6: _bindgen_ty_10 = 118;
pub const DW_OP_breg7: _bindgen_ty_10 = 119;
pub const DW_OP_breg8: _bindgen_ty_10 = 120;
pub const DW_OP_breg9: _bindgen_ty_10 = 121;
pub const DW_OP_breg10: _bindgen_ty_10 = 122;
pub const DW_OP_breg11: _bindgen_ty_10 = 123;
pub const DW_OP_breg12: _bindgen_ty_10 = 124;
pub const DW_OP_breg13: _bindgen_ty_10 = 125;
pub const DW_OP_breg14: _bindgen_ty_10 = 126;
pub const DW_OP_breg15: _bindgen_ty_10 = 127;
pub const DW_OP_breg16: _bindgen_ty_10 = 128;
pub const DW_OP_breg17: _bindgen_ty_10 = 129;
pub const DW_OP_breg18: _bindgen_ty_10 = 130;
pub const DW_OP_breg19: _bindgen_ty_10 = 131;
pub const DW_OP_breg20: _bindgen_ty_10 = 132;
pub const DW_OP_breg21: _bindgen_ty_10 = 133;
pub const DW_OP_breg22: _bindgen_ty_10 = 134;
pub const DW_OP_breg23: _bindgen_ty_10 = 135;
pub const DW_OP_breg24: _bindgen_ty_10 = 136;
pub const DW_OP_breg25: _bindgen_ty_10 = 137;
pub const DW_OP_breg26: _bindgen_ty_10 = 138;
pub const DW_OP_breg27: _bindgen_ty_10 = 139;
pub const DW_OP_breg28: _bindgen_ty_10 = 140;
pub const DW_OP_breg29: _bindgen_ty_10 = 141;
pub const DW_OP_breg30: _bindgen_ty_10 = 142;
pub const DW_OP_breg31: _bindgen_ty_10 = 143;
pub const DW_OP_regx: _bindgen_ty_10 = 144;
pub const DW_OP_fbreg: _bindgen_ty_10 = 145;
pub const DW_OP_bregx: _bindgen_ty_10 = 146;
pub const DW_OP_piece: _bindgen_ty_10 = 147;
pub const DW_OP_deref_size: _bindgen_ty_10 = 148;
pub const DW_OP_xderef_size: _bindgen_ty_10 = 149;
pub const DW_OP_nop: _bindgen_ty_10 = 150;
pub const DW_OP_push_object_address: _bindgen_ty_10 = 151;
pub const DW_OP_call2: _bindgen_ty_10 = 152;
pub const DW_OP_call4: _bindgen_ty_10 = 153;
pub const DW_OP_call_ref: _bindgen_ty_10 = 154;
pub const DW_OP_form_tls_address: _bindgen_ty_10 = 155;
pub const DW_OP_call_frame_cfa: _bindgen_ty_10 = 156;
pub const DW_OP_bit_piece: _bindgen_ty_10 = 157;
pub const DW_OP_implicit_value: _bindgen_ty_10 = 158;
pub const DW_OP_stack_value: _bindgen_ty_10 = 159;
pub const DW_OP_GNU_push_tls_address: _bindgen_ty_10 = 224;
pub const DW_OP_GNU_uninit: _bindgen_ty_10 = 240;
pub const DW_OP_GNU_encoded_addr: _bindgen_ty_10 = 241;
pub const DW_OP_GNU_implicit_pointer: _bindgen_ty_10 = 242;
pub const DW_OP_GNU_entry_value: _bindgen_ty_10 = 243;
pub const DW_OP_GNU_const_type: _bindgen_ty_10 = 244;
pub const DW_OP_GNU_regval_type: _bindgen_ty_10 = 245;
pub const DW_OP_GNU_deref_type: _bindgen_ty_10 = 246;
pub const DW_OP_GNU_convert: _bindgen_ty_10 = 247;
pub const DW_OP_GNU_reinterpret: _bindgen_ty_10 = 249;
pub const DW_OP_GNU_parameter_ref: _bindgen_ty_10 = 250;
pub const DW_OP_lo_user: _bindgen_ty_10 = 224;
pub const DW_OP_hi_user: _bindgen_ty_10 = 255;
pub type _bindgen_ty_10 = ::libc::c_uint;
pub const DW_ATE_void: _bindgen_ty_11 = 0;
pub const DW_ATE_address: _bindgen_ty_11 = 1;
pub const DW_ATE_boolean: _bindgen_ty_11 = 2;
pub const DW_ATE_complex_float: _bindgen_ty_11 = 3;
pub const DW_ATE_float: _bindgen_ty_11 = 4;
pub const DW_ATE_signed: _bindgen_ty_11 = 5;
pub const DW_ATE_signed_char: _bindgen_ty_11 = 6;
pub const DW_ATE_unsigned: _bindgen_ty_11 = 7;
pub const DW_ATE_unsigned_char: _bindgen_ty_11 = 8;
pub const DW_ATE_imaginary_float: _bindgen_ty_11 = 9;
pub const DW_ATE_packed_decimal: _bindgen_ty_11 = 10;
pub const DW_ATE_numeric_string: _bindgen_ty_11 = 11;
pub const DW_ATE_edited: _bindgen_ty_11 = 12;
pub const DW_ATE_signed_fixed: _bindgen_ty_11 = 13;
pub const DW_ATE_unsigned_fixed: _bindgen_ty_11 = 14;
pub const DW_ATE_decimal_float: _bindgen_ty_11 = 15;
pub const DW_ATE_UTF: _bindgen_ty_11 = 16;
pub const DW_ATE_UCS: _bindgen_ty_11 = 17;
pub const DW_ATE_ASCII: _bindgen_ty_11 = 18;
pub const DW_ATE_lo_user: _bindgen_ty_11 = 128;
pub const DW_ATE_hi_user: _bindgen_ty_11 = 255;
pub type _bindgen_ty_11 = ::libc::c_uint;
pub const DW_DS_unsigned: _bindgen_ty_12 = 1;
pub const DW_DS_leading_overpunch: _bindgen_ty_12 = 2;
pub const DW_DS_trailing_overpunch: _bindgen_ty_12 = 3;
pub const DW_DS_leading_separate: _bindgen_ty_12 = 4;
pub const DW_DS_trailing_separate: _bindgen_ty_12 = 5;
pub type _bindgen_ty_12 = ::libc::c_uint;
pub const DW_END_default: _bindgen_ty_13 = 0;
pub const DW_END_big: _bindgen_ty_13 = 1;
pub const DW_END_little: _bindgen_ty_13 = 2;
pub const DW_END_lo_user: _bindgen_ty_13 = 64;
pub const DW_END_hi_user: _bindgen_ty_13 = 255;
pub type _bindgen_ty_13 = ::libc::c_uint;
pub const DW_ACCESS_public: _bindgen_ty_14 = 1;
pub const DW_ACCESS_protected: _bindgen_ty_14 = 2;
pub const DW_ACCESS_private: _bindgen_ty_14 = 3;
pub type _bindgen_ty_14 = ::libc::c_uint;
pub const DW_VIS_local: _bindgen_ty_15 = 1;
pub const DW_VIS_exported: _bindgen_ty_15 = 2;
pub const DW_VIS_qualified: _bindgen_ty_15 = 3;
pub type _bindgen_ty_15 = ::libc::c_uint;
pub const DW_VIRTUALITY_none: _bindgen_ty_16 = 0;
pub const DW_VIRTUALITY_virtual: _bindgen_ty_16 = 1;
pub const DW_VIRTUALITY_pure_virtual: _bindgen_ty_16 = 2;
pub type _bindgen_ty_16 = ::libc::c_uint;
pub const DW_LANG_C89: _bindgen_ty_17 = 1;
pub const DW_LANG_C: _bindgen_ty_17 = 2;
pub const DW_LANG_Ada83: _bindgen_ty_17 = 3;
pub const DW_LANG_C_plus_plus: _bindgen_ty_17 = 4;
pub const DW_LANG_Cobol74: _bindgen_ty_17 = 5;
pub const DW_LANG_Cobol85: _bindgen_ty_17 = 6;
pub const DW_LANG_Fortran77: _bindgen_ty_17 = 7;
pub const DW_LANG_Fortran90: _bindgen_ty_17 = 8;
pub const DW_LANG_Pascal83: _bindgen_ty_17 = 9;
pub const DW_LANG_Modula2: _bindgen_ty_17 = 10;
pub const DW_LANG_Java: _bindgen_ty_17 = 11;
pub const DW_LANG_C99: _bindgen_ty_17 = 12;
pub const DW_LANG_Ada95: _bindgen_ty_17 = 13;
pub const DW_LANG_Fortran95: _bindgen_ty_17 = 14;
pub const DW_LANG_PLI: _bindgen_ty_17 = 15;
pub const DW_LANG_ObjC: _bindgen_ty_17 = 16;
pub const DW_LANG_ObjC_plus_plus: _bindgen_ty_17 = 17;
pub const DW_LANG_UPC: _bindgen_ty_17 = 18;
pub const DW_LANG_D: _bindgen_ty_17 = 19;
pub const DW_LANG_Python: _bindgen_ty_17 = 20;
pub const DW_LANG_OpenCL: _bindgen_ty_17 = 21;
pub const DW_LANG_Go: _bindgen_ty_17 = 22;
pub const DW_LANG_Modula3: _bindgen_ty_17 = 23;
pub const DW_LANG_Haskell: _bindgen_ty_17 = 24;
pub const DW_LANG_C_plus_plus_03: _bindgen_ty_17 = 25;
pub const DW_LANG_C_plus_plus_11: _bindgen_ty_17 = 26;
pub const DW_LANG_OCaml: _bindgen_ty_17 = 27;
pub const DW_LANG_Rust: _bindgen_ty_17 = 28;
pub const DW_LANG_C11: _bindgen_ty_17 = 29;
pub const DW_LANG_Swift: _bindgen_ty_17 = 30;
pub const DW_LANG_Julia: _bindgen_ty_17 = 31;
pub const DW_LANG_Dylan: _bindgen_ty_17 = 32;
pub const DW_LANG_C_plus_plus_14: _bindgen_ty_17 = 33;
pub const DW_LANG_Fortran03: _bindgen_ty_17 = 34;
pub const DW_LANG_Fortran08: _bindgen_ty_17 = 35;
pub const DW_LANG_RenderScript: _bindgen_ty_17 = 36;
pub const DW_LANG_BLISS: _bindgen_ty_17 = 37;
pub const DW_LANG_lo_user: _bindgen_ty_17 = 32768;
pub const DW_LANG_Mips_Assembler: _bindgen_ty_17 = 32769;
pub const DW_LANG_hi_user: _bindgen_ty_17 = 65535;
pub type _bindgen_ty_17 = ::libc::c_uint;
pub const DW_ID_case_sensitive: _bindgen_ty_18 = 0;
pub const DW_ID_up_case: _bindgen_ty_18 = 1;
pub const DW_ID_down_case: _bindgen_ty_18 = 2;
pub const DW_ID_case_insensitive: _bindgen_ty_18 = 3;
pub type _bindgen_ty_18 = ::libc::c_uint;
pub const DW_CC_normal: _bindgen_ty_19 = 1;
pub const DW_CC_program: _bindgen_ty_19 = 2;
pub const DW_CC_nocall: _bindgen_ty_19 = 3;
pub const DW_CC_pass_by_reference: _bindgen_ty_19 = 4;
pub const DW_CC_pass_by_value: _bindgen_ty_19 = 5;
pub const DW_CC_lo_user: _bindgen_ty_19 = 64;
pub const DW_CC_hi_user: _bindgen_ty_19 = 255;
pub type _bindgen_ty_19 = ::libc::c_uint;
pub const DW_INL_not_inlined: _bindgen_ty_20 = 0;
pub const DW_INL_inlined: _bindgen_ty_20 = 1;
pub const DW_INL_declared_not_inlined: _bindgen_ty_20 = 2;
pub const DW_INL_declared_inlined: _bindgen_ty_20 = 3;
pub type _bindgen_ty_20 = ::libc::c_uint;
pub const DW_ORD_row_major: _bindgen_ty_21 = 0;
pub const DW_ORD_col_major: _bindgen_ty_21 = 1;
pub type _bindgen_ty_21 = ::libc::c_uint;
pub const DW_DSC_label: _bindgen_ty_22 = 0;
pub const DW_DSC_range: _bindgen_ty_22 = 1;
pub type _bindgen_ty_22 = ::libc::c_uint;
pub const DW_DEFAULTED_no: _bindgen_ty_23 = 0;
pub const DW_DEFAULTED_in_class: _bindgen_ty_23 = 1;
pub const DW_DEFAULTED_out_of_class: _bindgen_ty_23 = 2;
pub type _bindgen_ty_23 = ::libc::c_uint;
pub const DW_LNS_copy: _bindgen_ty_24 = 1;
pub const DW_LNS_advance_pc: _bindgen_ty_24 = 2;
pub const DW_LNS_advance_line: _bindgen_ty_24 = 3;
pub const DW_LNS_set_file: _bindgen_ty_24 = 4;
pub const DW_LNS_set_column: _bindgen_ty_24 = 5;
pub const DW_LNS_negate_stmt: _bindgen_ty_24 = 6;
pub const DW_LNS_set_basic_block: _bindgen_ty_24 = 7;
pub const DW_LNS_const_add_pc: _bindgen_ty_24 = 8;
pub const DW_LNS_fixed_advance_pc: _bindgen_ty_24 = 9;
pub const DW_LNS_set_prologue_end: _bindgen_ty_24 = 10;
pub const DW_LNS_set_epilogue_begin: _bindgen_ty_24 = 11;
pub const DW_LNS_set_isa: _bindgen_ty_24 = 12;
pub type _bindgen_ty_24 = ::libc::c_uint;
pub const DW_LNE_end_sequence: _bindgen_ty_25 = 1;
pub const DW_LNE_set_address: _bindgen_ty_25 = 2;
pub const DW_LNE_define_file: _bindgen_ty_25 = 3;
pub const DW_LNE_set_discriminator: _bindgen_ty_25 = 4;
pub const DW_LNE_lo_user: _bindgen_ty_25 = 128;
pub const DW_LNE_hi_user: _bindgen_ty_25 = 255;
pub type _bindgen_ty_25 = ::libc::c_uint;
pub const DW_MACINFO_define: _bindgen_ty_26 = 1;
pub const DW_MACINFO_undef: _bindgen_ty_26 = 2;
pub const DW_MACINFO_start_file: _bindgen_ty_26 = 3;
pub const DW_MACINFO_end_file: _bindgen_ty_26 = 4;
pub const DW_MACINFO_vendor_ext: _bindgen_ty_26 = 255;
pub type _bindgen_ty_26 = ::libc::c_uint;
pub const DW_MACRO_define: _bindgen_ty_27 = 1;
pub const DW_MACRO_undef: _bindgen_ty_27 = 2;
pub const DW_MACRO_start_file: _bindgen_ty_27 = 3;
pub const DW_MACRO_end_file: _bindgen_ty_27 = 4;
pub const DW_MACRO_define_strp: _bindgen_ty_27 = 5;
pub const DW_MACRO_undef_strp: _bindgen_ty_27 = 6;
pub const DW_MACRO_import: _bindgen_ty_27 = 7;
pub const DW_MACRO_define_sup: _bindgen_ty_27 = 8;
pub const DW_MACRO_undef_sup: _bindgen_ty_27 = 9;
pub const DW_MACRO_import_sup: _bindgen_ty_27 = 10;
pub const DW_MACRO_define_strx: _bindgen_ty_27 = 11;
pub const DW_MACRO_undef_strx: _bindgen_ty_27 = 12;
pub const DW_MACRO_lo_user: _bindgen_ty_27 = 224;
pub const DW_MACRO_hi_user: _bindgen_ty_27 = 255;
pub type _bindgen_ty_27 = ::libc::c_uint;
pub const DW_CFA_advance_loc: _bindgen_ty_28 = 64;
pub const DW_CFA_offset: _bindgen_ty_28 = 128;
pub const DW_CFA_restore: _bindgen_ty_28 = 192;
pub const DW_CFA_extended: _bindgen_ty_28 = 0;
pub const DW_CFA_nop: _bindgen_ty_28 = 0;
pub const DW_CFA_set_loc: _bindgen_ty_28 = 1;
pub const DW_CFA_advance_loc1: _bindgen_ty_28 = 2;
pub const DW_CFA_advance_loc2: _bindgen_ty_28 = 3;
pub const DW_CFA_advance_loc4: _bindgen_ty_28 = 4;
pub const DW_CFA_offset_extended: _bindgen_ty_28 = 5;
pub const DW_CFA_restore_extended: _bindgen_ty_28 = 6;
pub const DW_CFA_undefined: _bindgen_ty_28 = 7;
pub const DW_CFA_same_value: _bindgen_ty_28 = 8;
pub const DW_CFA_register: _bindgen_ty_28 = 9;
pub const DW_CFA_remember_state: _bindgen_ty_28 = 10;
pub const DW_CFA_restore_state: _bindgen_ty_28 = 11;
pub const DW_CFA_def_cfa: _bindgen_ty_28 = 12;
pub const DW_CFA_def_cfa_register: _bindgen_ty_28 = 13;
pub const DW_CFA_def_cfa_offset: _bindgen_ty_28 = 14;
pub const DW_CFA_def_cfa_expression: _bindgen_ty_28 = 15;
pub const DW_CFA_expression: _bindgen_ty_28 = 16;
pub const DW_CFA_offset_extended_sf: _bindgen_ty_28 = 17;
pub const DW_CFA_def_cfa_sf: _bindgen_ty_28 = 18;
pub const DW_CFA_def_cfa_offset_sf: _bindgen_ty_28 = 19;
pub const DW_CFA_val_offset: _bindgen_ty_28 = 20;
pub const DW_CFA_val_offset_sf: _bindgen_ty_28 = 21;
pub const DW_CFA_val_expression: _bindgen_ty_28 = 22;
pub const DW_CFA_low_user: _bindgen_ty_28 = 28;
pub const DW_CFA_MIPS_advance_loc8: _bindgen_ty_28 = 29;
pub const DW_CFA_GNU_window_save: _bindgen_ty_28 = 45;
pub const DW_CFA_GNU_args_size: _bindgen_ty_28 = 46;
pub const DW_CFA_GNU_negative_offset_extended: _bindgen_ty_28 = 47;
pub const DW_CFA_high_user: _bindgen_ty_28 = 63;
pub type _bindgen_ty_28 = ::libc::c_uint;
pub const DW_CIE_ID_32: _bindgen_ty_29 = 4294967295;
pub const DW_CIE_ID_64: _bindgen_ty_29 = 18446744073709551615;
pub type _bindgen_ty_29 = ::libc::c_ulong;
pub const DW_EH_PE_absptr: _bindgen_ty_30 = 0;
pub const DW_EH_PE_omit: _bindgen_ty_30 = 255;
pub const DW_EH_PE_uleb128: _bindgen_ty_30 = 1;
pub const DW_EH_PE_udata2: _bindgen_ty_30 = 2;
pub const DW_EH_PE_udata4: _bindgen_ty_30 = 3;
pub const DW_EH_PE_udata8: _bindgen_ty_30 = 4;
pub const DW_EH_PE_sleb128: _bindgen_ty_30 = 9;
pub const DW_EH_PE_sdata2: _bindgen_ty_30 = 10;
pub const DW_EH_PE_sdata4: _bindgen_ty_30 = 11;
pub const DW_EH_PE_sdata8: _bindgen_ty_30 = 12;
pub const DW_EH_PE_signed: _bindgen_ty_30 = 8;
pub const DW_EH_PE_pcrel: _bindgen_ty_30 = 16;
pub const DW_EH_PE_textrel: _bindgen_ty_30 = 32;
pub const DW_EH_PE_datarel: _bindgen_ty_30 = 48;
pub const DW_EH_PE_funcrel: _bindgen_ty_30 = 64;
pub const DW_EH_PE_aligned: _bindgen_ty_30 = 80;
pub const DW_EH_PE_indirect: _bindgen_ty_30 = 128;
pub type _bindgen_ty_30 = ::libc::c_uint;