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
|
/* tc-mep.c -- Assembler for the Toshiba Media Processor.
Copyright (C) 2001-2020 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
GAS 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, or (at your option)
any later version.
GAS 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 GAS; see the file COPYING. If not, write to
the Free Software Foundation, 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
#include "as.h"
#include <stdio.h>
#include "dwarf2dbg.h"
#include "subsegs.h"
#include "symcat.h"
#include "opcodes/mep-desc.h"
#include "opcodes/mep-opc.h"
#include "cgen.h"
#include "elf/common.h"
#include "elf/mep.h"
#include "xregex.h"
/* Structure to hold all of the different components describing
an individual instruction. */
typedef struct
{
const CGEN_INSN * insn;
const CGEN_INSN * orig_insn;
CGEN_FIELDS fields;
#if CGEN_INT_INSN_P
CGEN_INSN_INT buffer [1];
#define INSN_VALUE(buf) (*(buf))
#else
unsigned char buffer [CGEN_MAX_INSN_SIZE];
#define INSN_VALUE(buf) (buf)
#endif
char * addr;
fragS * frag;
int num_fixups;
fixS * fixups [GAS_CGEN_MAX_FIXUPS];
int indices [MAX_OPERAND_INSTANCES];
} mep_insn;
static int mode = CORE; /* Start in core mode. */
static int pluspresent = 0;
static int allow_disabled_registers = 0;
static int library_flag = 0;
static int mep_cop = EF_MEP_COP_NONE;
/* We're going to need to store all of the instructions along with
their fixups so that we can parallelization grouping rules. */
static mep_insn saved_insns[MAX_SAVED_FIXUP_CHAINS];
static int num_insns_saved = 0;
const char comment_chars[] = "#";
const char line_comment_chars[] = ";#";
const char line_separator_chars[] = ";";
const char EXP_CHARS[] = "eE";
const char FLT_CHARS[] = "dD";
static void mep_switch_to_vliw_mode (int);
static void mep_switch_to_core_mode (int);
static void mep_s_vtext (int);
static void mep_noregerr (int);
/* The target specific pseudo-ops which we support. */
const pseudo_typeS md_pseudo_table[] =
{
{ "word", cons, 4 },
{ "vliw", mep_switch_to_vliw_mode, 0 },
{ "core", mep_switch_to_core_mode, 0 },
{ "vtext", mep_s_vtext, 0 },
{ "noregerr", mep_noregerr, 0 },
{ NULL, NULL, 0 }
};
/* Relocations against symbols are done in two
parts, with a HI relocation and a LO relocation. Each relocation
has only 16 bits of space to store an addend. This means that in
order for the linker to handle carries correctly, it must be able
to locate both the HI and the LO relocation. This means that the
relocations must appear in order in the relocation table.
In order to implement this, we keep track of each unmatched HI
relocation. We then sort them so that they immediately precede the
corresponding LO relocation. */
struct mep_hi_fixup
{
struct mep_hi_fixup * next; /* Next HI fixup. */
fixS * fixp; /* This fixup. */
segT seg; /* The section this fixup is in. */
};
/* The list of unmatched HI relocs. */
static struct mep_hi_fixup * mep_hi_fixup_list;
#define OPTION_EB (OPTION_MD_BASE + 0)
#define OPTION_EL (OPTION_MD_BASE + 1)
#define OPTION_CONFIG (OPTION_MD_BASE + 2)
#define OPTION_AVERAGE (OPTION_MD_BASE + 3)
#define OPTION_NOAVERAGE (OPTION_MD_BASE + 4)
#define OPTION_MULT (OPTION_MD_BASE + 5)
#define OPTION_NOMULT (OPTION_MD_BASE + 6)
#define OPTION_DIV (OPTION_MD_BASE + 7)
#define OPTION_NODIV (OPTION_MD_BASE + 8)
#define OPTION_BITOPS (OPTION_MD_BASE + 9)
#define OPTION_NOBITOPS (OPTION_MD_BASE + 10)
#define OPTION_LEADZ (OPTION_MD_BASE + 11)
#define OPTION_NOLEADZ (OPTION_MD_BASE + 12)
#define OPTION_ABSDIFF (OPTION_MD_BASE + 13)
#define OPTION_NOABSDIFF (OPTION_MD_BASE + 14)
#define OPTION_MINMAX (OPTION_MD_BASE + 15)
#define OPTION_NOMINMAX (OPTION_MD_BASE + 16)
#define OPTION_CLIP (OPTION_MD_BASE + 17)
#define OPTION_NOCLIP (OPTION_MD_BASE + 18)
#define OPTION_SATUR (OPTION_MD_BASE + 19)
#define OPTION_NOSATUR (OPTION_MD_BASE + 20)
#define OPTION_COP32 (OPTION_MD_BASE + 21)
#define OPTION_REPEAT (OPTION_MD_BASE + 25)
#define OPTION_NOREPEAT (OPTION_MD_BASE + 26)
#define OPTION_DEBUG (OPTION_MD_BASE + 27)
#define OPTION_NODEBUG (OPTION_MD_BASE + 28)
#define OPTION_UCI (OPTION_MD_BASE + 29)
#define OPTION_NOUCI (OPTION_MD_BASE + 30)
#define OPTION_DSP (OPTION_MD_BASE + 31)
#define OPTION_NODSP (OPTION_MD_BASE + 32)
#define OPTION_LIBRARY (OPTION_MD_BASE + 33)
struct option md_longopts[] = {
{ "EB", no_argument, NULL, OPTION_EB},
{ "EL", no_argument, NULL, OPTION_EL},
{ "mconfig", required_argument, NULL, OPTION_CONFIG},
{ "maverage", no_argument, NULL, OPTION_AVERAGE},
{ "mno-average", no_argument, NULL, OPTION_NOAVERAGE},
{ "mmult", no_argument, NULL, OPTION_MULT},
{ "mno-mult", no_argument, NULL, OPTION_NOMULT},
{ "mdiv", no_argument, NULL, OPTION_DIV},
{ "mno-div", no_argument, NULL, OPTION_NODIV},
{ "mbitops", no_argument, NULL, OPTION_BITOPS},
{ "mno-bitops", no_argument, NULL, OPTION_NOBITOPS},
{ "mleadz", no_argument, NULL, OPTION_LEADZ},
{ "mno-leadz", no_argument, NULL, OPTION_NOLEADZ},
{ "mabsdiff", no_argument, NULL, OPTION_ABSDIFF},
{ "mno-absdiff", no_argument, NULL, OPTION_NOABSDIFF},
{ "mminmax", no_argument, NULL, OPTION_MINMAX},
{ "mno-minmax", no_argument, NULL, OPTION_NOMINMAX},
{ "mclip", no_argument, NULL, OPTION_CLIP},
{ "mno-clip", no_argument, NULL, OPTION_NOCLIP},
{ "msatur", no_argument, NULL, OPTION_SATUR},
{ "mno-satur", no_argument, NULL, OPTION_NOSATUR},
{ "mcop32", no_argument, NULL, OPTION_COP32},
{ "mdebug", no_argument, NULL, OPTION_DEBUG},
{ "mno-debug", no_argument, NULL, OPTION_NODEBUG},
{ "muci", no_argument, NULL, OPTION_UCI},
{ "mno-uci", no_argument, NULL, OPTION_NOUCI},
{ "mdsp", no_argument, NULL, OPTION_DSP},
{ "mno-dsp", no_argument, NULL, OPTION_NODSP},
{ "mlibrary", no_argument, NULL, OPTION_LIBRARY},
{ NULL, 0, NULL, 0 } };
size_t md_longopts_size = sizeof (md_longopts);
/* Options which default to on/off together. See the comment where
this is used for details. Note that CP and CP64 are not in this
list because disabling those overrides the -mivc2 option. */
#define OPTION_MASK \
( (1 << CGEN_INSN_OPTIONAL_BIT_INSN) \
| (1 << CGEN_INSN_OPTIONAL_MUL_INSN) \
| (1 << CGEN_INSN_OPTIONAL_DIV_INSN) \
| (1 << CGEN_INSN_OPTIONAL_DEBUG_INSN) \
| (1 << CGEN_INSN_OPTIONAL_LDZ_INSN) \
| (1 << CGEN_INSN_OPTIONAL_ABS_INSN) \
| (1 << CGEN_INSN_OPTIONAL_AVE_INSN) \
| (1 << CGEN_INSN_OPTIONAL_MINMAX_INSN) \
| (1 << CGEN_INSN_OPTIONAL_CLIP_INSN) \
| (1 << CGEN_INSN_OPTIONAL_SAT_INSN) \
| (1 << CGEN_INSN_OPTIONAL_UCI_INSN) \
| (1 << CGEN_INSN_OPTIONAL_DSP_INSN) )
const char * md_shortopts = "";
static int optbits = 0;
static int optbitset = 0;
int
md_parse_option (int c, const char *arg ATTRIBUTE_UNUSED)
{
int i, idx;
switch (c)
{
case OPTION_EB:
target_big_endian = 1;
break;
case OPTION_EL:
target_big_endian = 0;
break;
case OPTION_CONFIG:
idx = 0;
for (i=1; mep_config_map[i].name; i++)
if (strcmp (mep_config_map[i].name, arg) == 0)
{
idx = i;
break;
}
if (!idx)
{
fprintf (stderr, "Error: unknown configuration %s\n", arg);
return 0;
}
mep_config_index = idx;
target_big_endian = mep_config_map[idx].big_endian;
break;
case OPTION_AVERAGE:
optbits |= 1 << CGEN_INSN_OPTIONAL_AVE_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_AVE_INSN;
break;
case OPTION_NOAVERAGE:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_AVE_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_AVE_INSN;
break;
case OPTION_MULT:
optbits |= 1 << CGEN_INSN_OPTIONAL_MUL_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_MUL_INSN;
break;
case OPTION_NOMULT:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_MUL_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_MUL_INSN;
break;
case OPTION_DIV:
optbits |= 1 << CGEN_INSN_OPTIONAL_DIV_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_DIV_INSN;
break;
case OPTION_NODIV:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_DIV_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_DIV_INSN;
break;
case OPTION_BITOPS:
optbits |= 1 << CGEN_INSN_OPTIONAL_BIT_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_BIT_INSN;
break;
case OPTION_NOBITOPS:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_BIT_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_BIT_INSN;
break;
case OPTION_LEADZ:
optbits |= 1 << CGEN_INSN_OPTIONAL_LDZ_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_LDZ_INSN;
break;
case OPTION_NOLEADZ:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_LDZ_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_LDZ_INSN;
break;
case OPTION_ABSDIFF:
optbits |= 1 << CGEN_INSN_OPTIONAL_ABS_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_ABS_INSN;
break;
case OPTION_NOABSDIFF:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_ABS_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_ABS_INSN;
break;
case OPTION_MINMAX:
optbits |= 1 << CGEN_INSN_OPTIONAL_MINMAX_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_MINMAX_INSN;
break;
case OPTION_NOMINMAX:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_MINMAX_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_MINMAX_INSN;
break;
case OPTION_CLIP:
optbits |= 1 << CGEN_INSN_OPTIONAL_CLIP_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_CLIP_INSN;
break;
case OPTION_NOCLIP:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_CLIP_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_CLIP_INSN;
break;
case OPTION_SATUR:
optbits |= 1 << CGEN_INSN_OPTIONAL_SAT_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_SAT_INSN;
break;
case OPTION_NOSATUR:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_SAT_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_SAT_INSN;
break;
case OPTION_COP32:
optbits |= 1 << CGEN_INSN_OPTIONAL_CP_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_CP_INSN;
break;
case OPTION_DEBUG:
optbits |= 1 << CGEN_INSN_OPTIONAL_DEBUG_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_DEBUG_INSN;
break;
case OPTION_NODEBUG:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_DEBUG_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_DEBUG_INSN;
break;
case OPTION_UCI:
optbits |= 1 << CGEN_INSN_OPTIONAL_UCI_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_UCI_INSN;
break;
case OPTION_NOUCI:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_UCI_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_UCI_INSN;
break;
case OPTION_DSP:
optbits |= 1 << CGEN_INSN_OPTIONAL_DSP_INSN;
optbitset |= 1 << CGEN_INSN_OPTIONAL_DSP_INSN;
break;
case OPTION_NODSP:
optbits &= ~(1 << CGEN_INSN_OPTIONAL_DSP_INSN);
optbitset |= 1 << CGEN_INSN_OPTIONAL_DSP_INSN;
break;
case OPTION_LIBRARY:
library_flag = EF_MEP_LIBRARY;
break;
case OPTION_REPEAT:
case OPTION_NOREPEAT:
break;
default:
return 0;
}
return 1;
}
void
md_show_usage (FILE *stream)
{
fprintf (stream, _("MeP specific command line options:\n\
-EB assemble for a big endian system\n\
-EL assemble for a little endian system (default)\n\
-mconfig=<name> specify a chip configuration to use\n\
-maverage -mno-average -mmult -mno-mult -mdiv -mno-div\n\
-mbitops -mno-bitops -mleadz -mno-leadz -mabsdiff -mno-absdiff\n\
-mminmax -mno-minmax -mclip -mno-clip -msatur -mno-satur -mcop32\n\
enable/disable the given opcodes\n\
\n\
If -mconfig is given, the other -m options modify it. Otherwise,\n\
if no -m options are given, all core opcodes are enabled;\n\
if any enabling -m options are given, only those are enabled;\n\
if only disabling -m options are given, only those are disabled.\n\
"));
if (mep_config_map[1].name)
{
int i;
fprintf (stream, " -mconfig=STR specify the configuration to use\n");
fprintf (stream, " Configurations:");
for (i=0; mep_config_map[i].name; i++)
fprintf (stream, " %s", mep_config_map[i].name);
fprintf (stream, "\n");
}
}
static void
mep_check_for_disabled_registers (mep_insn *insn)
{
static int initted = 0;
static int has_mul_div = 0;
static int has_cop = 0;
static int has_debug = 0;
unsigned int b, r;
if (allow_disabled_registers)
return;
#if !CGEN_INT_INSN_P
if (target_big_endian)
b = insn->buffer[0] * 256 + insn->buffer[1];
else
b = insn->buffer[1] * 256 + insn->buffer[0];
#else
b = insn->buffer[0];
#endif
if ((b & 0xfffff00e) == 0x7008 /* stc */
|| (b & 0xfffff00e) == 0x700a /* ldc */)
{
if (!initted)
{
initted = 1;
if ((MEP_OMASK & (1 << CGEN_INSN_OPTIONAL_MUL_INSN))
|| (MEP_OMASK & (1 << CGEN_INSN_OPTIONAL_DIV_INSN)))
has_mul_div = 1;
if (MEP_OMASK & (1 << CGEN_INSN_OPTIONAL_DEBUG_INSN))
has_debug = 1;
if (MEP_OMASK & (1 << CGEN_INSN_OPTIONAL_CP_INSN))
has_cop = 1;
}
r = ((b & 0x00f0) >> 4) | ((b & 0x0001) << 4);
switch (r)
{
case 7: /* $hi */
case 8: /* $lo */
if (!has_mul_div)
as_bad (_("$hi and $lo are disabled when MUL and DIV are off"));
break;
case 12: /* $mb0 */
case 13: /* $me0 */
case 14: /* $mb1 */
case 15: /* $me1 */
if (!has_cop)
as_bad (_("$mb0, $me0, $mb1, and $me1 are disabled when COP is off"));
break;
case 24: /* $dbg */
case 25: /* $depc */
if (!has_debug)
as_bad (_("$dbg and $depc are disabled when DEBUG is off"));
break;
}
}
}
static int
mep_machine (void)
{
switch (MEP_CPU & EF_MEP_CPU_MASK)
{
default: break;
case EF_MEP_CPU_C2: return bfd_mach_mep;
case EF_MEP_CPU_C3: return bfd_mach_mep;
case EF_MEP_CPU_C4: return bfd_mach_mep;
case EF_MEP_CPU_C5: return bfd_mach_mep_c5;
case EF_MEP_CPU_H1: return bfd_mach_mep_h1;
}
return bfd_mach_mep;
}
/* The MeP version of the cgen parse_operand function. The only difference
from the standard version is that we want to avoid treating '$foo' and
'($foo...)' as references to a symbol called '$foo'. The chances are
that '$foo' is really a misspelled register. */
static const char *
mep_parse_operand (CGEN_CPU_DESC cd, enum cgen_parse_operand_type want,
const char **strP, int opindex, int opinfo,
enum cgen_parse_operand_result *resultP, bfd_vma *valueP)
{
if (want == CGEN_PARSE_OPERAND_INTEGER || want == CGEN_PARSE_OPERAND_ADDRESS)
{
const char *next;
next = *strP;
while (*next == '(')
next++;
if (*next == '$')
return "Not a valid literal";
}
return gas_cgen_parse_operand (cd, want, strP, opindex, opinfo,
resultP, valueP);
}
void
md_begin (void)
{
/* Initialize the `cgen' interface. */
/* If the user specifies no options, we default to allowing
everything. If the user specifies any enabling options, we
default to allowing only what is specified. If the user
specifies only disabling options, we only disable what is
specified. If the user specifies options and a config, the
options modify the config. */
if (optbits && mep_config_index == 0)
{
MEP_OMASK &= ~OPTION_MASK;
MEP_OMASK |= optbits;
}
else
MEP_OMASK = (MEP_OMASK & ~optbitset) | optbits;
mep_cop = mep_config_map[mep_config_index].cpu_flag & EF_MEP_COP_MASK;
/* Set the machine number and endian. */
gas_cgen_cpu_desc = mep_cgen_cpu_open (CGEN_CPU_OPEN_MACHS, 0U,
CGEN_CPU_OPEN_ENDIAN,
target_big_endian
? CGEN_ENDIAN_BIG
: CGEN_ENDIAN_LITTLE,
CGEN_CPU_OPEN_ISAS, (CGEN_BITSET *) 0,
CGEN_CPU_OPEN_END);
mep_cgen_init_asm (gas_cgen_cpu_desc);
/* This is a callback from cgen to gas to parse operands. */
cgen_set_parse_operand_fn (gas_cgen_cpu_desc, mep_parse_operand);
/* Identify the architecture. */
bfd_default_set_arch_mach (stdoutput, bfd_arch_mep, mep_machine ());
/* Store the configuration number and core. */
bfd_set_private_flags (stdoutput, MEP_CPU | MEP_CONFIG | library_flag);
/* Initialize the array we'll be using to store fixups. */
gas_cgen_initialize_saved_fixups_array();
}
/* Variant of mep_cgen_assemble_insn. Assemble insn STR of cpu CD as a
coprocessor instruction, if possible, into FIELDS, BUF, and INSN. */
static const CGEN_INSN *
mep_cgen_assemble_cop_insn (CGEN_CPU_DESC cd,
const char *str,
CGEN_FIELDS *fields,
CGEN_INSN_BYTES_PTR buf,
const struct cgen_insn *pinsn)
{
const char *start;
CGEN_INSN_LIST *ilist;
const char *errmsg = NULL;
/* The instructions are stored in hashed lists. */
ilist = CGEN_ASM_LOOKUP_INSN (gas_cgen_cpu_desc,
CGEN_INSN_MNEMONIC (pinsn));
start = str;
for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
{
const CGEN_INSN *insn = ilist->insn;
if (strcmp (CGEN_INSN_MNEMONIC (ilist->insn),
CGEN_INSN_MNEMONIC (pinsn)) == 0
&& MEP_INSN_COP_P (ilist->insn)
&& mep_cgen_insn_supported (cd, insn))
{
str = start;
/* skip this insn if str doesn't look right lexically */
if (CGEN_INSN_RX (insn) != NULL &&
regexec ((regex_t *) CGEN_INSN_RX (insn), str, 0, NULL, 0) == REG_NOMATCH)
continue;
/* Allow parse/insert handlers to obtain length of insn. */
CGEN_FIELDS_BITSIZE (fields) = CGEN_INSN_BITSIZE (insn);
errmsg = CGEN_PARSE_FN (cd, insn) (cd, insn, & str, fields);
if (errmsg != NULL)
continue;
errmsg = CGEN_INSERT_FN (cd, insn) (cd, insn, fields, buf,
(bfd_vma) 0);
if (errmsg != NULL)
continue;
return insn;
}
}
return pinsn;
}
static void
mep_save_insn (mep_insn insn)
{
/* Consider change MAX_SAVED_FIXUP_CHAINS to MAX_PARALLEL_INSNS. */
if (num_insns_saved < 0 || num_insns_saved >= MAX_SAVED_FIXUP_CHAINS)
{
as_fatal("index into saved_insns[] out of bounds.");
return;
}
saved_insns[num_insns_saved] = insn;
gas_cgen_save_fixups(num_insns_saved);
num_insns_saved++;
}
static void
mep_check_parallel32_scheduling (void)
{
int insn0iscopro, insn1iscopro, insn0length, insn1length;
/* More than two instructions means that either someone is referring to
an internally parallel core or an internally parallel coprocessor,
neither of which are supported at this time. */
if ( num_insns_saved > 2 )
as_fatal("Internally paralleled cores and coprocessors not supported.");
/* If there are no insns saved, that's ok. Just return. This will
happen when mep_process_saved_insns is called when the end of the
source file is reached and there are no insns left to be processed. */
if (num_insns_saved == 0)
return;
/* Check some of the attributes of the first insn. */
insn0iscopro = MEP_INSN_COP_P (saved_insns[0].insn);
insn0length = CGEN_FIELDS_BITSIZE (& saved_insns[0].fields);
if (num_insns_saved == 2)
{
/* Check some of the attributes of the first insn. */
insn1iscopro = MEP_INSN_COP_P (saved_insns[1].insn);
insn1length = CGEN_FIELDS_BITSIZE (& saved_insns[1].fields);
if ((insn0iscopro && !insn1iscopro)
|| (insn1iscopro && !insn0iscopro))
{
/* We have one core and one copro insn. If their sizes
add up to 32, then the combination is valid. */
if (insn0length + insn1length == 32)
return;
else
as_bad (_("core and copro insn lengths must total 32 bits."));
}
else
as_bad (_("vliw group must consist of 1 core and 1 copro insn."));
}
else
{
/* If we arrive here, we have one saved instruction. There are a
number of possible cases:
1. The instruction is a 32 bit core or coprocessor insn and
can be executed by itself. Valid.
2. The instruction is a core instruction for which a cop nop
exists. In this case, insert the cop nop into the saved
insn array after the core insn and return. Valid.
3. The instruction is a coprocessor insn for which a core nop
exists. In this case, move the coprocessor insn to the
second element of the array and put the nop in the first
element then return. Valid.
4. The instruction is a core or coprocessor instruction for
which there is no matching coprocessor or core nop to use
to form a valid vliw insn combination. In this case, we
we have to abort. */
if (insn0length > 32)
as_fatal ("Cannot use 48- or 64-bit insns with a 32 bit datapath.");
if (insn0length == 32)
return;
/* Insn is smaller than datapath. If there are no matching
nops for this insn, then terminate assembly. */
if (CGEN_INSN_ATTR_VALUE (saved_insns[0].insn,
CGEN_INSN_VLIW32_NO_MATCHING_NOP))
as_fatal ("No valid nop.");
/* At this point we know that we have a single 16-bit insn that has
a matching nop. We have to assemble it and put it into the saved
insn and fixup chain arrays. */
if (insn0iscopro)
{
char *errmsg;
mep_insn insn;
/* Move the insn and it's fixups to the second element of the
saved insns array and insert a 16 bit core nope into the
first element. */
insn.insn = mep_cgen_assemble_insn (gas_cgen_cpu_desc, "nop",
&insn.fields, insn.buffer,
&errmsg);
if (!insn.insn)
{
as_bad ("%s", errmsg);
return;
}
/* Move the insn in element 0 to element 1 and insert the
nop into element 0. Move the fixups in element 0 to
element 1 and save the current fixups to element 0.
Really there aren't any fixups at this point because we're
inserting a nop but we might as well be general so that
if there's ever a need to insert a general insn, we'll
have an example. */
saved_insns[1] = saved_insns[0];
saved_insns[0] = insn;
num_insns_saved++;
gas_cgen_swap_fixups (0);
gas_cgen_save_fixups (1);
}
else
{
char * errmsg;
mep_insn insn;
int insn_num = saved_insns[0].insn->base->num;
/* Use 32 bit branches and skip the nop. */
if (insn_num == MEP_INSN_BSR12
|| insn_num == MEP_INSN_BEQZ
|| insn_num == MEP_INSN_BNEZ)
return;
/* Insert a 16-bit coprocessor nop. Note that at the time */
/* this was done, no 16-bit coprocessor nop was defined. */
insn.insn = mep_cgen_assemble_insn (gas_cgen_cpu_desc, "cpnop16",
&insn.fields, insn.buffer,
&errmsg);
if (!insn.insn)
{
as_bad ("%s", errmsg);
return;
}
/* Now put the insn and fixups into the arrays. */
mep_save_insn (insn);
}
}
}
static void
mep_check_parallel64_scheduling (void)
{
int insn0iscopro, insn1iscopro, insn0length, insn1length;
/* More than two instructions means that someone is referring to an
internally parallel core or an internally parallel coprocessor. */
/* These are not currently supported. */
if (num_insns_saved > 2)
as_fatal ("Internally parallel cores of coprocessors not supported.");
/* If there are no insns saved, that's ok. Just return. This will
happen when mep_process_saved_insns is called when the end of the
source file is reached and there are no insns left to be processed. */
if (num_insns_saved == 0)
return;
/* Check some of the attributes of the first insn. */
insn0iscopro = MEP_INSN_COP_P (saved_insns[0].insn);
insn0length = CGEN_FIELDS_BITSIZE (& saved_insns[0].fields);
if (num_insns_saved == 2)
{
/* Check some of the attributes of the first insn. */
insn1iscopro = MEP_INSN_COP_P (saved_insns[1].insn);
insn1length = CGEN_FIELDS_BITSIZE (& saved_insns[1].fields);
if ((insn0iscopro && !insn1iscopro)
|| (insn1iscopro && !insn0iscopro))
{
/* We have one core and one copro insn. If their sizes
add up to 64, then the combination is valid. */
if (insn0length + insn1length == 64)
return;
else
as_bad (_("core and copro insn lengths must total 64 bits."));
}
else
as_bad (_("vliw group must consist of 1 core and 1 copro insn."));
}
else
{
/* If we arrive here, we have one saved instruction. There are a
number of possible cases:
1. The instruction is a 64 bit coprocessor insn and can be
executed by itself. Valid.
2. The instruction is a core instruction for which a cop nop
exists. In this case, insert the cop nop into the saved
insn array after the core insn and return. Valid.
3. The instruction is a coprocessor insn for which a core nop
exists. In this case, move the coprocessor insn to the
second element of the array and put the nop in the first
element then return. Valid.
4. The instruction is a core or coprocessor instruction for
which there is no matching coprocessor or core nop to use
to form a valid vliw insn combination. In this case, we
we have to abort. */
/* If the insn is 64 bits long, it can run alone. The size check
is done independently of whether the insn is core or copro
in case 64 bit coprocessor insns are added later. */
if (insn0length == 64)
return;
/* Insn is smaller than datapath. If there are no matching
nops for this insn, then terminate assembly. */
if (CGEN_INSN_ATTR_VALUE (saved_insns[0].insn,
CGEN_INSN_VLIW64_NO_MATCHING_NOP))
as_fatal ("No valid nop.");
if (insn0iscopro)
{
char *errmsg;
mep_insn insn;
/* Initialize the insn buffer. */
memset (insn.buffer, 0, sizeof(insn.buffer));
/* We have a coprocessor insn. At this point in time there
are is 32-bit core nop. There is only a 16-bit core
nop. The idea is to allow for a relatively arbitrary
coprocessor to be specified. We aren't looking at
trying to cover future changes in the core at this time
since it is assumed that the core will remain fairly
static. If there ever are 32 or 48 bit core nops added,
they will require entries below. */
if (insn0length == 48)
{
/* Move the insn and fixups to the second element of the
arrays then assemble and insert a 16 bit core nop. */
insn.insn = mep_cgen_assemble_insn (gas_cgen_cpu_desc, "nop",
& insn.fields, insn.buffer,
& errmsg);
}
else
{
/* If this is reached, then we have a single coprocessor
insn that is not 48 bits long, but for which the assembler
thinks there is a matching core nop. If a 32-bit core
nop has been added, then make the necessary changes and
handle its assembly and insertion here. Otherwise,
go figure out why either:
1. The assembler thinks that there is a 32-bit core nop
to match a 32-bit coprocessor insn, or
2. The assembler thinks that there is a 48-bit core nop
to match a 16-bit coprocessor insn. */
as_fatal ("Assembler expects a non-existent core nop.");
}
if (!insn.insn)
{
as_bad ("%s", errmsg);
return;
}
/* Move the insn in element 0 to element 1 and insert the
nop into element 0. Move the fixups in element 0 to
element 1 and save the current fixups to element 0.
Really there aren't any fixups at this point because we're
inserting a nop but we might as well be general so that
if there's ever a need to insert a general insn, we'll
have an example. */
saved_insns[1] = saved_insns[0];
saved_insns[0] = insn;
num_insns_saved++;
gas_cgen_swap_fixups(0);
gas_cgen_save_fixups(1);
}
else
{
char * errmsg;
mep_insn insn;
/* Initialize the insn buffer */
memset (insn.buffer, 0, sizeof(insn.buffer));
/* We have a core insn. We have to handle all possible nop
lengths. If a coprocessor doesn't have a nop of a certain
length but there exists core insns that when combined with
a nop of that length would fill the datapath, those core
insns will be flagged with the VLIW_NO_CORRESPONDING_NOP
attribute. That will ensure that when used in a way that
requires a nop to be inserted, assembly will terminate
before reaching this section of code. This guarantees
that cases below which would result in the attempted
insertion of nop that doesn't exist will never be entered. */
if (insn0length == 16)
{
/* Insert 48 bit coprocessor nop. */
/* Assemble it and put it into the arrays. */
insn.insn = mep_cgen_assemble_insn (gas_cgen_cpu_desc, "cpnop48",
&insn.fields, insn.buffer,
&errmsg);
}
else if (insn0length == 32)
{
/* Insert 32 bit coprocessor nop. */
insn.insn = mep_cgen_assemble_insn (gas_cgen_cpu_desc, "cpnop32",
&insn.fields, insn.buffer,
&errmsg);
}
else if (insn0length == 48)
{
/* Insert 16 bit coprocessor nop. */
insn.insn = mep_cgen_assemble_insn (gas_cgen_cpu_desc, "cpnop16",
&insn.fields, insn.buffer,
&errmsg);
}
else
/* Core insn has an invalid length. Something has gone wrong. */
as_fatal ("Core insn has invalid length! Something is wrong!");
if (!insn.insn)
{
as_bad ("%s", errmsg);
return;
}
/* Now put the insn and fixups into the arrays. */
mep_save_insn (insn);
}
}
}
#ifdef MEP_IVC2_SUPPORTED
/* IVC2 packing is different than other VLIW coprocessors. Many of
the COP insns can be placed in any of three different types of
slots, and each bundle can hold up to three insns - zero or one
core insns and one or two IVC2 insns. The insns in CGEN are tagged
with which slots they're allowed in, and we have to decide based on
that whether or not the user had given us a possible bundling. */
static int
slot_ok (int idx, int slot)
{
const CGEN_INSN *insn = saved_insns[idx].insn;
return CGEN_ATTR_CGEN_INSN_SLOTS_VALUE (CGEN_INSN_ATTRS (insn)) & (1 << slot);
}
static void
mep_check_ivc2_scheduling (void)
{
/* VLIW modes:
V1 [-----core-----][--------p0s-------][------------p1------------]
V2 [-------------core-------------]xxxx[------------p1------------]
V3 1111[--p0--]0111[--------p0--------][------------p1------------]
*/
int slots[5]; /* Indexed off the SLOTS_ATTR enum. */
int corelength, realcorelength;
int i;
bfd_byte temp[4];
bfd_byte *f;
int e = target_big_endian ? 0 : 1;
/* If there are no insns saved, that's ok. Just return. This will
happen when mep_process_saved_insns is called when the end of the
source file is reached and there are no insns left to be processed. */
if (num_insns_saved == 0)
return;
for (i=0; i<5; i++)
slots[i] = -1;
if (slot_ok (0, SLOTS_CORE))
{
slots[SLOTS_CORE] = 0;
realcorelength = corelength = CGEN_FIELDS_BITSIZE (& saved_insns[0].fields);
/* If we encounter one of these, it may get relaxed later into a
longer instruction. We can't just push the other opcodes
away, the bigger insn has to fit into the existing slot. So,
we make room for the relaxed instruction here. */
if (saved_insns[0].insn->base->num == MEP_INSN_BSR12
|| saved_insns[0].insn->base->num == MEP_INSN_BRA)
corelength = 32;
}
else
realcorelength = corelength = 0;
if (corelength == 16)
{
/* V1 mode: we need a P0S slot and a P1 slot. */
switch (num_insns_saved)
{
case 1:
/* No other insns, fill with NOPs. */
break;
case 2:
if (slot_ok (1, SLOTS_P1))
slots[SLOTS_P1] = 1;
else if (slot_ok (1, SLOTS_P0S))
slots[SLOTS_P0S] = 1;
else
as_bad (_("cannot pack %s with a 16-bit insn"),
CGEN_INSN_NAME (saved_insns[1].insn));
break;
case 3:
if (slot_ok (1, SLOTS_P0S)
&& slot_ok (2, SLOTS_P1))
{
slots[SLOTS_P0S] = 1;
slots[SLOTS_P1] = 2;
}
else if (slot_ok (1, SLOTS_P1)
&& slot_ok (2, SLOTS_P0S))
{
slots[SLOTS_P1] = 1;
slots[SLOTS_P0S] = 2;
}
else
as_bad (_("cannot pack %s and %s together with a 16-bit insn"),
CGEN_INSN_NAME (saved_insns[1].insn),
CGEN_INSN_NAME (saved_insns[2].insn));
break;
default:
as_bad (_("too many IVC2 insns to pack with a 16-bit core insn"));
break;
}
}
else if (corelength == 32)
{
/* V2 mode: we need a P1 slot. */
switch (num_insns_saved)
{
case 1:
/* No other insns, fill with NOPs. */
break;
case 2:
/* The other insn must allow P1. */
if (!slot_ok (1, SLOTS_P1))
as_bad (_("cannot pack %s into slot P1"),
CGEN_INSN_NAME (saved_insns[1].insn));
else
slots[SLOTS_P1] = 1;
break;
default:
as_bad (_("too many IVC2 insns to pack with a 32-bit core insn"));
break;
}
}
else if (corelength == 0)
{
/* V3 mode: we need a P0 slot and a P1 slot, or a P0S+P1 with a
core NOP. */
switch (num_insns_saved)
{
case 1:
if (slot_ok (0, SLOTS_P0))
slots[SLOTS_P0] = 0;
else if (slot_ok (0, SLOTS_P1))
slots[SLOTS_P1] = 0;
else if (slot_ok (0, SLOTS_P0S))
slots[SLOTS_P0S] = 0;
else
as_bad (_("unable to pack %s by itself?"),
CGEN_INSN_NAME (saved_insns[0].insn));
break;
case 2:
if (slot_ok (0, SLOTS_P0)
&& slot_ok (1, SLOTS_P1))
{
slots[SLOTS_P0] = 0;
slots[SLOTS_P1] = 1;
}
else if (slot_ok (0, SLOTS_P1)
&& slot_ok (1, SLOTS_P0))
{
slots[SLOTS_P1] = 0;
slots[SLOTS_P0] = 1;
}
else if (slot_ok (0, SLOTS_P0S)
&& slot_ok (1, SLOTS_P1))
{
slots[SLOTS_P0S] = 0;
slots[SLOTS_P1] = 1;
}
else if (slot_ok (0, SLOTS_P1)
&& slot_ok (1, SLOTS_P0S))
{
slots[SLOTS_P1] = 0;
slots[SLOTS_P0S] = 1;
}
else
as_bad (_("cannot pack %s and %s together"),
CGEN_INSN_NAME (saved_insns[0].insn),
CGEN_INSN_NAME (saved_insns[1].insn));
break;
default:
as_bad (_("too many IVC2 insns to pack together"));
break;
}
}
/* The core insn needs to be done normally so that fixups,
relaxation, etc are done. Other IVC2 insns need only be resolved
to bit patterns; there are no relocations for them. */
if (slots[SLOTS_CORE] != -1)
{
gas_cgen_restore_fixups (0);
gas_cgen_finish_insn (saved_insns[0].insn, saved_insns[0].buffer,
CGEN_FIELDS_BITSIZE (& saved_insns[0].fields),
1, NULL);
}
/* Allocate whatever bytes remain in our insn word. Adjust the
pointer to point (as if it were) to the beginning of the whole
word, so that we don't have to adjust for it elsewhere. */
f = (bfd_byte *) frag_more (8 - realcorelength / 8);
/* Unused slots are filled with NOPs, which happen to be all zeros. */
memset (f, 0, 8 - realcorelength / 8);
f -= realcorelength / 8;
for (i=1; i<5; i++)
{
mep_insn *m;
if (slots[i] == -1)
continue;
m = & saved_insns[slots[i]];
#if CGEN_INT_INSN_P
cgen_put_insn_value (gas_cgen_cpu_desc, (unsigned char *) temp, 32,
m->buffer[0], gas_cgen_cpu_desc->insn_endian);
#else
memcpy (temp, m->buffer, byte_len);
#endif
switch (i)
{
case SLOTS_P0S:
f[2^e] = temp[1^e];
f[3^e] = temp[2^e];
f[4^e] |= temp[3^e] & 0xf0;
break;
case SLOTS_P0:
f[0^e] = 0xf0 | temp[0^e] >> 4;
f[1^e] = temp[0^e] << 4 | 0x07;
f[2^e] = temp[1^e];
f[3^e] = temp[2^e];
f[4^e] |= temp[3^e] & 0xf0;
break;
case SLOTS_P1:
f[4^e] |= temp[0^e] >> 4;
f[5^e] = temp[0^e] << 4 | temp[1^e] >> 4;
f[6^e] = temp[1^e] << 4 | temp[2^e] >> 4;
f[7^e] = temp[2^e] << 4 | temp[3^e] >> 4;
break;
default:
break;
}
}
}
#endif /* MEP_IVC2_SUPPORTED */
/* The scheduling functions are just filters for invalid combinations.
If there is a violation, they terminate assembly. Otherwise they
just fall through. Successful combinations cause no side effects
other than valid nop insertion. */
static void
mep_check_parallel_scheduling (void)
{
/* This is where we will eventually read the config information
and choose which scheduling checking function to call. */
#ifdef MEP_IVC2_SUPPORTED
if (mep_cop == EF_MEP_COP_IVC2)
mep_check_ivc2_scheduling ();
else
#endif /* MEP_IVC2_SUPPORTED */
if (MEP_VLIW64)
mep_check_parallel64_scheduling ();
else
mep_check_parallel32_scheduling ();
}
static void
mep_process_saved_insns (void)
{
int i;
gas_cgen_save_fixups (MAX_SAVED_FIXUP_CHAINS - 1);
/* We have to check for valid scheduling here. */
mep_check_parallel_scheduling ();
/* IVC2 has to pack instructions in a funny way, so it does it
itself. */
if (mep_cop != EF_MEP_COP_IVC2)
{
/* If the last call didn't cause assembly to terminate, we have
a valid vliw insn/insn pair saved. Restore this instructions'
fixups and process the insns. */
for (i = 0;i<num_insns_saved;i++)
{
gas_cgen_restore_fixups (i);
gas_cgen_finish_insn (saved_insns[i].insn, saved_insns[i].buffer,
CGEN_FIELDS_BITSIZE (& saved_insns[i].fields),
1, NULL);
}
}
gas_cgen_restore_fixups (MAX_SAVED_FIXUP_CHAINS - 1);
/* Clear the fixups and reset the number insn saved to 0. */
gas_cgen_initialize_saved_fixups_array ();
num_insns_saved = 0;
listing_prev_line ();
}
void
md_assemble (char * str)
{
static CGEN_BITSET* isas = NULL;
char * errmsg;
/* Initialize GAS's cgen interface for a new instruction. */
gas_cgen_init_parse ();
/* There are two possible modes: core and vliw. We have to assemble
differently for each.
Core Mode: We assemble normally. All instructions are on a
single line and are made up of one mnemonic and one
set of operands.
VLIW Mode: Vliw combinations are indicated as follows:
core insn
+ copro insn
We want to handle the general case where more than
one instruction can be preceded by a +. This will
happen later if we add support for internally parallel
coprocessors. We'll make the parsing nice and general
so that it can handle an arbitrary number of insns
with leading +'s. The actual checking for valid
combinations is done elsewhere. */
/* Initialize the isa to refer to the core. */
if (isas == NULL)
isas = cgen_bitset_copy (& MEP_CORE_ISA);
else
{
cgen_bitset_clear (isas);
cgen_bitset_union (isas, & MEP_CORE_ISA, isas);
}
gas_cgen_cpu_desc->isas = isas;
if (mode == VLIW)
{
/* VLIW mode. */
int thisInsnIsCopro = 0;
mep_insn insn;
int i;
/* Initialize the insn buffer */
if (! CGEN_INT_INSN_P)
for (i=0; i < CGEN_MAX_INSN_SIZE; i++)
insn.buffer[i]='\0';
/* IVC2 has two sets of coprocessor opcodes, one for CORE mode
and one for VLIW mode. They have the same names. To specify
which one we want, we use the COP isas - the 32 bit ISA is
for the core instructions (which are always 32 bits), and the
other ISAs are for the VLIW ones (which always pack into 64
bit insns). We use other attributes to determine slotting
later. */
if (mep_cop == EF_MEP_COP_IVC2)
{
cgen_bitset_union (isas, & MEP_COP16_ISA, isas);
cgen_bitset_union (isas, & MEP_COP48_ISA, isas);
cgen_bitset_union (isas, & MEP_COP64_ISA, isas);
}
else
{
/* Can't tell core / copro insns apart at parse time! */
cgen_bitset_union (isas, & MEP_COP_ISA, isas);
}
/* Assemble the insn so we can examine its attributes. */
insn.insn = mep_cgen_assemble_insn (gas_cgen_cpu_desc, str,
&insn.fields, insn.buffer,
&errmsg);
if (!insn.insn)
{
as_bad ("%s", errmsg);
return;
}
mep_check_for_disabled_registers (&insn);
/* Check to see if it's a coprocessor instruction. */
thisInsnIsCopro = MEP_INSN_COP_P (insn.insn);
if (!thisInsnIsCopro)
{
insn.insn = mep_cgen_assemble_cop_insn (gas_cgen_cpu_desc, str,
&insn.fields, insn.buffer,
insn.insn);
thisInsnIsCopro = MEP_INSN_COP_P (insn.insn);
mep_check_for_disabled_registers (&insn);
}
if (pluspresent)
{
/* A plus was present. */
/* Check for a + with a core insn and abort if found. */
if (!thisInsnIsCopro)
{
as_fatal("A core insn cannot be preceded by a +.\n");
return;
}
if (num_insns_saved > 0)
{
/* There are insns in the queue. Add this one. */
mep_save_insn (insn);
}
else
{
/* There are no insns in the queue and a plus is present.
This is a syntax error. Let's not tolerate this.
We can relax this later if necessary. */
as_bad (_("Invalid use of parallelization operator."));
return;
}
}
else
{
/* No plus was present. */
if (num_insns_saved > 0)
{
/* There are insns saved and we came across an insn without a
leading +. That's the signal to process the saved insns
before proceeding then treat the current insn as the first
in a new vliw group. */
mep_process_saved_insns ();
num_insns_saved = 0;
/* mep_save_insn (insn); */
}
mep_save_insn (insn);
#if 0
else
{
/* Core Insn. Add it to the beginning of the queue. */
mep_save_insn (insn);
/* gas_cgen_save_fixups(num_insns_saved); */
}
#endif
}
pluspresent = 0;
}
else
{
/* Core mode. */
/* Only single instructions are assembled in core mode. */
mep_insn insn;
/* See comment in the VLIW clause above about this. */
if (mep_cop & EF_MEP_COP_IVC2)
cgen_bitset_union (isas, & MEP_COP32_ISA, isas);
/* If a leading '+' was present, issue an error.
That's not allowed in core mode. */
if (pluspresent)
{
as_bad (_("Leading plus sign not allowed in core mode"));
return;
}
insn.insn = mep_cgen_assemble_insn
(gas_cgen_cpu_desc, str, & insn.fields, insn.buffer, & errmsg);
if (!insn.insn)
{
as_bad ("%s", errmsg);
return;
}
gas_cgen_finish_insn (insn.insn, insn.buffer,
CGEN_FIELDS_BITSIZE (& insn.fields), 1, NULL);
mep_check_for_disabled_registers (&insn);
}
}
valueT
md_section_align (segT segment, valueT size)
{
int align = bfd_section_alignment (segment);
return ((size + (1 << align) - 1) & -(1 << align));
}
symbolS *
md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
{
return 0;
}
/* Interface to relax_segment. */
const relax_typeS md_relax_table[] =
{
/* The fields are:
1) most positive reach of this state,
2) most negative reach of this state,
3) how many bytes this mode will have in the variable part of the frag
4) which index into the table to try if we can't fit into this one. */
/* Note that we use "beq" because "jmp" has a peculiarity - it cannot
jump to addresses with any bits 27..24 set. So, we use beq as a
17-bit pc-relative branch to avoid using jmp, just in case. */
/* 0 */ { 0, 0, 0, 0 }, /* unused */
/* 1 */ { 0, 0, 0, 0 }, /* marker for "don't know yet" */
/* 2 */ { 2047, -2048, 0, 3 }, /* bsr12 */
/* 3 */ { 0, 0, 2, 0 }, /* bsr16 */
/* 4 */ { 2047, -2048, 0, 5 }, /* bra */
/* 5 */ { 65535, -65536, 2, 6 }, /* beq $0,$0 */
/* 6 */ { 0, 0, 2, 0 }, /* jmp24 */
/* 7 */ { 65535, -65536, 0, 8 }, /* beqi */
/* 8 */ { 0, 0, 4, 0 }, /* bnei/jmp */
/* 9 */ { 127, -128, 0, 10 }, /* beqz */
/* 10 */ { 65535, -65536, 2, 11 }, /* beqi */
/* 11 */ { 0, 0, 4, 0 }, /* bnei/jmp */
/* 12 */ { 65535, -65536, 0, 13 }, /* bnei */
/* 13 */ { 0, 0, 4, 0 }, /* beqi/jmp */
/* 14 */ { 127, -128, 0, 15 }, /* bnez */
/* 15 */ { 65535, -65536, 2, 16 }, /* bnei */
/* 16 */ { 0, 0, 4, 0 }, /* beqi/jmp */
/* 17 */ { 65535, -65536, 0, 13 }, /* bgei */
/* 18 */ { 0, 0, 4, 0 },
/* 19 */ { 65535, -65536, 0, 13 }, /* blti */
/* 20 */ { 0, 0, 4, 0 },
/* 19 */ { 65535, -65536, 0, 13 }, /* bcpeq */
/* 20 */ { 0, 0, 4, 0 },
/* 19 */ { 65535, -65536, 0, 13 }, /* bcpne */
/* 20 */ { 0, 0, 4, 0 },
/* 19 */ { 65535, -65536, 0, 13 }, /* bcpat */
/* 20 */ { 0, 0, 4, 0 },
/* 19 */ { 65535, -65536, 0, 13 }, /* bcpaf */
/* 20 */ { 0, 0, 4, 0 }
};
/* Pseudo-values for 64 bit "insns" which are combinations of two 32
bit insns. */
typedef enum {
MEP_PSEUDO64_NONE,
MEP_PSEUDO64_16BITCC,
MEP_PSEUDO64_32BITCC,
} MepPseudo64Values;
static struct {
int insn;
int growth;
int insn_for_extern;
} subtype_mappings[] = {
{ 0, 0, 0 },
{ 0, 0, 0 },
{ MEP_INSN_BSR12, 0, MEP_INSN_BSR24 },
{ MEP_INSN_BSR24, 2, MEP_INSN_BSR24 },
{ MEP_INSN_BRA, 0, MEP_INSN_BRA },
{ MEP_INSN_BEQ, 2, MEP_INSN_BEQ },
{ MEP_INSN_JMP, 2, MEP_INSN_JMP },
{ MEP_INSN_BEQI, 0, MEP_INSN_BEQI },
{ -1, 4, MEP_PSEUDO64_32BITCC },
{ MEP_INSN_BEQZ, 0, MEP_INSN_BEQZ },
{ MEP_INSN_BEQI, 2, MEP_INSN_BEQI },
{ -1, 4, MEP_PSEUDO64_16BITCC },
{ MEP_INSN_BNEI, 0, MEP_INSN_BNEI },
{ -1, 4, MEP_PSEUDO64_32BITCC },
{ MEP_INSN_BNEZ, 0, MEP_INSN_BNEZ },
{ MEP_INSN_BNEI, 2, MEP_INSN_BNEI },
{ -1, 4, MEP_PSEUDO64_16BITCC },
{ MEP_INSN_BGEI, 0, MEP_INSN_BGEI },
{ -1, 4, MEP_PSEUDO64_32BITCC },
{ MEP_INSN_BLTI, 0, MEP_INSN_BLTI },
{ -1, 4, MEP_PSEUDO64_32BITCC },
{ MEP_INSN_BCPEQ, 0, MEP_INSN_BCPEQ },
{ -1, 4, MEP_PSEUDO64_32BITCC },
{ MEP_INSN_BCPNE, 0, MEP_INSN_BCPNE },
{ -1, 4, MEP_PSEUDO64_32BITCC },
{ MEP_INSN_BCPAT, 0, MEP_INSN_BCPAT },
{ -1, 4, MEP_PSEUDO64_32BITCC },
{ MEP_INSN_BCPAF, 0, MEP_INSN_BCPAF },
{ -1, 4, MEP_PSEUDO64_32BITCC }
};
#define NUM_MAPPINGS (sizeof (subtype_mappings) / sizeof (subtype_mappings[0]))
void
mep_prepare_relax_scan (fragS *fragP, offsetT *aim, relax_substateT this_state)
{
symbolS *symbolP = fragP->fr_symbol;
if (symbolP && !S_IS_DEFINED (symbolP))
*aim = 0;
/* Adjust for MeP pcrel not being relative to the next opcode. */
*aim += 2 + md_relax_table[this_state].rlx_length;
}
static int
insn_to_subtype (int insn)
{
unsigned int i;
for (i=0; i<NUM_MAPPINGS; i++)
if (insn == subtype_mappings[i].insn)
return i;
abort ();
}
/* Return an initial guess of the length by which a fragment must grow
to hold a branch to reach its destination. Also updates fr_type
and fr_subtype as necessary.
Called just before doing relaxation. Any symbol that is now
undefined will not become defined. The guess for fr_var is
ACTUALLY the growth beyond fr_fix. Whatever we do to grow fr_fix
or fr_var contributes to our returned value. Although it may not
be explicit in the frag, pretend fr_var starts with a 0 value. */
int
md_estimate_size_before_relax (fragS * fragP, segT segment)
{
if (fragP->fr_subtype == 1)
fragP->fr_subtype = insn_to_subtype (fragP->fr_cgen.insn->base->num);
if (S_GET_SEGMENT (fragP->fr_symbol) != segment
|| S_IS_WEAK (fragP->fr_symbol)
#ifdef MEP_IVC2_SUPPORTED
|| (mep_cop == EF_MEP_COP_IVC2
&& bfd_section_flags (segment) & SEC_MEP_VLIW)
#endif /* MEP_IVC2_SUPPORTED */
)
{
int new_insn;
new_insn = subtype_mappings[fragP->fr_subtype].insn_for_extern;
fragP->fr_subtype = insn_to_subtype (new_insn);
}
if (MEP_VLIW && ! MEP_VLIW64
&& (bfd_section_flags (segment) & SEC_MEP_VLIW))
{
/* Use 32 bit branches for vliw32 so the vliw word is not split. */
switch (fragP->fr_cgen.insn->base->num)
{
case MEP_INSN_BSR12:
fragP->fr_subtype = insn_to_subtype
(subtype_mappings[fragP->fr_subtype].insn_for_extern);
break;
case MEP_INSN_BEQZ:
fragP->fr_subtype ++;
break;
case MEP_INSN_BNEZ:
fragP->fr_subtype ++;
break;
}
}
if (fragP->fr_cgen.insn->base
&& fragP->fr_cgen.insn->base->num
!= subtype_mappings[fragP->fr_subtype].insn)
{
int new_insn= subtype_mappings[fragP->fr_subtype].insn;
if (new_insn != -1)
{
fragP->fr_cgen.insn = (fragP->fr_cgen.insn
- fragP->fr_cgen.insn->base->num
+ new_insn);
}
}
#ifdef MEP_IVC2_SUPPORTED
if (mep_cop == EF_MEP_COP_IVC2
&& bfd_section_flags (segment) & SEC_MEP_VLIW)
return 0;
#endif /* MEP_IVC2_SUPPORTED */
return subtype_mappings[fragP->fr_subtype].growth;
}
/* VLIW does relaxing, but not growth. */
long
mep_relax_frag (segT segment, fragS *fragP, long stretch)
{
long rv = relax_frag (segment, fragP, stretch);
#ifdef MEP_IVC2_SUPPORTED
if (mep_cop == EF_MEP_COP_IVC2
&& bfd_section_flags (segment) & SEC_MEP_VLIW)
return 0;
#endif
return rv;
}
/* *fragP has been relaxed to its final size, and now needs to have
the bytes inside it modified to conform to the new size.
Called after relaxation is finished.
fragP->fr_type == rs_machine_dependent.
fragP->fr_subtype is the subtype of what the address relaxed to. */
static int
target_address_for (fragS *frag)
{
int rv = frag->fr_offset;
symbolS *sym = frag->fr_symbol;
if (sym)
rv += S_GET_VALUE (sym);
return rv;
}
void
md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
segT seg ATTRIBUTE_UNUSED,
fragS *fragP)
{
int addend, rn, bit = 0;
int operand;
int where = fragP->fr_opcode - fragP->fr_literal;
int e = target_big_endian ? 0 : 1;
int core_mode;
#ifdef MEP_IVC2_SUPPORTED
if (bfd_section_flags (seg) & SEC_MEP_VLIW
&& mep_cop == EF_MEP_COP_IVC2)
core_mode = 0;
else
#endif /* MEP_IVC2_SUPPORTED */
core_mode = 1;
addend = target_address_for (fragP) - (fragP->fr_address + where);
if (subtype_mappings[fragP->fr_subtype].insn == -1)
{
if (core_mode)
fragP->fr_fix += subtype_mappings[fragP->fr_subtype].growth;
switch (subtype_mappings[fragP->fr_subtype].insn_for_extern)
{
case MEP_PSEUDO64_16BITCC:
fragP->fr_opcode[1^e] = ((fragP->fr_opcode[1^e] & 1) ^ 1) | 0x06;
fragP->fr_opcode[2^e] = 0xd8;
fragP->fr_opcode[3^e] = 0x08;
fragP->fr_opcode[4^e] = 0;
fragP->fr_opcode[5^e] = 0;
where += 2;
break;
case MEP_PSEUDO64_32BITCC:
if (fragP->fr_opcode[0^e] & 0x10)
fragP->fr_opcode[1^e] ^= 0x01;
else
fragP->fr_opcode[1^e] ^= 0x04;
fragP->fr_opcode[2^e] = 0;
fragP->fr_opcode[3^e] = 4;
fragP->fr_opcode[4^e] = 0xd8;
fragP->fr_opcode[5^e] = 0x08;
fragP->fr_opcode[6^e] = 0;
fragP->fr_opcode[7^e] = 0;
where += 4;
break;
default:
abort ();
}
fragP->fr_cgen.insn = (fragP->fr_cgen.insn
- fragP->fr_cgen.insn->base->num
+ MEP_INSN_JMP);
operand = MEP_OPERAND_PCABS24A2;
}
else
switch (fragP->fr_cgen.insn->base->num)
{
case MEP_INSN_BSR12:
fragP->fr_opcode[0^e] = 0xb0 | ((addend >> 8) & 0x0f);
fragP->fr_opcode[1^e] = 0x01 | (addend & 0xfe);
operand = MEP_OPERAND_PCREL12A2;
break;
case MEP_INSN_BSR24:
if (core_mode)
fragP->fr_fix += 2;
fragP->fr_opcode[0^e] = 0xd8 | ((addend >> 5) & 0x07);
fragP->fr_opcode[1^e] = 0x09 | ((addend << 3) & 0xf0);
fragP->fr_opcode[2^e] = 0x00 | ((addend >>16) & 0xff);
fragP->fr_opcode[3^e] = 0x00 | ((addend >> 8) & 0xff);
operand = MEP_OPERAND_PCREL24A2;
break;
case MEP_INSN_BRA:
fragP->fr_opcode[0^e] = 0xb0 | ((addend >> 8) & 0x0f);
fragP->fr_opcode[1^e] = 0x00 | (addend & 0xfe);
operand = MEP_OPERAND_PCREL12A2;
break;
case MEP_INSN_BEQ:
/* The default relax_frag doesn't change the state if there is no
growth, so we must manually handle converting out-of-range BEQ
instructions to JMP. */
if (addend <= 65535 && addend >= -65536)
{
if (core_mode)
fragP->fr_fix += 2;
fragP->fr_opcode[0^e] = 0xe0;
fragP->fr_opcode[1^e] = 0x01;
fragP->fr_opcode[2^e] = 0x00 | ((addend >> 9) & 0xff);
fragP->fr_opcode[3^e] = 0x00 | ((addend >> 1) & 0xff);
operand = MEP_OPERAND_PCREL17A2;
break;
}
/* Fall through. */
case MEP_INSN_JMP:
addend = target_address_for (fragP);
if (core_mode)
fragP->fr_fix += 2;
fragP->fr_opcode[0^e] = 0xd8 | ((addend >> 5) & 0x07);
fragP->fr_opcode[1^e] = 0x08 | ((addend << 3) & 0xf0);
fragP->fr_opcode[2^e] = 0x00 | ((addend >>16) & 0xff);
fragP->fr_opcode[3^e] = 0x00 | ((addend >> 8) & 0xff);
operand = MEP_OPERAND_PCABS24A2;
break;
case MEP_INSN_BNEZ:
bit = 1;
/* Fall through. */
case MEP_INSN_BEQZ:
fragP->fr_opcode[1^e] = bit | (addend & 0xfe);
operand = MEP_OPERAND_PCREL8A2;
break;
case MEP_INSN_BNEI:
bit = 4;
/* Fall through. */
case MEP_INSN_BEQI:
if (subtype_mappings[fragP->fr_subtype].growth)
{
if (core_mode)
fragP->fr_fix += subtype_mappings[fragP->fr_subtype].growth;
rn = fragP->fr_opcode[0^e] & 0x0f;
fragP->fr_opcode[0^e] = 0xe0 | rn;
fragP->fr_opcode[1^e] = bit;
}
fragP->fr_opcode[2^e] = 0x00 | ((addend >> 9) & 0xff);
fragP->fr_opcode[3^e] = 0x00 | ((addend >> 1) & 0xff);
operand = MEP_OPERAND_PCREL17A2;
break;
case MEP_INSN_BLTI:
case MEP_INSN_BGEI:
case MEP_INSN_BCPEQ:
case MEP_INSN_BCPNE:
case MEP_INSN_BCPAT:
case MEP_INSN_BCPAF:
/* No opcode change needed, just operand. */
fragP->fr_opcode[2^e] = (addend >> 9) & 0xff;
fragP->fr_opcode[3^e] = (addend >> 1) & 0xff;
operand = MEP_OPERAND_PCREL17A2;
break;
default:
abort ();
}
if (S_GET_SEGMENT (fragP->fr_symbol) != seg
|| S_IS_WEAK (fragP->fr_symbol)
|| operand == MEP_OPERAND_PCABS24A2)
{
gas_assert (fragP->fr_cgen.insn != 0);
gas_cgen_record_fixup (fragP,
where,
fragP->fr_cgen.insn,
(fragP->fr_fix - where) * 8,
cgen_operand_lookup_by_num (gas_cgen_cpu_desc,
operand),
fragP->fr_cgen.opinfo,
fragP->fr_symbol, fragP->fr_offset);
}
}
/* Functions concerning relocs. */
void
mep_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
{
/* If we already know the fixup value, adjust it in the same
way that the linker would have done. */
if (fixP->fx_addsy == 0)
switch (fixP->fx_cgen.opinfo)
{
case BFD_RELOC_MEP_LOW16:
*valP = ((*valP & 0xffff) ^ 0x8000) - 0x8000;
break;
case BFD_RELOC_MEP_HI16U:
*valP >>= 16;
break;
case BFD_RELOC_MEP_HI16S:
*valP = (*valP + 0x8000) >> 16;
break;
}
/* Now call cgen's md_apply_fix. */
gas_cgen_md_apply_fix (fixP, valP, seg);
}
long
md_pcrel_from_section (fixS *fixP, segT sec)
{
if (fixP->fx_addsy != (symbolS *) NULL
&& (! S_IS_DEFINED (fixP->fx_addsy)
|| S_IS_WEAK (fixP->fx_addsy)
|| S_GET_SEGMENT (fixP->fx_addsy) != sec))
/* The symbol is undefined (or is defined but not in this section).
Let the linker figure it out. */
return 0;
/* If we've got other reasons for emitting this relocation, let the
linker handle pc-rel also. */
if (mep_force_relocation (fixP))
return 0;
/* Return the address of the opcode - cgen adjusts for opcode size
itself, to be consistent with the disassembler, which must do
so. */
return fixP->fx_where + fixP->fx_frag->fr_address;
}
/* Return the bfd reloc type for OPERAND of INSN at fixup FIXP.
Returns BFD_RELOC_NONE if no reloc type can be found.
*FIXP may be modified if desired. */
#if defined (__STDC__) || defined (ALMOST_STDC) || defined (HAVE_STRINGIZE)
#define MAP(n) case MEP_OPERAND_##n: return BFD_RELOC_MEP_##n;
#else
#define MAP(n) case MEP_OPERAND_/**/n: return BFD_RELOC_MEP_/**/n;
#endif
bfd_reloc_code_real_type
md_cgen_lookup_reloc (const CGEN_INSN *insn ATTRIBUTE_UNUSED,
const CGEN_OPERAND *operand,
fixS *fixP)
{
enum bfd_reloc_code_real reloc = fixP->fx_cgen.opinfo;
static char printed[MEP_OPERAND_MAX] = { 0 };
/* If there's a reloc here, it's because the parser saw a %foo() and
is giving us the correct reloc to use, or because we converted to
a different size reloc below and want to avoid "converting" more
than once. */
if (reloc && reloc != BFD_RELOC_NONE)
return reloc;
switch (operand->type)
{
MAP (PCREL8A2); /* beqz */
MAP (PCREL12A2); /* bsr16 */
MAP (PCREL17A2); /* beqi */
MAP (PCREL24A2); /* bsr24 */
MAP (PCABS24A2); /* jmp */
MAP (UIMM24); /* mov */
MAP (ADDR24A4); /* sw/lw */
/* The rest of the relocs should be generated by the parser,
for things such as %tprel(), etc. */
case MEP_OPERAND_SIMM16:
#ifdef OBJ_COMPLEX_RELC
/* coalescing this into RELOC_MEP_16 is actually a bug,
since it's a signed operand. let the relc code handle it. */
return BFD_RELOC_RELC;
#endif
case MEP_OPERAND_UIMM16:
case MEP_OPERAND_SDISP16:
case MEP_OPERAND_CODE16:
fixP->fx_where += 2;
/* to avoid doing the above add twice */
fixP->fx_cgen.opinfo = BFD_RELOC_MEP_16;
return BFD_RELOC_MEP_16;
default:
#ifdef OBJ_COMPLEX_RELC
/* this is not an error, yet.
pass it to the linker. */
return BFD_RELOC_RELC;
#endif
if (printed[operand->type])
return BFD_RELOC_NONE;
printed[operand->type] = 1;
as_bad_where (fixP->fx_file, fixP->fx_line,
_("Don't know how to relocate plain operands of type %s"),
operand->name);
/* Print some helpful hints for the user. */
switch (operand->type)
{
case MEP_OPERAND_UDISP7:
case MEP_OPERAND_UDISP7A2:
case MEP_OPERAND_UDISP7A4:
as_bad_where (fixP->fx_file, fixP->fx_line,
_("Perhaps you are missing %%tpoff()?"));
break;
default:
break;
}
return BFD_RELOC_NONE;
}
}
/* Called while parsing an instruction to create a fixup.
We need to check for HI16 relocs and queue them up for later sorting. */
fixS *
mep_cgen_record_fixup_exp (fragS *frag,
int where,
const CGEN_INSN *insn,
int length,
const CGEN_OPERAND *operand,
int opinfo,
expressionS *exp)
{
fixS * fixP = gas_cgen_record_fixup_exp (frag, where, insn, length,
operand, opinfo, exp);
return fixP;
}
/* Return BFD reloc type from opinfo field in a fixS.
It's tricky using fx_r_type in mep_frob_file because the values
are BFD_RELOC_UNUSED + operand number. */
#define FX_OPINFO_R_TYPE(f) ((f)->fx_cgen.opinfo)
/* Sort any unmatched HI16 relocs so that they immediately precede
the corresponding LO16 reloc. This is called before md_apply_fix and
tc_gen_reloc. */
void
mep_frob_file (void)
{
struct mep_hi_fixup * l;
for (l = mep_hi_fixup_list; l != NULL; l = l->next)
{
segment_info_type * seginfo;
int pass;
gas_assert (FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_HI16
|| FX_OPINFO_R_TYPE (l->fixp) == BFD_RELOC_LO16);
/* Check quickly whether the next fixup happens to be a matching low. */
if (l->fixp->fx_next != NULL
&& FX_OPINFO_R_TYPE (l->fixp->fx_next) == BFD_RELOC_LO16
&& l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
&& l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
continue;
/* Look through the fixups for this segment for a matching
`low'. When we find one, move the high just in front of it.
We do this in two passes. In the first pass, we try to find
a unique `low'. In the second pass, we permit multiple
high's relocs for a single `low'. */
seginfo = seg_info (l->seg);
for (pass = 0; pass < 2; pass++)
{
fixS * f;
fixS * prev;
prev = NULL;
for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
{
/* Check whether this is a `low' fixup which matches l->fixp. */
if (FX_OPINFO_R_TYPE (f) == BFD_RELOC_LO16
&& f->fx_addsy == l->fixp->fx_addsy
&& f->fx_offset == l->fixp->fx_offset
&& (pass == 1
|| prev == NULL
|| (FX_OPINFO_R_TYPE (prev) != BFD_RELOC_HI16)
|| prev->fx_addsy != f->fx_addsy
|| prev->fx_offset != f->fx_offset))
{
fixS ** pf;
/* Move l->fixp before f. */
for (pf = &seginfo->fix_root;
* pf != l->fixp;
pf = & (* pf)->fx_next)
gas_assert (* pf != NULL);
* pf = l->fixp->fx_next;
l->fixp->fx_next = f;
if (prev == NULL)
seginfo->fix_root = l->fixp;
else
prev->fx_next = l->fixp;
break;
}
prev = f;
}
if (f != NULL)
break;
if (pass == 1)
as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
_("Unmatched high relocation"));
}
}
}
/* See whether we need to force a relocation into the output file. */
int
mep_force_relocation (fixS *fixp)
{
if ( fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
|| fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
return 1;
if (generic_force_reloc (fixp))
return 1;
/* Allow branches to global symbols to be resolved at assembly time.
This is consistent with way relaxable branches are handled, since
branches to both global and local symbols are relaxed. It also
corresponds to the assumptions made in md_pcrel_from_section. */
return S_FORCE_RELOC (fixp->fx_addsy, !fixp->fx_pcrel);
}
/* Write a value out to the object file, using the appropriate endianness. */
void
md_number_to_chars (char *buf, valueT val, int n)
{
if (target_big_endian)
number_to_chars_bigendian (buf, val, n);
else
number_to_chars_littleendian (buf, val, n);
}
const char *
md_atof (int type, char *litP, int *sizeP)
{
return ieee_md_atof (type, litP, sizeP, TRUE);
}
bfd_boolean
mep_fix_adjustable (fixS *fixP)
{
bfd_reloc_code_real_type reloc_type;
if ((int) fixP->fx_r_type >= (int) BFD_RELOC_UNUSED)
{
const CGEN_INSN *insn = NULL;
int opindex = (int) fixP->fx_r_type - (int) BFD_RELOC_UNUSED;
const CGEN_OPERAND *operand
= cgen_operand_lookup_by_num(gas_cgen_cpu_desc, opindex);
reloc_type = md_cgen_lookup_reloc (insn, operand, fixP);
}
else
reloc_type = fixP->fx_r_type;
if (fixP->fx_addsy == NULL)
return 1;
/* Prevent all adjustments to global symbols. */
if (S_IS_EXTERNAL (fixP->fx_addsy))
return 0;
if (S_IS_WEAK (fixP->fx_addsy))
return 0;
/* We need the symbol name for the VTABLE entries */
if (reloc_type == BFD_RELOC_VTABLE_INHERIT
|| reloc_type == BFD_RELOC_VTABLE_ENTRY)
return 0;
return 1;
}
bfd_vma
mep_elf_section_letter (int letter, const char **ptrmsg)
{
if (letter == 'v')
return SHF_MEP_VLIW;
*ptrmsg = _("bad .section directive: want a,v,w,x,M,S in string");
return -1;
}
flagword
mep_elf_section_flags (flagword flags, bfd_vma attr, int type ATTRIBUTE_UNUSED)
{
if (attr & SHF_MEP_VLIW)
flags |= SEC_MEP_VLIW;
return flags;
}
/* In vliw mode, the default section is .vtext. We have to be able
to switch into .vtext using only the .vtext directive. */
static segT
mep_vtext_section (void)
{
static segT vtext_section;
if (! vtext_section)
{
flagword applicable = bfd_applicable_section_flags (stdoutput);
vtext_section = subseg_new (VTEXT_SECTION_NAME, 0);
bfd_set_section_flags (vtext_section,
applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
| SEC_CODE | SEC_READONLY
| SEC_MEP_VLIW));
}
return vtext_section;
}
static void
mep_s_vtext (int ignore ATTRIBUTE_UNUSED)
{
int temp;
/* Record previous_section and previous_subsection. */
obj_elf_section_change_hook ();
temp = get_absolute_expression ();
subseg_set (mep_vtext_section (), (subsegT) temp);
demand_empty_rest_of_line ();
}
static void
mep_switch_to_core_mode (int dummy ATTRIBUTE_UNUSED)
{
mep_process_saved_insns ();
pluspresent = 0;
mode = CORE;
}
static void
mep_switch_to_vliw_mode (int dummy ATTRIBUTE_UNUSED)
{
if (! MEP_VLIW)
as_bad (_(".vliw unavailable when VLIW is disabled."));
mode = VLIW;
/* Switch into .vtext here too. */
/* mep_s_vtext(); */
}
/* This is an undocumented pseudo-op used to disable gas's
"disabled_registers" check. Used for code which checks for those
registers at runtime. */
static void
mep_noregerr (int i ATTRIBUTE_UNUSED)
{
allow_disabled_registers = 1;
}
/* mep_unrecognized_line: This is called when a line that can't be parsed
is encountered. We use it to check for a leading '+' sign which indicates
that the current instruction is a coprocessor instruction that is to be
parallelized with a previous core insn. This function accepts the '+' and
rejects all other characters that might indicate garbage at the beginning
of the line. The '+' character gets lost as the calling loop continues,
so we need to indicate that we saw it. */
int
mep_unrecognized_line (int ch)
{
switch (ch)
{
case '+':
pluspresent = 1;
return 1; /* '+' indicates an instruction to be parallelized. */
default:
return 0; /* If it's not a '+', the line can't be parsed. */
}
}
void
mep_cleanup (void)
{
/* Take care of any insns left to be parallelized when the file ends.
This is mainly here to handle the case where the file ends with an
insn preceded by a + or the file ends unexpectedly. */
if (mode == VLIW)
mep_process_saved_insns ();
}
int
mep_flush_pending_output (void)
{
if (mode == VLIW)
{
mep_process_saved_insns ();
pluspresent = 0;
}
return 1;
}
|