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
|
/* vms.c -- BFD back-end for VAX (openVMS/VAX) and
EVAX (openVMS/Alpha) files.
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008, 2009 Free Software Foundation, Inc.
Main file.
Written by Klaus K"ampf (kkaempf@rmi.de)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
MA 02110-1301, USA. */
#ifdef VMS
#include <rms.h>
#include <unixlib.h>
#include <starlet.h>
#define RME$C_SETRFM 0x00000001
#include <unistd.h>
#endif
#include "sysdep.h"
#include "bfd.h"
#include "bfdlink.h"
#include "libbfd.h"
#include "vms.h"
static bfd_boolean vms_initialize (bfd *);
static bfd_boolean fill_section_ptr (struct bfd_hash_entry *, PTR);
static bfd_boolean vms_fixup_sections (bfd *);
static bfd_boolean copy_symbols (struct bfd_hash_entry *, PTR);
static bfd_reloc_status_type reloc_nil (bfd *, arelent *, asymbol *, PTR,
asection *, bfd *, char **);
static int vms_slurp_module (bfd *abfd);
static int vms_slurp_image (bfd *abfd);
static const struct bfd_target *vms_object_p (bfd *abfd);
static const struct bfd_target *vms_archive_p (bfd *abfd);
static bfd_boolean vms_mkobject (bfd *abfd);
static bfd_boolean vms_write_object_contents (bfd *abfd);
static void free_reloc_stream (bfd *abfd, asection *section, void *data);
static bfd_boolean vms_close_and_cleanup (bfd *abfd);
static bfd_boolean vms_bfd_free_cached_info (bfd *abfd);
static bfd_boolean vms_new_section_hook (bfd *abfd, asection *section);
static bfd_boolean vms_get_section_contents
(bfd *abfd, asection *section, PTR x1, file_ptr x2, bfd_size_type x3);
static bfd_boolean vms_get_section_contents_in_window
(bfd *abfd, asection *section, bfd_window *w, file_ptr offset,
bfd_size_type count);
static bfd_boolean vms_bfd_copy_private_bfd_data (bfd *src, bfd *dest);
static bfd_boolean vms_bfd_copy_private_section_data
(bfd *srcbfd, asection *srcsec, bfd *dstbfd, asection *dstsec);
static bfd_boolean vms_bfd_copy_private_symbol_data
(bfd *ibfd, asymbol *isym, bfd *obfd, asymbol *osym);
static bfd_boolean vms_bfd_print_private_bfd_data (bfd *abfd, void *file);
static char *vms_core_file_failing_command (bfd *abfd);
static int vms_core_file_failing_signal (bfd *abfd);
static bfd_boolean vms_core_file_matches_executable_p (bfd *abfd, bfd *bbfd);
static bfd_boolean vms_slurp_armap (bfd *abfd);
static bfd_boolean vms_slurp_extended_name_table (bfd *abfd);
static bfd_boolean vms_construct_extended_name_table
(bfd *abfd, char **tabloc, bfd_size_type *tablen, const char **name);
static void vms_truncate_arname (bfd *abfd, const char *pathname, char *arhdr);
static bfd_boolean vms_write_armap
(bfd *arch, unsigned int elen, struct orl *map, unsigned int cnt, int idx);
static PTR vms_read_ar_hdr (bfd *abfd);
static bfd *vms_get_elt_at_index (bfd *abfd, symindex index);
static bfd *vms_openr_next_archived_file (bfd *arch, bfd *prev);
static bfd_boolean vms_update_armap_timestamp (bfd *abfd);
static int vms_generic_stat_arch_elt (bfd *, struct stat *);
static long vms_get_symtab_upper_bound (bfd *abfd);
static long vms_canonicalize_symtab (bfd *abfd, asymbol **symbols);
static void vms_print_symbol (bfd *abfd, PTR file, asymbol *symbol,
bfd_print_symbol_type how);
static void vms_get_symbol_info (bfd *abfd, asymbol *symbol, symbol_info *ret);
static bfd_boolean vms_bfd_is_local_label_name (bfd *abfd, const char *);
static alent *vms_get_lineno (bfd *abfd, asymbol *symbol);
static bfd_boolean vms_find_nearest_line
(bfd *abfd, asection *section, asymbol **symbols, bfd_vma offset,
const char **file, const char **func, unsigned int *line);
static asymbol *vms_bfd_make_debug_symbol (bfd *abfd, void *ptr,
unsigned long size);
static long vms_read_minisymbols (bfd *abfd, bfd_boolean dynamic,
PTR *minisymsp, unsigned int *sizep);
static asymbol *vms_minisymbol_to_symbol
(bfd *abfd, bfd_boolean dynamic, const PTR minisym, asymbol *sym);
static void alloc_reloc_stream (bfd *abfd, asection *section,
void *alloc_error);
static bfd_boolean vms_slurp_reloc_table (bfd *abfd, asection *section,
asymbol **symbols);
static long vms_get_reloc_upper_bound (bfd *abfd, asection *sect);
static long vms_canonicalize_reloc (bfd *abfd, asection *srcsec,
arelent **location, asymbol **symbols);
static const struct reloc_howto_struct *vms_bfd_reloc_type_lookup
(bfd *abfd, bfd_reloc_code_real_type code);
static bfd_boolean vms_set_arch_mach
(bfd *abfd, enum bfd_architecture arch, unsigned long mach);
static bfd_boolean vms_set_section_contents
(bfd *abfd, asection *section, const PTR location, file_ptr offset,
bfd_size_type count);
static int vms_sizeof_headers (bfd *abfd,
struct bfd_link_info *info ATTRIBUTE_UNUSED);
static bfd_byte *vms_bfd_get_relocated_section_contents
(bfd *abfd, struct bfd_link_info *link_info,
struct bfd_link_order *link_order, bfd_byte *data,
bfd_boolean relocatable, asymbol **symbols);
static bfd_boolean vms_bfd_relax_section
(bfd *abfd, asection *section, struct bfd_link_info *link_info,
bfd_boolean *again);
static bfd_boolean vms_bfd_gc_sections
(bfd *abfd, struct bfd_link_info *link_info);
static bfd_boolean vms_bfd_merge_sections
(bfd *abfd, struct bfd_link_info *link_info);
static struct bfd_link_hash_table *vms_bfd_link_hash_table_create (bfd *abfd);
static void vms_bfd_link_hash_table_free (struct bfd_link_hash_table *hash);
static bfd_boolean vms_bfd_link_add_symbols
(bfd *abfd, struct bfd_link_info *link_info);
static bfd_boolean vms_bfd_final_link (bfd *abfd,
struct bfd_link_info *link_info);
static bfd_boolean vms_bfd_link_split_section (bfd *abfd, asection *section);
static long vms_get_dynamic_symtab_upper_bound (bfd *abfd);
static long vms_canonicalize_dynamic_symtab (bfd *abfd, asymbol **symbols);
static long vms_get_dynamic_reloc_upper_bound (bfd *abfd);
static long vms_canonicalize_dynamic_reloc
(bfd *abfd, arelent **arel, asymbol **symbols);
static bfd_boolean vms_bfd_merge_private_bfd_data (bfd *ibfd, bfd *obfd);
static bfd_boolean vms_bfd_set_private_flags (bfd *abfd, flagword flags);
#define vms_bfd_is_target_special_symbol ((bfd_boolean (*) (bfd *, asymbol *)) bfd_false)
#define vms_make_empty_symbol _bfd_generic_make_empty_symbol
#define vms_bfd_link_just_syms _bfd_generic_link_just_syms
#define vms_bfd_is_group_section bfd_generic_is_group_section
#define vms_bfd_discard_group bfd_generic_discard_group
#define vms_section_already_linked _bfd_generic_section_already_linked
#define vms_bfd_define_common_symbol bfd_generic_define_common_symbol
#define vms_bfd_copy_private_header_data _bfd_generic_bfd_copy_private_header_data
#define vms_get_synthetic_symtab _bfd_nodynamic_get_synthetic_symtab
#ifdef VMS_DEBUG
/* Cause debug info to be emitted for the structure. */
struct vms_private_data_struct _vms_private_data_struct_dummy;
struct vms_section_data_struct _vms_section_data_struct_dummy;
#endif
extern const bfd_target vms_vax_vec;
extern const bfd_target vms_alpha_vec;
/* Initialize private data */
static bfd_boolean
vms_initialize (bfd * abfd)
{
bfd_size_type amt;
bfd_set_start_address (abfd, (bfd_vma) -1);
amt = sizeof (struct vms_private_data_struct);
abfd->tdata.any = bfd_zalloc (abfd, amt);
if (abfd->tdata.any == NULL)
return FALSE;
if (bfd_get_flavour (abfd) == bfd_target_ovax_flavour)
PRIV (is_vax) = TRUE;
PRIV (file_format) = FF_UNKNOWN;
amt = sizeof (struct stack_struct) * STACKSIZE;
PRIV (stack) = bfd_alloc (abfd, amt);
if (PRIV (stack) == NULL)
goto error_ret1;
amt = sizeof (struct bfd_hash_table);
PRIV (vms_symbol_table) = bfd_alloc (abfd, amt);
if (PRIV (vms_symbol_table) == NULL)
goto error_ret1;
if (!bfd_hash_table_init (PRIV (vms_symbol_table), _bfd_vms_hash_newfunc,
sizeof (vms_symbol_entry)))
goto error_ret1;
amt = MAX_OUTREC_SIZE;
PRIV (output_buf) = bfd_alloc (abfd, amt);
if (PRIV (output_buf) == NULL)
goto error_ret2;
PRIV (length_pos) = 2;
return TRUE;
error_ret2:
bfd_hash_table_free (PRIV (vms_symbol_table));
error_ret1:
bfd_release (abfd, abfd->tdata.any);
abfd->tdata.any = NULL;
return FALSE;
}
struct pair
{
unsigned int section_count;
asection **sections;
};
/* Fill symbol->section with section pointer.
symbol->section is filled with the section index for defined symbols
during reading the GSD/EGSD section. But we need the pointer to the
bfd section later.
It has the correct value for referenced (undefined section) symbols.
Called from bfd_hash_traverse in vms_fixup_sections. */
static bfd_boolean
fill_section_ptr (struct bfd_hash_entry *entry, void *sections)
{
asymbol *sym = ((vms_symbol_entry *)entry)->symbol;
struct pair *data = (struct pair *)sections;
unsigned long sec = (unsigned long)sym->section;
#if VMS_DEBUG
vms_debug (6, "fill_section_ptr: sym %p, sec %p\n", sym, sec);
#endif
if (sec < data->section_count)
{
sym->section = data->sections[sec];
if (strcmp (sym->name, sym->section->name) == 0)
sym->flags |= BSF_SECTION_SYM;
}
else if (sec == (unsigned long)-1)
sym->section = &bfd_und_section;
return TRUE;
}
/* Fixup section pointers in symbols. */
static bfd_boolean
vms_fixup_sections (bfd * abfd)
{
struct pair data;
if (PRIV (fixup_done))
return TRUE;
data.section_count = PRIV (section_count);
data.sections = PRIV (sections);
bfd_hash_traverse (PRIV (vms_symbol_table), fill_section_ptr, &data);
PRIV (fixup_done) = TRUE;
return TRUE;
}
/* Slurp an ordered set of VMS object records. */
int
_bfd_vms_slurp_object_records (bfd * abfd)
{
int err, new_type, type = -1;
do
{
#if VMS_DEBUG
vms_debug (7, "reading at %08lx\n", bfd_tell (abfd));
#endif
new_type = _bfd_vms_get_object_record (abfd);
if (new_type < 0)
{
#if VMS_DEBUG
vms_debug (2, "next_record failed\n");
#endif
return -1;
}
if (type == EOBJ_S_C_EGSD && new_type != EOBJ_S_C_EGSD)
{
if (! vms_fixup_sections (abfd))
{
#if VMS_DEBUG
vms_debug (2, "vms_fixup_sections failed\n");
#endif
return -1;
}
}
type = new_type;
switch (type)
{
case OBJ_S_C_HDR:
case EOBJ_S_C_EMH:
err = _bfd_vms_slurp_hdr (abfd, type);
break;
case OBJ_S_C_EOM:
case OBJ_S_C_EOMW:
case EOBJ_S_C_EEOM:
err = _bfd_vms_slurp_eom (abfd, type);
break;
case OBJ_S_C_GSD:
case EOBJ_S_C_EGSD:
err = _bfd_vms_slurp_gsd (abfd, type);
break;
case OBJ_S_C_TIR:
case EOBJ_S_C_ETIR:
err = _bfd_vms_slurp_tir (abfd, type);
break;
case OBJ_S_C_DBG:
case EOBJ_S_C_EDBG:
err = _bfd_vms_slurp_dbg (abfd, type);
PRIV (dst_ptr_end) = PRIV (image_ptr);
break;
case OBJ_S_C_TBT:
case EOBJ_S_C_ETBT:
err = _bfd_vms_slurp_tbt (abfd, type);
PRIV (dst_ptr_end) = PRIV (image_ptr);
break;
case OBJ_S_C_LNK:
err = _bfd_vms_slurp_lnk (abfd, type);
break;
default:
err = -1;
}
if (err != 0)
{
#if VMS_DEBUG
vms_debug (2, "slurp type %d failed with %d\n", type, err);
#endif
return err;
}
}
while (type != EOBJ_S_C_EEOM && type != OBJ_S_C_EOM && type != OBJ_S_C_EOMW);
return 0;
}
/* Slurp a VMS module and return an error status. */
static int
vms_slurp_module (bfd *abfd)
{
int type, err;
if (PRIV (is_vax))
type = PRIV (vms_rec)[0];
else
type = bfd_getl16 (PRIV (vms_rec));
err = _bfd_vms_slurp_hdr (abfd, type);
if (err != 0)
{
bfd_set_error (bfd_error_wrong_format);
return err;
}
return _bfd_vms_slurp_object_records (abfd);
}
/* Slurp a VMS image and return an error status. */
static int
vms_slurp_image (bfd *abfd)
{
unsigned int isd_offset, ihs_offset;
int err;
err = _bfd_vms_slurp_ihd (abfd, &isd_offset, &ihs_offset);
if (err != 0)
{
bfd_set_error (bfd_error_wrong_format);
return err;
}
err = _bfd_vms_slurp_isd (abfd, isd_offset);
if (err != 0)
{
bfd_set_error (bfd_error_wrong_format);
return err;
}
return _bfd_vms_slurp_ihs (abfd, ihs_offset);
}
/* Check the format for a file being read.
Return a (bfd_target *) if it's an object file or zero if not. */
static const struct bfd_target *
vms_object_p (bfd *abfd)
{
const struct bfd_target *target_vector;
const bfd_arch_info_type *arch;
PTR tdata_save = abfd->tdata.any;
bfd_vma saddr_save = bfd_get_start_address (abfd);
int err = 0;
#if VMS_DEBUG
vms_debug (1, "vms_object_p(%p)\n", abfd);
#endif
if (!vms_initialize (abfd))
goto error_ret;
if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET))
goto err_wrong_format;
switch (_bfd_vms_get_first_record (abfd))
{
case FT_UNKNOWN:
default:
err = -1;
break;
case FT_MODULE:
err = vms_slurp_module (abfd);
break;
case FT_IMAGE:
err = vms_slurp_image (abfd);
break;
}
if (err != 0)
goto err_wrong_format;
if (PRIV (is_vax))
{
if (! vms_fixup_sections (abfd))
{
#if VMS_DEBUG
vms_debug (2, "vms_fixup_sections failed\n");
#endif
goto err_wrong_format;
}
target_vector = &vms_vax_vec;
arch = bfd_scan_arch ("vax");
#if VMS_DEBUG
vms_debug (2, "arch is vax\n");
#endif
}
else
{
/* Set arch_info to alpha. */
target_vector = &vms_alpha_vec;
arch = bfd_scan_arch ("alpha");
#if VMS_DEBUG
vms_debug (2, "arch is alpha\n");
#endif
}
abfd->arch_info = arch;
return target_vector;
err_wrong_format:
bfd_set_error (bfd_error_wrong_format);
error_ret:
if (abfd->tdata.any != tdata_save && abfd->tdata.any != NULL)
bfd_release (abfd, abfd->tdata.any);
abfd->tdata.any = tdata_save;
bfd_set_start_address (abfd, saddr_save);
return NULL;
}
/* Check the format for a file being read.
Return a (bfd_target *) if it's an archive file or zero. */
static const struct bfd_target *
vms_archive_p (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_archive_p (%p)\n", abfd);
#endif
return NULL;
}
/* Set the format of a file being written. */
static bfd_boolean
vms_mkobject (bfd * abfd)
{
const bfd_arch_info_type *arch;
#if VMS_DEBUG
vms_debug (1, "vms_mkobject (%p)\n", abfd);
#endif
if (!vms_initialize (abfd))
return FALSE;
if (PRIV (is_vax))
arch = bfd_scan_arch ("vax");
else
arch = bfd_scan_arch ("alpha");
if (arch == 0)
{
bfd_set_error(bfd_error_wrong_format);
return FALSE;
}
abfd->arch_info = arch;
return TRUE;
}
/* Write cached information into a file being written, at bfd_close. */
static bfd_boolean
vms_write_object_contents (bfd * abfd)
{
#if VMS_DEBUG
vms_debug (1, "vms_write_object_contents (%p)\n", abfd);
#endif
if (abfd->section_count > 0) /* we have sections */
{
if (PRIV (is_vax))
{
if (_bfd_vms_write_hdr (abfd, OBJ_S_C_HDR) != 0)
return FALSE;
if (_bfd_vms_write_gsd (abfd, OBJ_S_C_GSD) != 0)
return FALSE;
if (_bfd_vms_write_tir (abfd, OBJ_S_C_TIR) != 0)
return FALSE;
if (_bfd_vms_write_tbt (abfd, OBJ_S_C_TBT) != 0)
return FALSE;
if (_bfd_vms_write_dbg (abfd, OBJ_S_C_DBG) != 0)
return FALSE;
if (abfd->section_count > 255)
{
if (_bfd_vms_write_eom (abfd, OBJ_S_C_EOMW) != 0)
return FALSE;
}
else
{
if (_bfd_vms_write_eom (abfd, OBJ_S_C_EOM) != 0)
return FALSE;
}
}
else
{
if (_bfd_vms_write_hdr (abfd, EOBJ_S_C_EMH) != 0)
return FALSE;
if (_bfd_vms_write_gsd (abfd, EOBJ_S_C_EGSD) != 0)
return FALSE;
if (_bfd_vms_write_tir (abfd, EOBJ_S_C_ETIR) != 0)
return FALSE;
if (_bfd_vms_write_tbt (abfd, EOBJ_S_C_ETBT) != 0)
return FALSE;
if (_bfd_vms_write_dbg (abfd, EOBJ_S_C_EDBG) != 0)
return FALSE;
if (_bfd_vms_write_eom (abfd, EOBJ_S_C_EEOM) != 0)
return FALSE;
}
}
return TRUE;
}
/* 4.1, generic. */
/* Free the reloc buffer for the specified section. */
static void
free_reloc_stream (bfd *abfd ATTRIBUTE_UNUSED, asection *section,
void *data ATTRIBUTE_UNUSED)
{
if (vms_section_data (section)->reloc_stream)
free (vms_section_data (section)->reloc_stream);
}
#ifdef VMS
/* Convert the file to variable record length format. This is done
using undocumented system call sys$modify().
Pure VMS version. */
static void
vms_convert_to_var (char *vms_filename)
{
struct FAB fab = cc$rms_fab;
fab.fab$l_fna = vms_filename;
fab.fab$b_fns = strlen (vms_filename);
fab.fab$b_fac = FAB$M_PUT;
fab.fab$l_fop = FAB$M_ESC;
fab.fab$l_ctx = RME$C_SETRFM;
sys$open (&fab);
fab.fab$b_rfm = FAB$C_VAR;
sys$modify (&fab);
sys$close (&fab);
}
static int
vms_convert_to_var_1 (char *filename, int type)
{
if (type != DECC$K_FILE)
return FALSE;
vms_convert_to_var (filename);
return TRUE;
}
/* Convert the file to variable record length format. This is done
using undocumented system call sys$modify().
Unix filename version. */
static int
vms_convert_to_var_unix_filename (const char *unix_filename)
{
if (decc$to_vms (unix_filename, &vms_convert_to_var_1, 0, 1) != 1)
return FALSE;
return TRUE;
}
#endif /* VMS */
/* Called when the BFD is being closed to do any necessary cleanup. */
static bfd_boolean
vms_close_and_cleanup (bfd * abfd)
{
#if VMS_DEBUG
vms_debug (1, "vms_close_and_cleanup (%p)\n", abfd);
#endif
if (abfd == NULL || abfd->tdata.any == NULL)
return TRUE;
if (PRIV (vms_buf) != NULL)
free (PRIV (vms_buf));
if (PRIV (sections) != NULL)
free (PRIV (sections));
if (PRIV (vms_symbol_table))
bfd_hash_table_free (PRIV (vms_symbol_table));
bfd_map_over_sections (abfd, free_reloc_stream, NULL);
bfd_release (abfd, abfd->tdata.any);
abfd->tdata.any = NULL;
#ifdef VMS
if (abfd->direction == write_direction)
{
/* Last step on VMS is to convert the file to variable record length
format. */
if (bfd_cache_close (abfd) != TRUE)
return FALSE;
if (vms_convert_to_var_unix_filename (abfd->filename) != TRUE)
return FALSE;
}
#endif
return TRUE;
}
/* Ask the BFD to free all cached information. */
static bfd_boolean
vms_bfd_free_cached_info (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_free_cached_info (%p)\n", abfd);
#endif
return TRUE;
}
/* Called when a new section is created. */
static bfd_boolean
vms_new_section_hook (bfd * abfd, asection *section)
{
bfd_size_type amt;
/* Count hasn't been incremented yet. */
unsigned int section_count = abfd->section_count + 1;
#if VMS_DEBUG
vms_debug (1, "vms_new_section_hook (%p, [%d]%s), count %d\n",
abfd, section->index, section->name, section_count);
#endif
bfd_set_section_alignment (abfd, section, 0);
if (section_count > PRIV (section_count))
{
bfd_size_type amt = section_count;
amt *= sizeof (asection *);
PRIV (sections) = bfd_realloc_or_free (PRIV (sections), amt);
if (PRIV (sections) == NULL)
return FALSE;
PRIV (section_count) = section_count;
}
#if VMS_DEBUG
vms_debug (6, "section_count: %d\n", PRIV (section_count));
#endif
PRIV (sections)[section->index] = section;
#if VMS_DEBUG
vms_debug (7, "%d: %s\n", section->index, section->name);
#endif
amt = sizeof (struct vms_section_data_struct);
section->used_by_bfd = (PTR) bfd_zalloc (abfd, amt);
if (section->used_by_bfd == NULL)
return FALSE;
return _bfd_generic_new_section_hook (abfd, section);
}
/* Read the contents of a section.
buf points to a buffer of buf_size bytes to be filled with
section data (starting at offset into section) */
static bfd_boolean
vms_get_section_contents (bfd * abfd ATTRIBUTE_UNUSED,
asection *section ATTRIBUTE_UNUSED,
void * buf ATTRIBUTE_UNUSED,
file_ptr offset ATTRIBUTE_UNUSED,
bfd_size_type buf_size ATTRIBUTE_UNUSED)
{
bfd_size_type size = section->size;
#if VMS_DEBUG
vms_debug (1, "vms_get_section_contents (%p, %s, %p, off %ld, size %d)\n",
abfd, section->name, buf, offset, (int)buf_size);
#endif
if (section->contents)
abort ();
section->contents = (unsigned char *) bfd_malloc (size);
if (section->contents == NULL)
{
bfd_set_error (bfd_error_no_memory);
return FALSE;
}
if (bfd_seek (abfd, section->filepos, SEEK_SET))
{
bfd_set_error (bfd_error_file_truncated);
return FALSE;
}
if (bfd_bread (section->contents, size, abfd) != size)
{
bfd_set_error (bfd_error_file_truncated);
return FALSE;
}
section->flags |= SEC_IN_MEMORY;
if (buf)
memcpy (buf, section->contents + offset, (size_t) buf_size);
return TRUE;
}
/* Read the contents of a section.
buf points to a buffer of buf_size bytes to be filled with
section data (starting at offset into section). */
static bfd_boolean
vms_get_section_contents_in_window (bfd * abfd ATTRIBUTE_UNUSED,
asection *section ATTRIBUTE_UNUSED,
bfd_window *w ATTRIBUTE_UNUSED,
file_ptr offset ATTRIBUTE_UNUSED,
bfd_size_type count ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_get_section_contents_in_window (%p, %s, %p, off %ld, count %d)\n",
abfd, section->name, w, offset, (int)count);
#endif
/* Shouldn't be called, since all sections are IN_MEMORY. */
return FALSE;
}
/* Part 4.2, copy private data. */
/* Called to copy BFD general private data from one object file
to another. */
static bfd_boolean
vms_bfd_copy_private_bfd_data (bfd *src ATTRIBUTE_UNUSED,
bfd *dest ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_copy_private_bfd_data (%p, %p)\n", src, dest);
#endif
return TRUE;
}
/* Merge private BFD information from the BFD @var{ibfd} to the
the output file BFD @var{obfd} when linking. Return <<TRUE>>
on success, <<FALSE>> on error. Possible error returns are:
o <<bfd_error_no_memory>> -
Not enough memory exists to create private data for @var{obfd}. */
static bfd_boolean
vms_bfd_merge_private_bfd_data (bfd * ibfd ATTRIBUTE_UNUSED,
bfd * obfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1,"vms_bfd_merge_private_bfd_data (%p, %p)\n", ibfd, obfd);
#endif
return TRUE;
}
/* Set private BFD flag information in the BFD @var{abfd}.
Return <<TRUE>> on success, <<FALSE>> on error. Possible error
returns are:
o <<bfd_error_no_memory>> -
Not enough memory exists to create private data for @var{obfd}. */
static bfd_boolean
vms_bfd_set_private_flags (bfd * abfd ATTRIBUTE_UNUSED,
flagword flags ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1,"vms_bfd_set_private_flags (%p, %lx)\n", abfd, (long)flags);
#endif
return TRUE;
}
/* Called to copy BFD private section data from one object file
to another. */
static bfd_boolean
vms_bfd_copy_private_section_data (bfd *srcbfd ATTRIBUTE_UNUSED,
asection *srcsec ATTRIBUTE_UNUSED,
bfd *dstbfd ATTRIBUTE_UNUSED,
asection *dstsec ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_copy_private_section_data (%p, %s, %p, %s)\n",
srcbfd, srcsec->name, dstbfd, dstsec->name);
#endif
return TRUE;
}
/* Called to copy BFD private symbol data from one object file
to another. */
static bfd_boolean
vms_bfd_copy_private_symbol_data (bfd *ibfd ATTRIBUTE_UNUSED,
asymbol *isym ATTRIBUTE_UNUSED,
bfd *obfd ATTRIBUTE_UNUSED,
asymbol *osym ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_copy_private_symbol_data (%p, %s, %p, %s)\n",
ibfd, isym->name, obfd, osym->name);
#endif
return TRUE;
}
/* Part 4.3, core file. */
/* Return a read-only string explaining which program was running
when it failed and produced the core file abfd. */
static char *
vms_core_file_failing_command (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_core_file_failing_command (%p)\n", abfd);
#endif
return NULL;
}
/* Returns the signal number which caused the core dump which
generated the file the BFD abfd is attached to. */
static int
vms_core_file_failing_signal (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_core_file_failing_signal (%p)\n", abfd);
#endif
return 0;
}
/* Return TRUE if the core file attached to core_bfd was generated
by a run of the executable file attached to exec_bfd, FALSE otherwise. */
static bfd_boolean
vms_core_file_matches_executable_p (bfd * abfd ATTRIBUTE_UNUSED,
bfd *bbfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_core_file_matches_executable_p (%p, %p)\n", abfd, bbfd);
#endif
return FALSE;
}
/* Part 4.4, archive. */
/* ??? do something with an archive map.
Return FALSE on error, TRUE otherwise. */
static bfd_boolean
vms_slurp_armap (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_slurp_armap (%p)\n", abfd);
#endif
return FALSE;
}
/* ??? do something with an extended name table.
Return FALSE on error, TRUE otherwise. */
static bfd_boolean
vms_slurp_extended_name_table (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_slurp_extended_name_table (%p)\n", abfd);
#endif
return FALSE;
}
/* ??? do something with an extended name table.
Return FALSE on error, TRUE otherwise. */
static bfd_boolean
vms_construct_extended_name_table (bfd * abfd ATTRIBUTE_UNUSED,
char **tabloc ATTRIBUTE_UNUSED,
bfd_size_type *tablen ATTRIBUTE_UNUSED,
const char **name ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_construct_extended_name_table (%p)\n", abfd);
#endif
return FALSE;
}
/* Truncate the name of an archive to match system-dependent restrictions. */
static void
vms_truncate_arname (bfd * abfd ATTRIBUTE_UNUSED,
const char *pathname ATTRIBUTE_UNUSED,
char *arhdr ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_truncate_arname (%p, %s, %s)\n", abfd, pathname, arhdr);
#endif
}
/* ??? write archive map. */
static bfd_boolean
vms_write_armap (bfd *arch ATTRIBUTE_UNUSED,
unsigned int elength ATTRIBUTE_UNUSED,
struct orl *map ATTRIBUTE_UNUSED,
unsigned int orl_count ATTRIBUTE_UNUSED,
int stridx ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_write_armap (%p, %d, %p, %d %d)\n",
arch, elength, map, orl_count, stridx);
#endif
return TRUE;
}
/* Read archive header ??? */
static void *
vms_read_ar_hdr (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_read_ar_hdr (%p)\n", abfd);
#endif
return NULL;
}
/* Provided a BFD, @var{archive}, containing an archive and NULL, open
an input BFD on the first contained element and returns that.
Subsequent calls should pass the archive and the previous return value
to return a created BFD to the next contained element.
NULL is returned when there are no more. */
static bfd *
vms_openr_next_archived_file (bfd *arch ATTRIBUTE_UNUSED,
bfd *prev ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_openr_next_archived_file (%p, %p)\n", arch, prev);
#endif
return NULL;
}
/* Return the BFD which is referenced by the symbol in ABFD indexed by
INDEX. INDEX should have been returned by bfd_get_next_mapent. */
static bfd *
vms_get_elt_at_index (bfd * abfd, symindex index)
{
#if VMS_DEBUG
vms_debug (1, "vms_get_elt_at_index (%p, %p)\n", abfd, index);
#endif
return _bfd_generic_get_elt_at_index (abfd, index);
}
/* ???
-> bfd_generic_stat_arch_elt. */
static int
vms_generic_stat_arch_elt (bfd * abfd, struct stat *st)
{
#if VMS_DEBUG
vms_debug (1, "vms_generic_stat_arch_elt (%p, %p)\n", abfd, st);
#endif
return bfd_generic_stat_arch_elt (abfd, st);
}
/* This is a new function in bfd 2.5. */
static bfd_boolean
vms_update_armap_timestamp (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_update_armap_timestamp (%p)\n", abfd);
#endif
return TRUE;
}
/* Part 4.5, symbols. */
/* Return the number of bytes required to store a vector of pointers
to asymbols for all the symbols in the BFD abfd, including a
terminal NULL pointer. If there are no symbols in the BFD,
then return 0. If an error occurs, return -1. */
static long
vms_get_symtab_upper_bound (bfd * abfd)
{
#if VMS_DEBUG
vms_debug (1, "vms_get_symtab_upper_bound (%p), %d symbols\n", abfd, PRIV (gsd_sym_count));
#endif
return (PRIV (gsd_sym_count) + 1) * sizeof (asymbol *);
}
/* Copy symbols from hash table to symbol vector
called from bfd_hash_traverse in vms_canonicalize_symtab
init counter to 0 if entry == 0. */
static bfd_boolean
copy_symbols (struct bfd_hash_entry *entry, void * arg)
{
bfd * abfd = (bfd *) arg;
if (entry == NULL) /* Init counter. */
PRIV (symnum) = 0;
else /* Fill vector, inc counter. */
PRIV (symcache)[PRIV (symnum)++] = ((vms_symbol_entry *)entry)->symbol;
return TRUE;
}
/* Read the symbols from the BFD abfd, and fills in the vector
location with pointers to the symbols and a trailing NULL.
Return number of symbols read. */
static long
vms_canonicalize_symtab (bfd * abfd, asymbol **symbols)
{
#if VMS_DEBUG
vms_debug (1, "vms_canonicalize_symtab (%p, <ret>)\n", abfd);
#endif
/* Init counter. */
copy_symbols (NULL, abfd);
/* Traverse table and fill symbols vector. */
PRIV (symcache) = symbols;
bfd_hash_traverse (PRIV (vms_symbol_table), copy_symbols, abfd);
symbols[PRIV (gsd_sym_count)] = NULL;
return PRIV (gsd_sym_count);
}
/* Print symbol to file according to how. how is one of
bfd_print_symbol_name just print the name
bfd_print_symbol_more print more (???)
bfd_print_symbol_all print all we know, which is not much right now :-). */
static void
vms_print_symbol (bfd * abfd,
void * file,
asymbol *symbol,
bfd_print_symbol_type how)
{
#if VMS_DEBUG
vms_debug (1, "vms_print_symbol (%p, %p, %p, %d)\n", abfd, file, symbol, how);
#endif
switch (how)
{
case bfd_print_symbol_name:
case bfd_print_symbol_more:
fprintf ((FILE *)file," %s", symbol->name);
break;
case bfd_print_symbol_all:
{
const char *section_name = symbol->section->name;
bfd_print_symbol_vandf (abfd, file, symbol);
fprintf ((FILE *) file," %-8s %s", section_name, symbol->name);
}
break;
}
}
/* Return information about symbol in ret.
fill type, value and name
type:
A absolute
B bss segment symbol
C common symbol
D data segment symbol
f filename
t a static function symbol
T text segment symbol
U undefined
- debug. */
static void
vms_get_symbol_info (bfd * abfd ATTRIBUTE_UNUSED,
asymbol *symbol,
symbol_info *ret)
{
asection *sec;
#if VMS_DEBUG
vms_debug (1, "vms_get_symbol_info (%p, %p, %p)\n", abfd, symbol, ret);
#endif
sec = symbol->section;
if (ret == NULL)
return;
if (sec == 0)
ret->type = 'U';
else if (bfd_is_com_section (sec))
ret->type = 'C';
else if (bfd_is_abs_section (sec))
ret->type = 'A';
else if (bfd_is_und_section (sec))
ret->type = 'U';
else if (bfd_is_ind_section (sec))
ret->type = 'I';
else if (bfd_get_section_flags (abfd, sec) & SEC_CODE)
ret->type = 'T';
else if (bfd_get_section_flags (abfd, sec) & SEC_DATA)
ret->type = 'D';
else if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
ret->type = 'B';
else
ret->type = '-';
if (ret->type != 'U')
ret->value = symbol->value + symbol->section->vma;
else
ret->value = 0;
ret->name = symbol->name;
}
/* Return TRUE if the given symbol sym in the BFD abfd is
a compiler generated local label, else return FALSE. */
static bfd_boolean
vms_bfd_is_local_label_name (bfd * abfd ATTRIBUTE_UNUSED,
const char *name)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_is_local_label_name (%p, %s)\n", abfd, name);
#endif
return name[0] == '$';
}
/* Get source line number for symbol. */
static alent *
vms_get_lineno (bfd * abfd ATTRIBUTE_UNUSED,
asymbol *symbol ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_get_lineno (%p, %p)\n", abfd, symbol);
#endif
return NULL;
}
/* Provided a BFD, a section and an offset into the section, calculate and
return the name of the source file and the line nearest to the wanted
location. */
static bfd_boolean
vms_find_nearest_line (bfd * abfd ATTRIBUTE_UNUSED,
asection *section ATTRIBUTE_UNUSED,
asymbol **symbols ATTRIBUTE_UNUSED,
bfd_vma offset ATTRIBUTE_UNUSED,
const char **file ATTRIBUTE_UNUSED,
const char **func ATTRIBUTE_UNUSED,
unsigned int *line ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_find_nearest_line (%p, %s, %p, %ld, <ret>, <ret>, <ret>)\n",
abfd, section->name, symbols, (long int)offset);
#endif
return _bfd_vms_find_nearest_dst_line (abfd, section, symbols, offset, file, func, line);
}
static bfd_boolean
vms_find_inliner_info (bfd * abfd ATTRIBUTE_UNUSED,
const char **file ATTRIBUTE_UNUSED,
const char **func ATTRIBUTE_UNUSED,
unsigned int *line ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_find_inliner_info (%p, <ret>, <ret>, <ret>)\n",
abfd);
#endif
return FALSE;
}
/* Back-door to allow format-aware applications to create debug symbols
while using BFD for everything else. Currently used by the assembler
when creating COFF files. */
static asymbol *
vms_bfd_make_debug_symbol (bfd * abfd ATTRIBUTE_UNUSED,
void *ptr ATTRIBUTE_UNUSED,
unsigned long size ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_make_debug_symbol (%p, %p, %ld)\n", abfd, ptr, size);
#endif
return NULL;
}
/* Read minisymbols. For minisymbols, we use the unmodified a.out
symbols. The minisymbol_to_symbol function translates these into
BFD asymbol structures. */
static long
vms_read_minisymbols (bfd * abfd,
bfd_boolean dynamic,
void * *minisymsp,
unsigned int *sizep)
{
#if VMS_DEBUG
vms_debug (1, "vms_read_minisymbols (%p, %d, %p, %d)\n", abfd, dynamic, minisymsp, *sizep);
#endif
return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep);
}
/* Convert a minisymbol to a BFD asymbol. A minisymbol is just an
unmodified a.out symbol. The SYM argument is a structure returned
by bfd_make_empty_symbol, which we fill in here. */
static asymbol *
vms_minisymbol_to_symbol (bfd * abfd,
bfd_boolean dynamic,
const void * minisym,
asymbol *sym)
{
#if VMS_DEBUG
vms_debug (1, "vms_minisymbol_to_symbol (%p, %d, %p, %p)\n", abfd, dynamic, minisym, sym);
#endif
return _bfd_generic_minisymbol_to_symbol (abfd, dynamic, minisym, sym);
}
/* Part 4.6, relocations. */
/* Allocate the reloc buffer for the specified section. */
static void
alloc_reloc_stream (bfd *abfd ATTRIBUTE_UNUSED, asection *section,
void *alloc_error)
{
unsigned char *ptr;
/* If there were no relocations, there is nothing to do. */
if (section->reloc_count == 0)
return;
ptr = bfd_malloc (vms_section_data (section)->reloc_size);
if (ptr == NULL)
{
*(bfd_boolean *)alloc_error = TRUE;
return;
}
vms_section_data (section)->reloc_stream = ptr;
}
/* Read in the relocs for the specified section and internalize them.
The implementation is loosely based on the SOM code and made up
of 3 distinct phases:
1. When the VMS object is opened and parsed, the number and the size
of the relocations are computed for all sections. This makes it
possible to know upfront both which sections have no relocs and
the size of the reloc buffers for the other sections, at virtually
no cost for consumers that don't care about relocs at all.
2. When vms_slurp_reloc_table is invoked for the first time on a section
with relocs, the object is traversed and all the reloc information
is saved in per-section reloc buffers. It would be very inefficient
to scan the whole file on each invocation, so we slurp for all the
sections at once.
3. On subsequent invocations of vms_slurp_reloc_table, the relocs for the
specified section are fetched from the buffer, decoded and internalized.
The buffer is then freed since the internalized relocs are attached to
the section, turning additional invocations of vms_slurp_reloc_table
on the same section into no-ops.
Since VMS objects have very few sections, it could be profitable to merge
phase #2 and phase #3, i.e. to decode and internalize the relocs for all
the sections at once. The current implementation is more elegant. */
static bfd_boolean
vms_slurp_reloc_table (bfd *abfd, asection *section, asymbol **symbols)
{
arelent *internal_relocs;
bfd_size_type amt;
int err;
/* If there were no relocations, there is nothing to do. */
if (section->reloc_count == 0)
return TRUE;
/* Return saved information about the relocations if it is available. */
if (section->relocation != NULL)
return TRUE;
/* If the relocation stream has not been slurped, do it now. */
if (vms_section_data (section)->reloc_stream == NULL)
{
bfd_boolean alloc_error = FALSE;
int type;
/* Size the reloc buffer for each section. */
bfd_map_over_sections (abfd, alloc_reloc_stream, &alloc_error);
if (alloc_error)
return FALSE;
if (bfd_seek (abfd, 0, SEEK_SET) != 0)
return FALSE;
/* Reset section pointer. */
PRIV (image_section) = NULL;
do
{
type = _bfd_vms_get_object_record (abfd);
if (type != EOBJ_S_C_ETIR
&& type != EOBJ_S_C_EDBG
&& type != EOBJ_S_C_ETBT)
continue;
err = _bfd_vms_slurp_relocs (abfd);
if (err != 0)
{
#if VMS_DEBUG
vms_debug (2, "slurp relocs failed with %d\n", err);
#endif
return FALSE;
}
}
while (type != EOBJ_S_C_EEOM);
}
amt = section->reloc_count * sizeof (arelent);
internal_relocs = (arelent *) bfd_zalloc (abfd, amt);
if (internal_relocs == NULL)
return FALSE;
/* Decode and internalize the relocations. */
err = _bfd_vms_decode_relocs (abfd, internal_relocs, section, symbols);
if (err != 0)
{
#if VMS_DEBUG
vms_debug (2, "decode relocs failed with %d\n", err);
#endif
return FALSE;
}
/* We're done with the external relocations. Free them. */
free (vms_section_data (section)->reloc_stream);
vms_section_data (section)->reloc_stream = NULL;
/* Save our results and return success. */
section->relocation = internal_relocs;
return TRUE;
}
/* Return the number of bytes required to store the relocation
information associated with the given section. */
static long
vms_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED, asection *section)
{
return (section->reloc_count + 1) * sizeof (arelent *);
}
/* Convert relocations from VMS (external) form into BFD internal
form. Return the number of relocations. */
static long
vms_canonicalize_reloc (bfd *abfd, asection *section, arelent **relptr,
asymbol **symbols)
{
arelent *tblptr;
int count;
if (! vms_slurp_reloc_table (abfd, section, symbols))
return -1;
count = section->reloc_count;
tblptr = section->relocation;
while (count--)
*relptr++ = tblptr++;
*relptr = (arelent *) NULL;
return section->reloc_count;
}
/* This is just copied from ecoff-alpha, needs to be fixed probably. */
/* How to process the various reloc types. */
static bfd_reloc_status_type
reloc_nil (bfd * abfd ATTRIBUTE_UNUSED,
arelent *reloc ATTRIBUTE_UNUSED,
asymbol *sym ATTRIBUTE_UNUSED,
void * data ATTRIBUTE_UNUSED,
asection *sec ATTRIBUTE_UNUSED,
bfd *output_bfd ATTRIBUTE_UNUSED,
char **error_message ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "reloc_nil (abfd %p, output_bfd %p)\n", abfd, output_bfd);
vms_debug (2, "In section %s, symbol %s\n",
sec->name, sym->name);
vms_debug (2, "reloc sym %s, addr %08lx, addend %08lx, reloc is a %s\n",
reloc->sym_ptr_ptr[0]->name,
(unsigned long)reloc->address,
(unsigned long)reloc->addend, reloc->howto->name);
vms_debug (2, "data at %p\n", data);
/* _bfd_hexdump (2, data, bfd_get_reloc_size (reloc->howto), 0); */
#endif
return bfd_reloc_ok;
}
/* In case we're on a 32-bit machine, construct a 64-bit "-1" value
from smaller values. Start with zero, widen, *then* decrement. */
#define MINUS_ONE (((bfd_vma)0) - 1)
static reloc_howto_type alpha_howto_table[] =
{
HOWTO (ALPHA_R_IGNORE, /* Type. */
0, /* Rightshift. */
0, /* Size (0 = byte, 1 = short, 2 = long). */
8, /* Bitsize. */
TRUE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"IGNORE", /* Name. */
TRUE, /* Partial_inplace. */
0, /* Source mask */
0, /* Dest mask. */
TRUE), /* PC rel offset. */
/* A 64 bit reference to a symbol. */
HOWTO (ALPHA_R_REFQUAD, /* Type. */
0, /* Rightshift. */
4, /* Size (0 = byte, 1 = short, 2 = long). */
64, /* Bitsize. */
FALSE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_bitfield, /* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"REFQUAD", /* Name. */
TRUE, /* Partial_inplace. */
MINUS_ONE, /* Source mask. */
MINUS_ONE, /* Dest mask. */
FALSE), /* PC rel offset. */
/* A 21 bit branch. The native assembler generates these for
branches within the text segment, and also fills in the PC
relative offset in the instruction. */
HOWTO (ALPHA_R_BRADDR, /* Type. */
2, /* Rightshift. */
2, /* Size (0 = byte, 1 = short, 2 = long). */
21, /* Bitsize. */
TRUE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_signed, /* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"BRADDR", /* Name. */
TRUE, /* Partial_inplace. */
0x1fffff, /* Source mask. */
0x1fffff, /* Dest mask. */
FALSE), /* PC rel offset. */
/* A hint for a jump to a register. */
HOWTO (ALPHA_R_HINT, /* Type. */
2, /* Rightshift. */
1, /* Size (0 = byte, 1 = short, 2 = long). */
14, /* Bitsize. */
TRUE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"HINT", /* Name. */
TRUE, /* Partial_inplace. */
0x3fff, /* Source mask. */
0x3fff, /* Dest mask. */
FALSE), /* PC rel offset. */
/* 16 bit PC relative offset. */
HOWTO (ALPHA_R_SREL16, /* Type. */
0, /* Rightshift. */
1, /* Size (0 = byte, 1 = short, 2 = long). */
16, /* Bitsize. */
TRUE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_signed, /* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"SREL16", /* Name. */
TRUE, /* Partial_inplace. */
0xffff, /* Source mask. */
0xffff, /* Dest mask. */
FALSE), /* PC rel offset. */
/* 32 bit PC relative offset. */
HOWTO (ALPHA_R_SREL32, /* Type. */
0, /* Rightshift. */
2, /* Size (0 = byte, 1 = short, 2 = long). */
32, /* Bitsize. */
TRUE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_signed, /* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"SREL32", /* Name. */
TRUE, /* Partial_inplace. */
0xffffffff, /* Source mask. */
0xffffffff, /* Dest mask. */
FALSE), /* PC rel offset. */
/* A 64 bit PC relative offset. */
HOWTO (ALPHA_R_SREL64, /* Type. */
0, /* Rightshift. */
4, /* Size (0 = byte, 1 = short, 2 = long). */
64, /* Bitsize. */
TRUE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_signed, /* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"SREL64", /* Name. */
TRUE, /* Partial_inplace. */
MINUS_ONE, /* Source mask. */
MINUS_ONE, /* Dest mask. */
FALSE), /* PC rel offset. */
/* Push a value on the reloc evaluation stack. */
HOWTO (ALPHA_R_OP_PUSH, /* Type. */
0, /* Rightshift. */
0, /* Size (0 = byte, 1 = short, 2 = long). */
0, /* Bitsize. */
FALSE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"OP_PUSH", /* Name. */
FALSE, /* Partial_inplace. */
0, /* Source mask. */
0, /* Dest mask. */
FALSE), /* PC rel offset. */
/* Store the value from the stack at the given address. Store it in
a bitfield of size r_size starting at bit position r_offset. */
HOWTO (ALPHA_R_OP_STORE, /* Type. */
0, /* Rightshift. */
4, /* Size (0 = byte, 1 = short, 2 = long). */
64, /* Bitsize. */
FALSE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"OP_STORE", /* Name. */
FALSE, /* Partial_inplace. */
0, /* Source mask. */
MINUS_ONE, /* Dest mask. */
FALSE), /* PC rel offset. */
/* Subtract the reloc address from the value on the top of the
relocation stack. */
HOWTO (ALPHA_R_OP_PSUB, /* Type. */
0, /* Rightshift. */
0, /* Size (0 = byte, 1 = short, 2 = long). */
0, /* Bitsize. */
FALSE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"OP_PSUB", /* Name. */
FALSE, /* Partial_inplace. */
0, /* Source mask. */
0, /* Dest mask. */
FALSE), /* PC rel offset. */
/* Shift the value on the top of the relocation stack right by the
given value. */
HOWTO (ALPHA_R_OP_PRSHIFT, /* Type. */
0, /* Rightshift. */
0, /* Size (0 = byte, 1 = short, 2 = long). */
0, /* Bitsize. */
FALSE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"OP_PRSHIFT", /* Name. */
FALSE, /* Partial_inplace. */
0, /* Source mask. */
0, /* Dest mask. */
FALSE), /* PC rel offset. */
/* Hack. Linkage is done by linker. */
HOWTO (ALPHA_R_LINKAGE, /* Type. */
0, /* Rightshift. */
8, /* Size (0 = byte, 1 = short, 2 = long). */
256, /* Bitsize. */
FALSE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"LINKAGE", /* Name. */
FALSE, /* Partial_inplace. */
0, /* Source mask. */
0, /* Dest mask. */
FALSE), /* PC rel offset. */
/* A 32 bit reference to a symbol. */
HOWTO (ALPHA_R_REFLONG, /* Type. */
0, /* Rightshift. */
2, /* Size (0 = byte, 1 = short, 2 = long). */
32, /* Bitsize. */
FALSE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_bitfield, /* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"REFLONG", /* Name. */
TRUE, /* Partial_inplace. */
0xffffffff, /* Source mask. */
0xffffffff, /* Dest mask. */
FALSE), /* PC rel offset. */
/* A 64 bit reference to a procedure, written as 32 bit value. */
HOWTO (ALPHA_R_CODEADDR, /* Type. */
0, /* Rightshift. */
4, /* Size (0 = byte, 1 = short, 2 = long). */
64, /* Bitsize. */
FALSE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_signed,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"CODEADDR", /* Name. */
FALSE, /* Partial_inplace. */
0xffffffff, /* Source mask. */
0xffffffff, /* Dest mask. */
FALSE), /* PC rel offset. */
HOWTO (ALPHA_R_NOP, /* Type. */
0, /* Rightshift. */
3, /* Size (0 = byte, 1 = short, 2 = long). */
0, /* Bitsize. */
/* The following value must match that of ALPHA_R_BSR/ALPHA_R_BOH
because the calculations for the 3 relocations are the same.
See B.4.5.2 of the OpenVMS Linker Utility Manual. */
TRUE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"NOP", /* Name. */
FALSE, /* Partial_inplace. */
0xffffffff, /* Source mask. */
0xffffffff, /* Dest mask. */
FALSE), /* PC rel offset. */
HOWTO (ALPHA_R_BSR, /* Type. */
0, /* Rightshift. */
3, /* Size (0 = byte, 1 = short, 2 = long). */
0, /* Bitsize. */
TRUE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"BSR", /* Name. */
FALSE, /* Partial_inplace. */
0xffffffff, /* Source mask. */
0xffffffff, /* Dest mask. */
FALSE), /* PC rel offset. */
HOWTO (ALPHA_R_LDA, /* Type. */
0, /* Rightshift. */
3, /* Size (0 = byte, 1 = short, 2 = long). */
0, /* Bitsize. */
FALSE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"LDA", /* Name. */
FALSE, /* Partial_inplace. */
0xffffffff, /* Source mask. */
0xffffffff, /* Dest mask. */
FALSE), /* PC rel offset. */
HOWTO (ALPHA_R_BOH, /* Type. */
0, /* Rightshift. */
3, /* Size (0 = byte, 1 = short, 2 = long, 3 = nil). */
0, /* Bitsize. */
TRUE, /* PC relative. */
0, /* Bitpos. */
complain_overflow_dont,/* Complain_on_overflow. */
reloc_nil, /* Special_function. */
"BOH", /* Name. */
FALSE, /* Partial_inplace. */
0xffffffff, /* Source mask. */
0xffffffff, /* Dest mask. */
FALSE), /* PC rel offset. */
};
/* Return a pointer to a howto structure which, when invoked, will perform
the relocation code on data from the architecture noted. */
static const struct reloc_howto_struct *
vms_bfd_reloc_type_lookup (bfd * abfd ATTRIBUTE_UNUSED,
bfd_reloc_code_real_type code)
{
int alpha_type;
#if VMS_DEBUG
vms_debug (1, "vms_bfd_reloc_type_lookup (%p, %d)\t", abfd, code);
#endif
switch (code)
{
case BFD_RELOC_16: alpha_type = ALPHA_R_SREL16; break;
case BFD_RELOC_32: alpha_type = ALPHA_R_REFLONG; break;
case BFD_RELOC_64: alpha_type = ALPHA_R_REFQUAD; break;
case BFD_RELOC_CTOR: alpha_type = ALPHA_R_REFQUAD; break;
case BFD_RELOC_23_PCREL_S2: alpha_type = ALPHA_R_BRADDR; break;
case BFD_RELOC_ALPHA_HINT: alpha_type = ALPHA_R_HINT; break;
case BFD_RELOC_16_PCREL: alpha_type = ALPHA_R_SREL16; break;
case BFD_RELOC_32_PCREL: alpha_type = ALPHA_R_SREL32; break;
case BFD_RELOC_64_PCREL: alpha_type = ALPHA_R_SREL64; break;
case BFD_RELOC_ALPHA_LINKAGE: alpha_type = ALPHA_R_LINKAGE; break;
case BFD_RELOC_ALPHA_CODEADDR: alpha_type = ALPHA_R_CODEADDR; break;
case BFD_RELOC_ALPHA_NOP: alpha_type = ALPHA_R_NOP; break;
case BFD_RELOC_ALPHA_BSR: alpha_type = ALPHA_R_BSR; break;
case BFD_RELOC_ALPHA_LDA: alpha_type = ALPHA_R_LDA; break;
case BFD_RELOC_ALPHA_BOH: alpha_type = ALPHA_R_BOH; break;
default:
(*_bfd_error_handler) ("reloc (%d) is *UNKNOWN*", code);
return NULL;
}
#if VMS_DEBUG
vms_debug (2, "reloc is %s\n", alpha_howto_table[alpha_type].name);
#endif
return & alpha_howto_table[alpha_type];
}
static reloc_howto_type *
vms_bfd_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
const char *r_name)
{
unsigned int i;
for (i = 0;
i < sizeof (alpha_howto_table) / sizeof (alpha_howto_table[0]);
i++)
if (alpha_howto_table[i].name != NULL
&& strcasecmp (alpha_howto_table[i].name, r_name) == 0)
return &alpha_howto_table[i];
return NULL;
}
/* Part 4.7, writing an object file. */
/* Set the architecture and machine type in BFD abfd to arch and mach.
Find the correct pointer to a structure and insert it into the arch_info
pointer. */
static bfd_boolean
vms_set_arch_mach (bfd * abfd,
enum bfd_architecture arch ATTRIBUTE_UNUSED,
unsigned long mach ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_set_arch_mach (%p, %d, %ld)\n", abfd, arch, mach);
#endif
if (arch != bfd_arch_alpha
&& arch != bfd_arch_vax
&& arch != bfd_arch_unknown)
return FALSE;
return bfd_default_set_arch_mach (abfd, arch, mach);
}
/* Sets the contents of the section section in BFD abfd to the data starting
in memory at LOCATION. The data is written to the output section starting
at offset offset for count bytes.
Normally TRUE is returned, else FALSE. Possible error returns are:
o bfd_error_no_contents - The output section does not have the
SEC_HAS_CONTENTS attribute, so nothing can be written to it.
o and some more too */
static bfd_boolean
vms_set_section_contents (bfd * abfd,
asection *section,
const void * location,
file_ptr offset,
bfd_size_type count)
{
#if VMS_DEBUG
vms_debug (1, "vms_set_section_contents (%p, sec %s, loc %p, off %ld, count %d)\n",
abfd, section->name, location, (long int)offset, (int)count);
vms_debug (2, "size %d\n", (int) section->size);
#endif
if (count == (bfd_size_type)0)
return TRUE;
if (section->contents == NULL)
section->contents = bfd_alloc (abfd, section->size);
if (section->contents == NULL)
return FALSE;
memcpy (section->contents + offset, location, (size_t) count);
return TRUE;
}
/* Part 4.8, linker. */
/* Get the size of the section headers. */
static int
vms_sizeof_headers (bfd * abfd ATTRIBUTE_UNUSED,
struct bfd_link_info *info ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_sizeof_headers (%p, %s)\n", abfd, (reloc)?"True":"False");
#endif
return 0;
}
/* Provides default handling of relocation effort for back ends
which can't be bothered to do it efficiently. */
static bfd_byte *
vms_bfd_get_relocated_section_contents (bfd * abfd ATTRIBUTE_UNUSED,
struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
struct bfd_link_order *link_order ATTRIBUTE_UNUSED,
bfd_byte *data ATTRIBUTE_UNUSED,
bfd_boolean relocatable ATTRIBUTE_UNUSED,
asymbol **symbols ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_get_relocated_section_contents (%p, %p, %p, %p, %s, %p)\n",
abfd, link_info, link_order, data, (relocatable)?"True":"False", symbols);
#endif
return NULL;
}
/* ??? */
static bfd_boolean
vms_bfd_relax_section (bfd * abfd ATTRIBUTE_UNUSED,
asection *section ATTRIBUTE_UNUSED,
struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
bfd_boolean *again ATTRIBUTE_UNUSED)
{
if (link_info->relocatable)
(*link_info->callbacks->einfo)
(_("%P%F: --relax and -r may not be used together\n"));
#if VMS_DEBUG
vms_debug (1, "vms_bfd_relax_section (%p, %s, %p, <ret>)\n",
abfd, section->name, link_info);
#endif
return TRUE;
}
static bfd_boolean
vms_bfd_gc_sections (bfd * abfd ATTRIBUTE_UNUSED,
struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_gc_sections (%p, %p)\n", abfd, link_info);
#endif
return TRUE;
}
static bfd_boolean
vms_bfd_merge_sections (bfd * abfd ATTRIBUTE_UNUSED,
struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_merge_sections (%p, %p)\n", abfd, link_info);
#endif
return TRUE;
}
/* Create a hash table for the linker. Different backends store
different information in this table. */
static struct bfd_link_hash_table *
vms_bfd_link_hash_table_create (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_link_hash_table_create (%p)\n", abfd);
#endif
return NULL;
}
/* Free a linker hash table. */
static void
vms_bfd_link_hash_table_free (struct bfd_link_hash_table *hash ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_link_hash_table_free (%p)\n", abfd);
#endif
}
/* Add symbols from this object file into the hash table. */
static bfd_boolean
vms_bfd_link_add_symbols (bfd * abfd ATTRIBUTE_UNUSED,
struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_link_add_symbols (%p, %p)\n", abfd, link_info);
#endif
return FALSE;
}
/* Do a link based on the link_order structures attached to each
section of the BFD. */
static bfd_boolean
vms_bfd_final_link (bfd * abfd ATTRIBUTE_UNUSED,
struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_final_link (%p, %p)\n", abfd, link_info);
#endif
return TRUE;
}
/* Should this section be split up into smaller pieces during linking. */
static bfd_boolean
vms_bfd_link_split_section (bfd * abfd ATTRIBUTE_UNUSED,
asection *section ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_link_split_section (%p, %s)\n", abfd, section->name);
#endif
return FALSE;
}
/* Part 4.9, dynamic symbols and relocations. */
/* Get the amount of memory required to hold the dynamic symbols. */
static long
vms_get_dynamic_symtab_upper_bound (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_get_dynamic_symtab_upper_bound (%p)\n", abfd);
#endif
return 0L;
}
static bfd_boolean
vms_bfd_print_private_bfd_data (bfd * abfd ATTRIBUTE_UNUSED,
void *file ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_bfd_print_private_bfd_data (%p)\n", abfd);
#endif
return FALSE;
}
/* Read in the dynamic symbols. */
static long
vms_canonicalize_dynamic_symtab (bfd * abfd ATTRIBUTE_UNUSED,
asymbol **symbols ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_canonicalize_dynamic_symtab (%p, <ret>)\n", abfd);
#endif
return 0L;
}
/* Get the amount of memory required to hold the dynamic relocs. */
static long
vms_get_dynamic_reloc_upper_bound (bfd * abfd ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_get_dynamic_reloc_upper_bound (%p)\n", abfd);
#endif
return 0L;
}
/* Read in the dynamic relocs. */
static long
vms_canonicalize_dynamic_reloc (bfd * abfd ATTRIBUTE_UNUSED,
arelent **arel ATTRIBUTE_UNUSED,
asymbol **symbols ATTRIBUTE_UNUSED)
{
#if VMS_DEBUG
vms_debug (1, "vms_canonicalize_dynamic_reloc (%p)\n", abfd);
#endif
return 0L;
}
const bfd_target vms_alpha_vec =
{
"vms-alpha", /* Name. */
bfd_target_evax_flavour,
BFD_ENDIAN_LITTLE, /* Data byte order is little. */
BFD_ENDIAN_LITTLE, /* Header byte order is little. */
(HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS
| WP_TEXT | D_PAGED), /* Object flags. */
(SEC_ALLOC | SEC_LOAD | SEC_RELOC
| SEC_READONLY | SEC_CODE | SEC_DATA
| SEC_HAS_CONTENTS | SEC_IN_MEMORY), /* Sect flags. */
0, /* symbol_leading_char. */
' ', /* ar_pad_char. */
15, /* ar_max_namelen. */
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
bfd_getl32, bfd_getl_signed_32, bfd_putl32,
bfd_getl16, bfd_getl_signed_16, bfd_putl16,
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
bfd_getl32, bfd_getl_signed_32, bfd_putl32,
bfd_getl16, bfd_getl_signed_16, bfd_putl16,
{_bfd_dummy_target, vms_object_p, /* bfd_check_format. */
vms_archive_p, _bfd_dummy_target},
{bfd_false, vms_mkobject, /* bfd_set_format. */
_bfd_generic_mkarchive, bfd_false},
{bfd_false, vms_write_object_contents, /* bfd_write_contents. */
_bfd_write_archive_contents, bfd_false},
BFD_JUMP_TABLE_GENERIC (vms),
BFD_JUMP_TABLE_COPY (vms),
BFD_JUMP_TABLE_CORE (vms),
BFD_JUMP_TABLE_ARCHIVE (vms),
BFD_JUMP_TABLE_SYMBOLS (vms),
BFD_JUMP_TABLE_RELOCS (vms),
BFD_JUMP_TABLE_WRITE (vms),
BFD_JUMP_TABLE_LINK (vms),
BFD_JUMP_TABLE_DYNAMIC (vms),
NULL,
(PTR) 0
};
const bfd_target vms_vax_vec =
{
"vms-vax", /* Name. */
bfd_target_ovax_flavour,
BFD_ENDIAN_LITTLE, /* Data byte order is little. */
BFD_ENDIAN_LITTLE, /* Header byte order is little. */
(HAS_RELOC | HAS_SYMS /* Object flags. */
| WP_TEXT | D_PAGED
| HAS_LINENO | HAS_DEBUG | HAS_LOCALS),
(SEC_ALLOC | SEC_LOAD | SEC_RELOC
| SEC_READONLY | SEC_CODE | SEC_DATA
| SEC_HAS_CONTENTS | SEC_IN_MEMORY), /* Sect flags. */
0, /* symbol_leading_char */
' ', /* ar_pad_char */
15, /* ar_max_namelen */
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
bfd_getl32, bfd_getl_signed_32, bfd_putl32,
bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* Data. */
bfd_getl64, bfd_getl_signed_64, bfd_putl64,
bfd_getl32, bfd_getl_signed_32, bfd_putl32,
bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* Hdrs. */
{_bfd_dummy_target, vms_object_p, /* bfd_check_format. */
vms_archive_p, _bfd_dummy_target},
{bfd_false, vms_mkobject, /* bfd_set_format. */
_bfd_generic_mkarchive, bfd_false},
{bfd_false, vms_write_object_contents, /* bfd_write_contents. */
_bfd_write_archive_contents, bfd_false},
BFD_JUMP_TABLE_GENERIC (vms),
BFD_JUMP_TABLE_COPY (vms),
BFD_JUMP_TABLE_CORE (vms),
BFD_JUMP_TABLE_ARCHIVE (vms),
BFD_JUMP_TABLE_SYMBOLS (vms),
BFD_JUMP_TABLE_RELOCS (vms),
BFD_JUMP_TABLE_WRITE (vms),
BFD_JUMP_TABLE_LINK (vms),
BFD_JUMP_TABLE_DYNAMIC (vms),
NULL,
(PTR) 0
};
|