1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220
|
/*--------------------------------------------------------------*/
/* qrouter.c -- general purpose autorouter */
/* Reads LEF libraries and DEF netlists, and generates an */
/* annotated DEF netlist as output. */
/*--------------------------------------------------------------*/
/* Written by Tim Edwards, June 2011, based on code by Steve */
/* Beccue, 2003 */
/*--------------------------------------------------------------*/
#include <ctype.h>
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#ifdef TCL_QROUTER
#include <tk.h>
#endif
#include "qrouter.h"
#include "qconfig.h"
#include "point.h"
#include "node.h"
#include "maze.h"
#include "mask.h"
#include "output.h"
#include "lef.h"
#include "def.h"
#include "graphics.h"
int TotalRoutes = 0;
NET *Nlnets; // list of nets in the design
NET CurNet; // current net to route, used by 2nd stage
STRING DontRoute; // a list of nets not to route (e.g., power)
STRING CriticalNet; // list of critical nets to route first
GATE GateInfo; // standard cell macro information
GATE PinMacro; // macro definition for a pin
GATE Nlgates; // gate instance information
NETLIST FailedNets; // list of nets that failed to route
u_int *Obs[MAX_LAYERS]; // net obstructions in layer
PROUTE *Obs2[MAX_LAYERS]; // used for pt->pt routes on layer
float *Obsinfo[MAX_LAYERS]; // temporary array used for detailed obstruction info
NODEINFO *Nodeinfo[MAX_LAYERS]; // nodes and stub information is here. . .
DSEG UserObs; // user-defined obstruction layers
u_int progress[3]; // analysis of behavior
u_char needblock[MAX_LAYERS];
char *vddnet = NULL;
char *gndnet = NULL;
int Numnets = 0;
int Pinlayers = 0;
u_int minEffort = 0; // Minimum effort applied from command line.
u_char Verbose = 3; // Default verbose level
u_char forceRoutable = FALSE;
u_char maskMode = MASK_AUTO;
u_char mapType = MAP_OBSTRUCT | DRAW_ROUTES;
u_char ripLimit = 10; // Fail net rather than rip up more than
// this number of other nets.
char *DEFfilename = NULL;
char *delayfilename = NULL;
ScaleRec Scales; // record of input and output scales
/*--------------------------------------------------------------*/
/* Check track pitch and set the number of channels (may be */
/* called from DefRead) */
/*--------------------------------------------------------------*/
int set_num_channels(void)
{
int i, glimitx, glimity;
NET net;
NODE node;
DPOINT ctap, ltap, ntap;
if (NumChannelsX[0] != 0) return 0; /* Already been called */
for (i = 0; i < Num_layers; i++) {
if (PitchX[i] == 0.0 || PitchY[i] == 0.0) {
Fprintf(stderr, "Have a 0 pitch for layer %d (of %d). "
"Exit.\n", i + 1, Num_layers);
return (-3);
}
NumChannelsX[i] = (int)(1.5 + (Xupperbound - Xlowerbound) / PitchX[i]);
NumChannelsY[i] = (int)(1.5 + (Yupperbound - Ylowerbound) / PitchY[i]);
if ((Verbose > 1) || (NumChannelsX[i] <= 0))
Fprintf(stdout, "Number of x channels for layer %d is %d\n",
i, NumChannelsX[i]);
if ((Verbose > 1) || (NumChannelsY[i] <= 0))
Fprintf(stdout, "Number of y channels for layer %d is %d\n",
i, NumChannelsY[i]);
if (NumChannelsX[i] <= 0) {
Fprintf(stderr, "Something wrong with layer %d x bounds.\n", i);
return(-3);
}
if (NumChannelsY[i] <= 0) {
Fprintf(stderr, "Something wrong with layer %d y bounds.\n", i);
return(-3);
}
Flush(stdout);
}
// Go through all nodes and remove any tap or extend entries that are
// out of bounds.
for (i = 0; i < Numnets; i++) {
net = Nlnets[i];
for (node = net->netnodes; node != NULL; node = node->next) {
ltap = NULL;
for (ctap = node->taps; ctap != NULL; ) {
ntap = ctap->next;
glimitx = NumChannelsX[ctap->layer];
glimity = NumChannelsY[ctap->layer];
if (ctap->gridx < 0 || ctap->gridx >= glimitx ||
ctap->gridy < 0 || ctap->gridy >= glimity) {
/* Remove ctap */
if (ltap == NULL)
node->taps = ntap;
else
ltap->next = ntap;
}
else
ltap = ctap;
ctap = ntap;
}
ltap = NULL;
for (ctap = node->extend; ctap != NULL; ) {
ntap = ctap->next;
glimitx = NumChannelsX[ctap->layer];
glimity = NumChannelsY[ctap->layer];
if (ctap->gridx < 0 || ctap->gridx >= glimitx ||
ctap->gridy < 0 || ctap->gridy >= glimity) {
/* Remove ctap */
if (ltap == NULL)
node->taps = ntap;
else
ltap->next = ntap;
}
else
ltap = ctap;
ctap = ntap;
}
}
}
if (recalc_spacing()) draw_layout();
return 0;
}
/*--------------------------------------------------------------*/
/* Allocate the Obs[] array (may be called from DefRead) */
/*--------------------------------------------------------------*/
int allocate_obs_array(void)
{
int i;
if (Obs[0] != NULL) return 0; /* Already been called */
for (i = 0; i < Num_layers; i++) {
Obs[i] = (u_int *)calloc(NumChannelsX[i] * NumChannelsY[i],
sizeof(u_int));
if (!Obs[i]) {
Fprintf(stderr, "Out of memory 4.\n");
return(4);
}
}
return 0;
}
/*--------------------------------------------------------------*/
/* countlist --- */
/* Count the number of entries in a simple linked list */
/*--------------------------------------------------------------*/
int
countlist(NETLIST net)
{
NETLIST nptr = net;
int count = 0;
while (nptr != NULL) {
count++;
nptr = nptr->next;
}
return count;
}
/*--------------------------------------------------------------*/
/* runqrouter - main program entry point, parse command line */
/* */
/* ARGS: argc (count) argv, command line */
/* RETURNS: to OS */
/* SIDE EFFECTS: */
/*--------------------------------------------------------------*/
int
runqrouter(int argc, char *argv[])
{
int i;
FILE *configFILEptr, *infoFILEptr;
static char configdefault[] = CONFIGFILENAME;
char *configfile = configdefault;
char *infofile = NULL;
char *dotptr;
char *Filename = NULL;
u_char readconfig = FALSE;
u_char doscript = FALSE;
Scales.iscale = 1;
Scales.mscale = 100;
/* Parse arguments */
for (i = 0; i < argc; i++) {
char optc, argsep = '\0';
char *optarg = NULL;
if (*argv[i] == '-') {
/* 1st pass---look for which options require an argument */
optc = *(argv[i] + 1);
switch (optc) {
case 'c':
case 'i':
case 'e':
case 'k':
case 'v':
case 'd':
case 'p':
case 'g':
case 'r':
case 's':
argsep = *(argv[i] + 2);
if (argsep == '\0') {
i++;
if (i < argc) {
optarg = argv[i];
if (*optarg == '-') {
Fprintf(stderr, "Option -%c needs an argument.\n", optc);
Fprintf(stderr, "Option not handled.\n");
continue;
}
}
else {
Fprintf(stderr, "Option -%c needs an argument.\n", optc);
Fprintf(stderr, "Option not handled.\n");
continue;
}
}
else
optarg = argv[i] + 2;
}
/* Now handle each option individually */
switch (optc) {
case 'c':
configfile = strdup(optarg);
break;
case 'v':
Verbose = atoi(optarg);
break;
case 'i':
infofile = strdup(optarg);
break;
case 'd':
if (delayfilename != NULL) free(delayfilename);
delayfilename = strdup(optarg);
break;
case 'p':
vddnet = strdup(optarg);
break;
case 'g':
gndnet = strdup(optarg);
break;
case 's':
// The "-s" argument is not handled here but is used
// to avoid generating a warning message.
doscript = TRUE;
break;
case 'r':
if (sscanf(optarg, "%d", &Scales.iscale) != 1) {
Fprintf(stderr, "Bad resolution scalefactor \"%s\", "
"integer expected.\n", optarg);
Scales.iscale = 1;
}
break;
case 'h':
helpmessage();
return 1;
break;
case 'f':
forceRoutable = TRUE;
break;
case 'k':
Fprintf(stdout, "Option \"k\" deprecated. Use \"effort\""
" in stage2 or stage3 command or -e option\n");
minEffort = 100 * atoi(optarg);
break;
case 'e':
minEffort = atoi(optarg);
break;
case 'n':
/* Ignore '-noc' or '-nog', handled elsewhere */
break;
case '\0':
/* Ignore '-' */
break;
case '-':
/* Ignore '--' */
break;
default:
Fprintf(stderr, "Bad option -%c, ignoring.\n", optc);
}
}
else {
/* Not an option or an option argument, so treat as a filename */
Filename = strdup(argv[i]);
}
}
if (infofile != NULL) {
infoFILEptr = fopen(infofile, "w" );
free(infofile);
}
else {
infoFILEptr = NULL;
#ifndef TCL_QROUTER
fprintf(stdout, "Qrouter detail maze router version %s.%s\n", VERSION, REVISION);
#endif
}
if (!doscript) {
configFILEptr = fopen(configfile, "r");
if (configFILEptr) {
read_config(configFILEptr, (infoFILEptr == NULL) ? FALSE : TRUE);
readconfig = TRUE;
}
else {
if (configfile != configdefault)
Fprintf(stderr, "Could not open %s\n", configfile );
else
Fprintf(stdout, "No .cfg file specified, continuing without.\n");
}
if (configfile != configdefault) free(configfile);
}
if (infoFILEptr != NULL) {
/* Print qrouter name and version number at the top */
#ifdef TCL_QROUTER
fprintf(infoFILEptr, "qrouter %s.%s.T\n", VERSION, REVISION);
#else
fprintf(infoFILEptr, "qrouter %s.%s\n", VERSION, REVISION);
#endif
/* Resolve pitches. This is normally done after reading */
/* the DEF file, but the info file is usually generated */
/* from LEF layer information only, in order to get the */
/* values needed to write the DEF file tracks. */
for (i = 0; i < Num_layers; i++) {
int o = LefGetRouteOrientation(i);
/* Set PitchX and PitchY from route info as */
/* check_variable_pitch needs the values */
if (o == 1)
PitchY[i] = LefGetRoutePitch(i);
else
PitchX[i] = LefGetRoutePitch(i);
}
/* Resolve pitch information similarly to post_config() */
for (i = 1; i < Num_layers; i++) {
int o = LefGetRouteOrientation(i);
if ((o == 1) && (PitchY[i - 1] == 0))
PitchY[i - 1] = PitchY[i];
else if ((o == 0) && (PitchX[i - 1] == 0))
PitchX[i - 1] = PitchX[i];
}
/* Print information about route layers, and exit */
for (i = 0; i < Num_layers; i++) {
double pitch, width;
int vnum, hnum;
int o = LefGetRouteOrientation(i);
char *layername = LefGetRouteName(i);
check_variable_pitch(i, &hnum, &vnum);
if (vnum > 1 && hnum == 1) hnum++; // see note in node.c
if (hnum > 1 && vnum == 1) vnum++;
if (layername != NULL) {
pitch = (o == 1) ? PitchY[i] : PitchX[i],
width = LefGetRouteWidth(i);
if (pitch == 0.0 || width == 0.0) continue;
fprintf(infoFILEptr, "%s %g %g %g %s",
layername, pitch,
LefGetRouteOffset(i), width,
(o == 1) ? "horizontal" : "vertical");
if (o == 1 && vnum > 1)
fprintf(infoFILEptr, " %d", vnum);
else if (o == 0 && hnum > 1)
fprintf(infoFILEptr, " %d", hnum);
fprintf(infoFILEptr, "\n");
}
}
fclose(infoFILEptr);
return 1;
}
if (Filename != NULL) {
/* process last non-option string */
dotptr = strrchr(Filename, '.');
if (dotptr != NULL) *dotptr = '\0';
if (DEFfilename != NULL) free(DEFfilename);
DEFfilename = (char *)malloc(strlen(Filename) + 5);
sprintf(DEFfilename, "%s.def", Filename);
}
else if (readconfig) {
Fprintf(stdout, "No netlist file specified, continuing without.\n");
// Print help message but continue normally.
helpmessage();
}
Obs[0] = (u_int *)NULL;
NumChannelsX[0] = 0; // This is so we can check if NumChannelsX/Y were
// set from within DefRead() due to reading in
// existing nets.
Scales.oscale = 1.0;
return 0;
}
/*--------------------------------------------------------------*/
/* remove_from_failed --- */
/* */
/* Remove one net from the list of failing nets. If "net" was */
/* in the list FailedNets, then return TRUE, otherwise return */
/* FALSE. */
/*--------------------------------------------------------------*/
u_char remove_from_failed(NET net)
{
NETLIST nl, lastnl;
lastnl = (NETLIST)NULL;
for (nl = FailedNets; nl; nl = nl->next) {
if (nl->net == net) {
if (lastnl == NULL)
FailedNets = nl->next;
else
lastnl->next = nl->next;
free(nl);
return TRUE;
}
lastnl = nl;
}
return FALSE;
}
/*--------------------------------------------------------------*/
/* remove_failed --- */
/* */
/* Free up memory in the list of route failures. */
/*--------------------------------------------------------------*/
void remove_failed()
{
NETLIST nl;
while (FailedNets) {
nl = FailedNets;
FailedNets = FailedNets->next;
free(nl);
}
}
/*--------------------------------------------------------------*/
/* reinitialize --- */
/* */
/* Free up memory in preparation for reading another DEF file */
/*--------------------------------------------------------------*/
static void reinitialize()
{
int i, j;
NETLIST nl;
NET net;
ROUTE rt;
SEG seg;
DSEG obs, tap;
NODE node;
GATE gate;
DPOINT dpt;
// Free up all of the matrices
for (i = 0; i < Pinlayers; i++) {
for (j = 0; j < NumChannelsX[i] * NumChannelsY[i]; j++)
if (Nodeinfo[i][j])
free(Nodeinfo[i][j]);
free(Nodeinfo[i]);
Nodeinfo[i] = NULL;
}
for (i = 0; i < Num_layers; i++) {
free(Obs2[i]);
free(Obs[i]);
Obs2[i] = NULL;
Obs[i] = NULL;
}
if (RMask != NULL) {
free(RMask);
RMask = NULL;
}
// Free the netlist of failed nets (if there is one)
remove_failed();
// Free all net and route information
for (i = 0; i < Numnets; i++) {
net = Nlnets[i];
while (net->noripup) {
nl = net->noripup;
net->noripup = net->noripup->next;
free(nl);
}
while (net->routes) {
rt = net->routes;
net->routes = net->routes->next;
while (rt->segments) {
seg = rt->segments;
rt->segments = rt->segments->next;
free(seg);
}
free(rt);
}
while (net->netnodes) {
node = net->netnodes;
net->netnodes = net->netnodes->next;
while (node->taps) {
dpt = node->taps;
node->taps = node->taps->next;
free(dpt);
}
while (node->extend) {
dpt = node->extend;
node->extend = node->extend->next;
free(dpt);
}
// Note: node->netname is not allocated
// but copied from net record
free(node);
}
free (net->netname);
free (net);
}
free(Nlnets);
Nlnets = NULL;
Numnets = 0;
// Free all gates information
while (Nlgates) {
gate = Nlgates;
Nlgates = Nlgates->next;
while (gate->obs) {
obs = gate->obs;
gate->obs = gate->obs->next;
free(obs);
}
for (i = 0; i < gate->nodes; i++) {
while (gate->taps[i]) {
tap = gate->taps[i];
gate->taps[i] = gate->taps[i]->next;
free(tap);
}
// Note: gate->node[i] is not allocated
// but copied from cell record in GateInfo
// Likewise for gate->noderec[i]
}
free(gate->gatename);
}
Nlgates = NULL;
}
/*--------------------------------------------------------------*/
/* post_def_setup --- */
/* */
/* Things to do after a DEF file has been read in, and the size */
/* of the layout, components, and nets are known. */
/*--------------------------------------------------------------*/
static int post_def_setup()
{
NET net;
int i;
double sreq1, sreq2;
if (DEFfilename == NULL) {
Fprintf(stderr, "No DEF file read, nothing to set up.\n");
return 1;
}
else {
if (Num_layers <= 0) {
Fprintf(stderr, "No routing layers defined, nothing to do.\n");
return 1;
}
}
for (i = 0; i < Numnets; i++) {
net = Nlnets[i];
find_bounding_box(net);
defineRouteTree(net);
}
create_netorder(0); // Choose ordering method (0 or 1)
set_num_channels(); // If not called from DefRead()
allocate_obs_array(); // If not called from DefRead()
initMask();
for (i = 0; i < Num_layers; i++) {
Obsinfo[i] = (float *)calloc(NumChannelsX[i] * NumChannelsY[i],
sizeof(float));
if (!Obsinfo[i]) {
fprintf(stderr, "Out of memory 5.\n");
exit(5);
}
Nodeinfo[i] = (NODEINFO *)calloc(NumChannelsX[i] * NumChannelsY[i],
sizeof(NODEINFO));
if (!Nodeinfo[i]) {
fprintf( stderr, "Out of memory 6.\n");
exit(6);
}
}
Flush(stdout);
if (Verbose > 1)
Fprintf(stderr, "Diagnostic: memory block is %d bytes\n",
(int)sizeof(u_int) * NumChannelsX[0] * NumChannelsY[0]);
/* Be sure to create obstructions from gates first, since we don't */
/* want improperly defined or positioned obstruction layers to over- */
/* write our node list. */
expand_tap_geometry();
clip_gate_taps();
create_obstructions_from_gates();
create_obstructions_inside_nodes();
create_obstructions_outside_nodes();
tap_to_tap_interactions();
create_obstructions_from_variable_pitch();
adjust_stub_lengths();
find_route_blocks();
count_reachable_taps();
count_pinlayers();
// If any nets are pre-routed, place those routes.
for (i = 0; i < Numnets; i++) {
net = Nlnets[i];
writeback_all_routes(net);
}
// Remove the Obsinfo array, which is no longer needed, and allocate
// the Obs2 array for costing information
for (i = 0; i < Num_layers; i++) free(Obsinfo[i]);
for (i = 0; i < Num_layers; i++) {
Obs2[i] = (PROUTE *)calloc(NumChannelsX[i] * NumChannelsY[i],
sizeof(PROUTE));
if (!Obs2[i]) {
fprintf( stderr, "Out of memory 9.\n");
exit(9);
}
}
// Fill in needblock bit fields, which are used by commit_proute
// when route layers are too large for the grid size, and grid points
// around a route need to be marked as blocked whenever something is
// routed on those layers.
// "ROUTEBLOCK" is set if the spacing is violated between a normal
// route and an adjacent via. "VIABLOCK" is set if the spacing is
// violated between two adjacent vias. It may be helpful to define
// a third category which is route-to-route spacing violation.
for (i = 0; i < Num_layers; i++) {
needblock[i] = FALSE;
sreq1 = LefGetRouteSpacing(i);
sreq2 = LefGetViaWidth(i, i, 0) + sreq1;
if ((sreq2 - EPS) > PitchX[i]) needblock[i] |= VIABLOCKX;
if (i != 0) {
sreq2 = LefGetViaWidth(i - 1, i, 0) + sreq1;
if ((sreq2 - EPS) > PitchX[i]) needblock[i] |= VIABLOCKX;
}
sreq2 = LefGetViaWidth(i, i, 1) + sreq1;
if ((sreq2 - EPS) > PitchY[i]) needblock[i] |= VIABLOCKY;
if (i != 0) {
sreq2 = LefGetViaWidth(i - 1, i, 1) + sreq1;
if ((sreq2 - EPS) > PitchY[i]) needblock[i] |= VIABLOCKY;
}
sreq1 += 0.5 * LefGetRouteWidth(i);
sreq2 = sreq1 + 0.5 * LefGetViaWidth(i, i, 0);
if ((sreq2 - EPS) > PitchX[i]) needblock[i] |= ROUTEBLOCKX;
if (i != 0) {
sreq2 = sreq1 + 0.5 * LefGetViaWidth(i - 1, i, 0);
if ((sreq2 - EPS) > PitchX[i]) needblock[i] |= ROUTEBLOCKX;
}
sreq2 = sreq1 + 0.5 * LefGetViaWidth(i, i, 1);
if ((sreq2 - EPS) > PitchY[i]) needblock[i] |= ROUTEBLOCKY;
if (i != 0) {
sreq2 = sreq1 + 0.5 * LefGetViaWidth(i - 1, i, 1);
if ((sreq2 - EPS) > PitchY[i]) needblock[i] |= ROUTEBLOCKY;
}
}
// Now we have netlist data, and can use it to get a list of nets.
FailedNets = (NETLIST)NULL;
Flush(stdout);
if (Verbose > 0)
Fprintf(stdout, "There are %d nets in this design.\n", Numnets);
return 0;
}
/*--------------------------------------------------------------*/
/* read_def --- */
/* */
/* Read in the DEF file in DEFfilename */
/*--------------------------------------------------------------*/
void read_def(char *filename)
{
double oscale, precis;
if ((filename == NULL) && (DEFfilename == NULL)) {
Fprintf(stderr, "No DEF file specified, nothing to read.\n");
return;
}
else if (filename != NULL) {
if (DEFfilename != NULL) {
reinitialize();
free(DEFfilename);
}
DEFfilename = strdup(filename);
}
else reinitialize();
oscale = (double)DefRead(DEFfilename);
precis = Scales.mscale / oscale; // from LEF manufacturing grid
if (precis < 1.0) precis = 1.0;
precis *= (double)Scales.iscale; // user-defined extra scaling
Scales.iscale = (int)(precis + 0.5);
Scales.oscale = (double)(Scales.iscale * oscale);
if (Verbose > 0)
Fprintf(stdout, "Output scale = microns / %g, precision %g\n",
Scales.oscale / (double)Scales.iscale,
1.0 / (double)Scales.iscale);
post_def_setup();
}
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
int dofirststage(u_char graphdebug, int debug_netnum)
{
int i, failcount, remaining, result;
NET net;
NETLIST nl;
// Clear the lists of failed routes, in case first
// stage is being called more than once.
if (debug_netnum <= 0) remove_failed();
// Now find and route all the nets
remaining = Numnets;
for (i = (debug_netnum >= 0) ? debug_netnum : 0; i < Numnets; i++) {
net = getnettoroute(i);
if ((net != NULL) && (net->netnodes != NULL)) {
result = doroute(net, FALSE, graphdebug);
if (result == 0) {
remaining--;
if (Verbose > 0)
Fprintf(stdout, "Finished routing net %s\n", net->netname);
Fprintf(stdout, "Nets remaining: %d\n", remaining);
}
else {
if (Verbose > 0)
Fprintf(stdout, "Failed to route net %s\n", net->netname);
}
}
else {
if (net && (Verbose > 0)) {
Fprintf(stdout, "Nothing to do for net %s\n", net->netname);
}
remaining--;
}
if (debug_netnum >= 0) break;
}
failcount = countlist(FailedNets);
if (debug_netnum >= 0) return failcount;
if (Verbose > 0) {
Flush(stdout);
Fprintf(stdout, "\n----------------------------------------------\n");
Fprintf(stdout, "Progress: ");
Fprintf(stdout, "Stage 1 total routes completed: %d\n", TotalRoutes);
}
if (FailedNets == (NETLIST)NULL)
Fprintf(stdout, "No failed routes!\n");
else {
if (FailedNets != (NETLIST)NULL)
Fprintf(stdout, "Failed net routes: %d\n", failcount);
}
if (Verbose > 0)
Fprintf(stdout, "----------------------------------------------\n");
return failcount;
}
/*--------------------------------------------------------------*/
/* getnettoroute - get a net to route */
/* */
/* ARGS: */
/* RETURNS: */
/* SIDE EFFECTS: */
/* AUTHOR and DATE: steve beccue Fri Aug 8 */
/*--------------------------------------------------------------*/
NET getnettoroute(int order)
{
NET net;
net = Nlnets[order];
if (net == NULL) return NULL;
if (net->flags & NET_IGNORED) return NULL;
if (net->numnodes >= 2) return net;
// Qrouter will route power and ground nets even if the
// standard cell power and ground pins are not listed in
// the nets section. Because of this, it is okay to have
// only one node.
if ((net->numnodes == 1) && (net->netnum == VDD_NET ||
net->netnum == GND_NET))
return net;
if (Verbose > 3) {
Flush(stdout);
Fprintf(stderr, "getnettoroute(): Fell through\n");
}
return NULL;
} /* getnettoroute() */
/*--------------------------------------------------------------*/
/* Find all routes that collide with net "net", remove them */
/* from the Obs[] matrix, append them to the FailedNets list, */
/* and then write the net "net" back to the Obs[] matrix. */
/* */
/* Return the number of nets ripped up */
/*--------------------------------------------------------------*/
static int ripup_colliding(NET net, u_char onlybreak)
{
NETLIST nl, nl2, fn;
int ripped;
// Analyze route for nets with which it collides
nl = find_colliding(net, &ripped);
// "ripLimit" limits the number of collisions so that the
// router avoids ripping up huge numbers of nets, which can
// cause the number of failed nets to keep increasing.
if (ripped > ripLimit) {
while (nl) {
nl2 = nl->next;
free(nl);
nl = nl2;
}
return -1;
}
// Remove the colliding nets from the route grid and append
// them to FailedNets.
ripped = 0;
while(nl) {
ripped++;
nl2 = nl->next;
if (Verbose > 0)
Fprintf(stdout, "Ripping up blocking net %s\n", nl->net->netname);
if (ripup_net(nl->net, TRUE, onlybreak, FALSE) == TRUE) {
for (fn = FailedNets; fn && fn->next != NULL; fn = fn->next);
if (fn)
fn->next = nl;
else
FailedNets = nl;
// Add nl->net to "noripup" list for this net, so it won't be
// routed over again by the net. Avoids infinite looping in
// the second stage.
fn = (NETLIST)malloc(sizeof(struct netlist_));
fn->next = net->noripup;
net->noripup = fn;
fn->net = nl->net;
}
nl->next = (NETLIST)NULL;
nl = nl2;
}
return ripped;
}
/*--------------------------------------------------------------*/
/* Do a second-stage route (rip-up and re-route) of a single */
/* net "net". */
/*--------------------------------------------------------------*/
int route_net_ripup(NET net, u_char graphdebug, u_char onlybreak)
{
int result;
NETLIST nl, nl2;
// Find the net in the Failed list and remove it.
if (FailedNets) {
if (FailedNets->net == net) {
nl2 = FailedNets;
FailedNets = FailedNets->next;
free(nl2);
}
else {
for (nl = FailedNets; nl->next; nl = nl->next) {
if (nl->next->net == net)
break;
}
nl2 = nl->next;
nl->next = nl2->next;
free(nl2);
}
}
result = doroute(net, TRUE, graphdebug);
if (result != 0) {
if (net->noripup != NULL) {
if ((net->flags & NET_PENDING) == 0) {
// Clear this net's "noripup" list and try again.
while (net->noripup) {
nl = net->noripup->next;
free(net->noripup);
net->noripup = nl;
}
result = doroute(net, TRUE, graphdebug);
net->flags |= NET_PENDING; // Next time we abandon it.
}
}
}
if (result != 0)
result = ripup_colliding(net, onlybreak);
return result;
}
/*--------------------------------------------------------------*/
/* dosecondstage() --- */
/* */
/* Second stage: Rip-up and reroute failing nets. */
/* Method: */
/* 1) Route a failing net with stage = 1 (other nets become */
/* costs, not blockages, no copying to Obs) */
/* 2) If net continues to fail, flag it as unroutable and */
/* remove it from the list. */
/* 3) Otherwise, determine the nets with which it collided. */
/* 4) Remove all of the colliding nets, and add them to the */
/* FailedNets list */
/* 5) Route the original failing net. */
/* 6) Continue until all failed nets have been processed. */
/* */
/* Return value: The number of failing nets */
/*--------------------------------------------------------------*/
int
dosecondstage(u_char graphdebug, u_char singlestep, u_char onlybreak, u_int effort)
{
int failcount, result, i;
NET net;
NETLIST nl, nl2;
NETLIST Abandoned; // Abandoned routes---not even trying any more.
ROUTE rt, rt2;
SEG seg;
u_int loceffort = (effort > minEffort) ? effort : minEffort;
fillMask((u_char)0);
Abandoned = NULL;
for (i = 0; i < 3; i++) progress[i] = 0;
// Clear the "noripup" field from all of the failed nets, in case
// the second stage route is being repeated.
for (nl2 = FailedNets; nl2; nl2 = nl2->next) {
net = nl2->net;
while (net->noripup) {
nl = net->noripup->next;
free(net->noripup);
net->noripup = nl;
}
net->flags &= ~NET_PENDING;
}
while (FailedNets != NULL) {
// Diagnostic: how are we doing?
failcount = countlist(FailedNets);
if (Verbose > 1) Fprintf(stdout, "------------------------------\n");
Fprintf(stdout, "Nets remaining: %d\n", failcount);
if (Verbose > 1) Fprintf(stdout, "------------------------------\n");
net = FailedNets->net;
// Remove this net from the fail list
nl2 = FailedNets;
FailedNets = FailedNets->next;
free(nl2);
// Keep track of which routes existed before the call to doroute().
for (rt = net->routes; rt && rt->next; rt = rt->next);
if (Verbose > 2)
Fprintf(stdout, "Routing net %s with collisions\n", net->netname);
Flush(stdout);
result = doroute(net, TRUE, graphdebug);
if (result != 0) {
if (net->noripup != NULL) {
if ((net->flags & NET_PENDING) == 0) {
// Clear this net's "noripup" list and try again.
while (net->noripup) {
nl = net->noripup->next;
free(net->noripup);
net->noripup = nl;
}
result = doroute(net, TRUE, graphdebug);
net->flags |= NET_PENDING; // Next time we abandon it.
}
}
}
if (result == 0) {
// Find nets that collide with "net" and remove them, adding them
// to the end of the FailedNets list.
// If the number of nets to be ripped up exceeds "ripLimit",
// then treat this as a route failure, and don't rip up any of
// the colliding nets.
result = ripup_colliding(net, onlybreak);
if (result > 0) result = 0;
}
if (result != 0) {
// Complete failure to route, even allowing collisions.
// Abandon routing this net.
if (Verbose > 0)
Fprintf(stdout, "Failure on net %s: Abandoning for now.\n",
net->netname);
// Add the net to the "abandoned" list
nl = (NETLIST)malloc(sizeof(struct netlist_));
nl->net = net;
nl->next = Abandoned;
Abandoned = nl;
while (FailedNets && (FailedNets->net == net)) {
nl = FailedNets->next;
free(FailedNets);
FailedNets = nl;
}
// Remove routing information for all new routes that have
// not been copied back into Obs[].
if (rt == NULL) {
rt = net->routes;
net->routes = NULL; // remove defunct pointer
}
else {
rt2 = rt->next;
rt->next = NULL;
rt = rt2;
}
while (rt != NULL) {
rt2 = rt->next;
while (rt->segments) {
seg = rt->segments->next;
free(rt->segments);
rt->segments = seg;
}
free(rt);
rt = rt2;
}
// Remove both routing information and remove the route from
// Obs[] for all parts of the net that were previously routed
ripup_net(net, TRUE, FALSE, FALSE); // Remove routing information from net
continue;
}
// Write back the original route to the grid array
writeback_all_routes(net);
// Evaluate progress by counting the total number of remaining
// routes in the last (effort) cycles. progress[2]->progress[1]
// is a progression from oldest to newest number of remaining
// routes. Calculate the slope of this line and declare an end
// to this 2nd stage route if the slope falls to zero.
progress[1] += failcount;
progress[0]++;
if (progress[0] > loceffort) {
if ((progress[2] > 0) && (progress[2] <= progress[1])) {
Fprintf(stderr, "\nNo progress at level of effort %d;"
" ending 2nd stage.\n", loceffort);
break;
}
progress[2] = progress[1];
progress[1] = progress[0] = 0;
}
if (singlestep && (FailedNets != NULL)) return countlist(FailedNets);
}
// If the list of abandoned nets is non-null, attach it to the
// end of the failed nets list.
if (Abandoned != NULL) {
if (FailedNets == NULL) {
FailedNets = Abandoned;
Abandoned = NULL;
}
else {
for (nl = FailedNets; nl->next; nl = nl->next);
nl->next = Abandoned;
Abandoned = NULL;
}
}
if (Verbose > 0) {
Flush(stdout);
Fprintf(stdout, "\n----------------------------------------------\n");
Fprintf(stdout, "Progress: ");
Fprintf(stdout, "Stage 2 total routes completed: %d\n", TotalRoutes);
}
if (FailedNets == (NETLIST)NULL) {
failcount = 0;
Fprintf(stdout, "No failed routes!\n");
}
else {
failcount = countlist(FailedNets);
if (FailedNets != (NETLIST)NULL)
Fprintf(stdout, "Failed net routes: %d\n", failcount);
}
if (Verbose > 0)
Fprintf(stdout, "----------------------------------------------\n");
return failcount;
}
/*--------------------------------------------------------------*/
/* 3rd stage routing (cleanup). Rip up each net in turn and */
/* reroute it. With all of the crossover costs gone, routes */
/* should be much better than the 1st stage. Any route that */
/* existed before it got ripped up should by definition be */
/* routable. */
/*--------------------------------------------------------------*/
int dothirdstage(u_char graphdebug, int debug_netnum, u_int effort)
{
int i, failcount, remaining, result, maskSave;
u_char failed;
NET net;
ROUTE rt;
NETLIST nl;
u_int loceffort = (effort > minEffort) ? effort : minEffort;
// Now find and route all the nets
for (i = 0; i < 3; i++) progress[i] = 0;
remaining = Numnets;
for (i = (debug_netnum >= 0) ? debug_netnum : 0; i < Numnets; i++) {
net = getnettoroute(i);
failed = remove_from_failed(net);
if ((net != NULL) && (net->netnodes != NULL)) {
// Simple optimization: If every route has four or fewer
// segments, then rerouting is almost certainly a waste of
// time.
if (!failed) {
for (rt = net->routes; rt; rt = rt->next) {
int j;
SEG seg = rt->segments;
for (j = 0; j < 3; j++) {
if (seg->next == NULL) break;
seg = seg->next;
}
if (j == 3) break;
}
if (rt == NULL) {
if (Verbose > 0)
Fprintf(stdout, "Keeping route for net %s\n", net->netname);
remaining--;
continue;
}
}
setBboxCurrent(net);
ripup_net(net, FALSE, FALSE, TRUE); /* retain = TRUE */
// Set aside routes in case of failure.
rt = net->routes;
net->routes = NULL;
// set mask mode to BBOX, if auto
maskSave = maskMode;
if (maskMode == MASK_AUTO) maskMode = MASK_BBOX;
result = doroute(net, FALSE, graphdebug);
maskMode = maskSave;
if (result == 0) {
if (Verbose > 0)
Fprintf(stdout, "Finished routing net %s\n", net->netname);
remaining--;
Fprintf(stdout, "Nets remaining: %d\n", remaining);
remove_routes(rt, FALSE); /* original is no longer needed */
}
else if (!failed) {
if (Verbose > 0)
Fprintf(stdout, "Failed to route net %s; restoring original\n",
net->netname);
remove_routes(net->routes, FALSE); /* should be NULL already */
net->routes = rt;
writeback_all_routes(net); /* restore the original */
remaining--;
/* Pull net from FailedNets, since we restored it. */
if (FailedNets && (FailedNets->net == net)) {
nl = FailedNets->next;
free(FailedNets);
FailedNets = nl;
}
}
else {
if (Verbose > 0)
Fprintf(stdout, "Failed to route net %s.\n", net->netname);
}
}
else {
if (net && (Verbose > 0)) {
Fprintf(stdout, "Nothing to do for net %s\n", net->netname);
}
remaining--;
}
if (debug_netnum >= 0) break;
/* Progress analysis (see 2nd stage). Normally, the 3rd */
/* stage is run only after all nets have been successfully */
/* routed. However, there is no guarantee of this, so it */
/* is necessary to anticipate convergence issues. */
progress[1] += failcount;
progress[0]++;
if (progress[0] > loceffort) {
if ((progress[2] > 0) && (progress[2] < progress[1])) {
Fprintf(stderr, "\nNo progress at level of effort %d;"
" ending 3rd stage.\n", loceffort);
break;
}
progress[2] = progress[1];
progress[1] = progress[0] = 0;
}
}
failcount = countlist(FailedNets);
if (debug_netnum >= 0) return failcount;
if (Verbose > 0) {
Flush(stdout);
Fprintf(stdout, "\n----------------------------------------------\n");
Fprintf(stdout, "Progress: ");
Fprintf(stdout, "Stage 3 total routes completed: %d\n", TotalRoutes);
}
if (FailedNets == (NETLIST)NULL)
Fprintf(stdout, "No failed routes!\n");
else {
if (FailedNets != (NETLIST)NULL)
Fprintf(stdout, "Failed net routes: %d\n", failcount);
}
if (Verbose > 0)
Fprintf(stdout, "----------------------------------------------\n");
return failcount;
}
/*--------------------------------------------------------------*/
/* Free memory of an iroute glist and clear the Obs2 */
/* PR_ON_STACK flag for each location in the list. */
/*--------------------------------------------------------------*/
void
free_glist(struct routeinfo_ *iroute)
{
POINT gpoint;
PROUTE *Pr;
int i;
for (i = 0; i < 6; i++) {
while (iroute->glist[i]) {
gpoint = iroute->glist[i];
iroute->glist[i] = iroute->glist[i]->next;
Pr = &OBS2VAL(gpoint->x1, gpoint->y1, gpoint->layer);
Pr->flags &= ~PR_ON_STACK;
freePOINT(gpoint);
}
}
}
/*--------------------------------------------------------------*/
/* doroute - basic route call */
/* */
/* stage = 0 is normal routing */
/* stage = 1 is the rip-up and reroute stage */
/* */
/* ARGS: two nodes to be connected */
/* RETURNS: 0 on success, -1 on failure */
/* SIDE EFFECTS: */
/* AUTHOR and DATE: steve beccue Fri Aug 8 */
/*--------------------------------------------------------------*/
int doroute(NET net, u_char stage, u_char graphdebug)
{
ROUTE rt1, lrt;
NETLIST nlist;
int result, lastlayer, unroutable, i;
struct routeinfo_ iroute;
if (!net) {
Fprintf(stderr, "doroute(): no net to route.\n");
return 0;
}
CurNet = net; // Global, used by 2nd stage
// Fill out route information record
iroute.net = net;
iroute.rt = NULL;
for (i = 0; i < 6; i++)
iroute.glist[i] = NULL;
iroute.nsrc = NULL;
iroute.nsrctap = NULL;
iroute.maxcost = MAXRT;
iroute.do_pwrbus = FALSE;
iroute.pwrbus_src = 0;
lastlayer = -1;
/* Set up Obs2[] matrix for first route */
result = route_setup(&iroute, stage);
unroutable = result - 1;
if (graphdebug) highlight_mask();
// Keep going until we are unable to route to a terminal
while (net && (result > 0)) {
if (graphdebug) highlight_source();
if (graphdebug) highlight_dest();
if (graphdebug)
for (i = 0; i < 6; i++)
highlight_starts(iroute.glist[i]);
rt1 = createemptyroute();
rt1->netnum = net->netnum;
iroute.rt = rt1;
if (Verbose > 3) {
Fprintf(stdout,"doroute(): added net %d path start %d\n",
net->netnum, net->netnodes->nodenum);
}
result = route_segs(&iroute, stage, graphdebug);
if (result < 0) { // Route failure.
// If we failed this on the last round, then stop
// working on this net and move on to the next.
if (FailedNets && (FailedNets->net == net)) break;
nlist = (NETLIST)malloc(sizeof(struct netlist_));
nlist->net = net;
nlist->next = FailedNets;
FailedNets = nlist;
free(rt1);
}
else {
TotalRoutes++;
if (net->routes) {
for (lrt = net->routes; lrt->next; lrt = lrt->next);
lrt->next = rt1;
}
else {
net->routes = rt1;
}
draw_net(net, TRUE, &lastlayer);
}
// For power routing, clear the list of existing pending route
// solutions---they will not be relevant.
if (iroute.do_pwrbus) free_glist(&iroute);
/* Set up for next route and check if routing is done */
result = next_route_setup(&iroute, stage);
}
/* Finished routing (or error occurred) */
free_glist(&iroute);
/* Route failure due to no taps or similar error---Log it */
if ((result < 0) || (unroutable > 0)) {
if ((FailedNets == NULL) || (FailedNets->net != net)) {
nlist = (NETLIST)malloc(sizeof(struct netlist_));
nlist->net = net;
nlist->next = FailedNets;
FailedNets = nlist;
}
}
return (unroutable > 0) ? -1 : result;
} /* doroute() */
/*--------------------------------------------------------------*/
/* Catch-all routine when no tap points are found. This is a */
/* common problem when the technology is not set up correctly */
/* and it's helpful to have all these error conditions pass */
/* to a single subroutine. */
/*--------------------------------------------------------------*/
static void unable_to_route(char *netname, NODE node, unsigned char forced)
{
if (node)
Fprintf(stderr, "Node %s of net %s has no tap points---",
print_node_name(node), netname);
else
Fprintf(stderr, "Node of net %s has no tap points---",
netname);
if (forced)
Fprintf(stderr, "forcing a tap point.\n");
else
Fprintf(stderr, "unable to route!\n");
}
/*--------------------------------------------------------------*/
/* next_route_setup -- */
/* */
/*--------------------------------------------------------------*/
static int next_route_setup(struct routeinfo_ *iroute, u_char stage)
{
ROUTE rt;
NODE node;
int i, j;
int rval, result;
if (iroute->do_pwrbus == TRUE) {
iroute->pwrbus_src++;
iroute->nsrc = iroute->nsrc->next;
rval = -2;
while (rval == -2) {
if ((iroute->pwrbus_src > iroute->net->numnodes) || (iroute->nsrc == NULL)) {
result = 0;
break;
}
else {
result = set_powerbus_to_net(iroute->nsrc->netnum);
clear_target_node(iroute->nsrc);
rval = set_node_to_net(iroute->nsrc, PR_SOURCE,
&iroute->glist[0], &iroute->bbox, stage);
if (rval == -2) {
if (forceRoutable) {
make_routable(iroute->nsrc);
}
else {
iroute->pwrbus_src++;
iroute->nsrc = iroute->nsrc->next;
}
unable_to_route(iroute->net->netname, iroute->nsrc, forceRoutable);
}
else if (rval < 0) return -1;
}
}
}
else {
for (rt = iroute->net->routes; (rt && rt->next); rt = rt->next);
// Set positions on last route to PR_SOURCE
if (rt) {
result = set_route_to_net(iroute->net, rt, PR_SOURCE,
&iroute->glist[0], &iroute->bbox, stage);
if (result == -2) {
unable_to_route(iroute->net->netname, NULL, 0);
return -1;
}
}
else return -1;
result = (count_targets(iroute->net) == 0) ? 0 : 1;
}
// Check for the possibility that there is already a route to the target
if (!result) {
// Remove nodes of the net from Nodeinfo.nodeloc so that they will not be
// used for crossover costing of future routes.
for (i = 0; i < Pinlayers; i++) {
for (j = 0; j < NumChannelsX[i] * NumChannelsY[i]; j++) {
if (Nodeinfo[i][j]) {
node = Nodeinfo[i][j]->nodeloc;
if (node != (NODE)NULL)
if (node->netnum == iroute->net->netnum)
Nodeinfo[i][j]->nodeloc = (NODE)NULL;
}
}
}
free_glist(iroute);
return 0;
}
if (!iroute->do_pwrbus) {
// If any target is found during the search, but is not the
// target that is chosen for the minimum-cost path, then it
// will be left marked "processed" and never visited again.
// Make sure this doesn't happen by clearing the "processed"
// flag from all such target nodes, and placing the positions
// on the stack for processing again.
clear_non_source_targets(iroute->net, &iroute->glist[0]);
}
if (Verbose > 1) {
Fprintf(stdout, "netname = %s, route number %d\n",
iroute->net->netname, TotalRoutes );
Flush(stdout);
}
if (iroute->maxcost > 2)
iroute->maxcost >>= 1; // Halve the maximum cost from the last run
return 1; // Successful setup
}
/*--------------------------------------------------------------*/
/* route_setup -- */
/* */
/*--------------------------------------------------------------*/
static int route_setup(struct routeinfo_ *iroute, u_char stage)
{
int i, j;
u_int netnum, dir;
int result, rval, unroutable;
NODE node;
NODEINFO lnode;
PROUTE *Pr;
// Make Obs2[][] a copy of Obs[][]. Convert pin obstructions to
// terminal positions for the net being routed.
for (i = 0; i < Num_layers; i++) {
for (j = 0; j < NumChannelsX[i] * NumChannelsY[i]; j++) {
netnum = Obs[i][j] & (~BLOCKED_MASK);
Pr = &Obs2[i][j];
if (netnum != 0) {
Pr->flags = 0; // Clear all flags
if (netnum == DRC_BLOCKAGE)
Pr->prdata.net = netnum;
else
Pr->prdata.net = netnum & NETNUM_MASK;
} else {
Pr->flags = PR_COST; // This location is routable
Pr->prdata.cost = MAXRT;
}
}
}
if (iroute->net->netnum == VDD_NET || iroute->net->netnum == GND_NET) {
// The normal method of selecting source and target is not amenable
// to power bus routes. Instead, we use the global standard cell
// power rails as the target, and each net in sequence becomes the
// sole source node
iroute->do_pwrbus = TRUE;
iroute->nsrc = find_unrouted_node(iroute->net);
result = (iroute->nsrc == NULL) ? 0 : 1;
}
else {
iroute->do_pwrbus = FALSE;
if (iroute->net->netnodes != NULL)
iroute->nsrc = iroute->net->netnodes;
else {
Fprintf(stderr, "Net %s has no nodes, unable to route!\n",
iroute->net->netname);
return -1;
}
result = 1;
}
// We start at the node referenced by the route structure, and flag all
// of its taps as PR_SOURCE, as well as all connected routes.
unroutable = 0;
if (result) {
iroute->bbox.x2 = iroute->bbox.y2 = 0;
iroute->bbox.x1 = NumChannelsX[0];
iroute->bbox.y1 = NumChannelsY[0];
if (iroute->do_pwrbus == FALSE) {
// Set node to PR_SOURCE
rval = set_node_to_net(iroute->nsrc, PR_SOURCE,
&iroute->glist[0], &iroute->bbox, stage);
if (rval == -2) {
unable_to_route(iroute->net->netname, NULL, 0);
return -1;
}
// Set associated routes to PR_SOURCE (okay to fail)
rval = set_routes_to_net(iroute->nsrc, iroute->net, PR_SOURCE,
&iroute->glist[0], &iroute->bbox, stage);
// Now search for all other nodes on the same net that have not
// yet been routed, and flag all of their taps as PR_TARGET
result = 0;
for (node = iroute->net->netnodes; node; node = node->next) {
if (node == iroute->nsrc) continue;
rval = set_node_to_net(node, PR_TARGET, NULL, &iroute->bbox, stage);
if (rval == 0) {
result = 1;
}
else if (rval == -2) {
if (forceRoutable) make_routable(node);
unable_to_route(iroute->net->netname, node, forceRoutable);
if (result == 0) result = -1;
unroutable++;
break;
}
else if (rval == 1) continue; /* This node was part of source */
// And add associated routes
rval = set_routes_to_net(node, iroute->net, PR_TARGET, NULL,
&iroute->bbox, stage);
if (rval == 0) result = 1; /* (okay to fail) */
}
/* If there's only one node and it's not routable, then fail. */
if (result == -1) return -1;
}
else { /* Do this for power bus connections */
while(1) {
rval = set_node_to_net(iroute->nsrc, PR_SOURCE,
&iroute->glist[0], &iroute->bbox, stage);
if (rval == -2) {
iroute->nsrc = iroute->nsrc->next;
if (iroute->nsrc == NULL) break;
}
else break;
}
if (rval == -2) {
if (forceRoutable) make_routable(iroute->net->netnodes);
unable_to_route(iroute->net->netname, iroute->nsrc, forceRoutable);
return -1;
}
/* Set all nodes that are NOT nsrc to an unused net number */
for (node = iroute->net->netnodes; node; node = node->next) {
if (node != iroute->nsrc) {
disable_node_nets(node);
}
}
set_powerbus_to_net(iroute->nsrc->netnum);
}
}
if (!result) {
// Remove nodes of the net from Nodeinfo.nodeloc so that they will not be
// used for crossover costing of future routes.
for (i = 0; i < Pinlayers; i++) {
for (j = 0; j < NumChannelsX[i] * NumChannelsY[i]; j++) {
if (Nodeinfo[i][j]) {
iroute->nsrc = Nodeinfo[i][j]->nodeloc;
if (iroute->nsrc != (NODE)NULL)
if (iroute->nsrc->netnum == iroute->net->netnum)
Nodeinfo[i][j]->nodeloc = (NODE)NULL;
}
}
}
free_glist(iroute);
return 0;
}
// Generate a search area mask representing the "likely best route".
if ((iroute->do_pwrbus == FALSE) && (maskMode == MASK_AUTO)) {
if (stage == 0)
createMask(iroute->net, MASK_SMALL, (u_char)Numpasses);
else
createMask(iroute->net, MASK_LARGE, (u_char)Numpasses);
}
else if ((iroute->do_pwrbus == TRUE) || (maskMode == MASK_NONE))
fillMask((u_char)0);
else if (maskMode == MASK_BBOX)
createBboxMask(iroute->net, (u_char)Numpasses);
else
createMask(iroute->net, maskMode, (u_char)Numpasses);
// Heuristic: Set the initial cost beyond which we stop searching.
// This value is twice the cost of a direct route across the
// maximum extent of the source to target, divided by the square
// root of the number of nodes in the net. We purposely set this
// value low. It has a severe impact on the total run time of the
// algorithm. If the initial max cost is so low that no route can
// be found, it will be doubled on each pass.
if (iroute->do_pwrbus)
iroute->maxcost = 20; // Maybe make this SegCost * row height?
else {
iroute->maxcost = 1 + 2 * MAX((iroute->bbox.x2 - iroute->bbox.x1),
(iroute->bbox.y2 - iroute->bbox.y1))
* SegCost + (int)stage * ConflictCost;
iroute->maxcost /= (iroute->nsrc->numnodes - 1);
}
netnum = iroute->net->netnum;
iroute->nsrctap = iroute->nsrc->taps;
if (iroute->nsrctap == NULL) iroute->nsrctap = iroute->nsrc->extend;
if (iroute->nsrctap == NULL) {
unable_to_route(iroute->net->netname, iroute->nsrc, 0);
return -1;
}
if (Verbose > 2) {
Fprintf(stdout, "Source node @ %gum %gum layer=%d grid=(%d %d)\n",
iroute->nsrctap->x, iroute->nsrctap->y, iroute->nsrctap->layer,
iroute->nsrctap->gridx, iroute->nsrctap->gridy);
}
if (Verbose > 1) {
Fprintf(stdout, "netname = %s, route number %d\n", iroute->net->netname,
TotalRoutes );
Flush(stdout);
}
// Successful setup, although if nodes were marked unroutable,
// this information is passed back; routing will proceed for
// all routable nodes and the net will be then marked as
// abandoned.
return (unroutable + 1);
}
/*--------------------------------------------------------------*/
/* route_segs - detailed route from node to node using onestep */
/* method */
/* */
/* ARGS: ROUTE, ready to add segments to do route */
/* RETURNS: NULL if failed, manhattan distance if success */
/* SIDE EFFECTS: */
/* AUTHOR and DATE: steve beccue Fri Aug 8 */
/*--------------------------------------------------------------*/
static int route_segs(struct routeinfo_ *iroute, u_char stage, u_char graphdebug)
{
POINT gpoint, gunproc, newpt;
int i, o;
int pass, maskpass;
u_int forbid;
GRIDP best, curpt;
int rval;
u_char first = TRUE;
u_char check_order[6];
u_char max_reached;
u_char conflict;
u_char predecessor;
PROUTE *Pr;
best.cost = MAXRT;
best.x = 0;
best.y = 0;
best.lay = 0;
gunproc = (POINT)NULL;
maskpass = 0;
for (pass = 0; pass < Numpasses; pass++) {
max_reached = FALSE;
if (!first && (Verbose > 2)) {
Fprintf(stdout, "\n");
first = TRUE;
}
if (Verbose > 2) {
Fprintf(stdout, "Pass %d", pass + 1);
Fprintf(stdout, " (maxcost is %d)\n", iroute->maxcost);
}
while (TRUE) {
// Check priority stack and move down if 1st priorty is empty
while (iroute->glist[0] == NULL) {
for (i = 0; i < 5; i++)
iroute->glist[i] = iroute->glist[i + 1];
iroute->glist[5] = NULL;
if ((iroute->glist[0] == NULL) && (iroute->glist[1] == NULL) &&
(iroute->glist[2] == NULL) && (iroute->glist[3] == NULL) &&
(iroute->glist[4] == NULL))
break;
}
gpoint = iroute->glist[0];
if (gpoint == NULL) break;
iroute->glist[0] = gpoint->next;
curpt.x = gpoint->x1;
curpt.y = gpoint->y1;
curpt.lay = gpoint->layer;
if (graphdebug) highlight(curpt.x, curpt.y);
Pr = &OBS2VAL(curpt.x, curpt.y, curpt.lay);
// ignore grid positions that have already been processed
if (Pr->flags & PR_PROCESSED) {
Pr->flags &= ~PR_ON_STACK;
freePOINT(gpoint);
continue;
}
if (Pr->flags & PR_COST)
curpt.cost = Pr->prdata.cost; // Route points, including target
else
curpt.cost = 0; // For source tap points
// if the grid position is the destination, save the position and
// cost if minimum.
if (Pr->flags & PR_TARGET) {
if (curpt.cost < best.cost) {
if (first) {
if (Verbose > 2)
Fprintf(stdout, "Found a route of cost ");
first = FALSE;
}
else if (Verbose > 2) {
Fprintf(stdout, "|");
Fprintf(stdout, "%d", curpt.cost);
Flush(stdout);
}
// This position may be on a route, not at a terminal, so
// record it.
best.x = curpt.x;
best.y = curpt.y;
best.lay = curpt.lay;
best.cost = curpt.cost;
// If a complete route has been found, then there's no point
// in searching paths with a greater cost than this one.
if (best.cost < iroute->maxcost) iroute->maxcost = best.cost;
}
// Don't continue processing from the target
Pr->flags |= PR_PROCESSED;
Pr->flags &= ~PR_ON_STACK;
freePOINT(gpoint);
continue;
}
if (curpt.cost < MAXRT) {
// Severely limit the search space by not processing anything that
// is not under the current route mask, which identifies a narrow
// "best route" solution.
if (RMASK(curpt.x, curpt.y) > (u_char)maskpass) {
gpoint->next = gunproc;
gunproc = gpoint;
continue;
}
// Quick check: Limit maximum cost to limit search space
// Move the point onto the "unprocessed" stack and we'll pick up
// from this point on the next pass, if needed.
if (curpt.cost > iroute->maxcost) {
max_reached = TRUE;
gpoint->next = gunproc;
gunproc = gpoint;
continue;
}
}
Pr->flags &= ~PR_ON_STACK;
freePOINT(gpoint);
// check east/west/north/south, and bottom to top
// 1st optimization: Direction of route on current layer is preferred.
o = LefGetRouteOrientation(curpt.lay);
forbid = OBSVAL(curpt.x, curpt.y, curpt.lay) & BLOCKED_MASK;
// To reach otherwise unreachable taps, allow searching on blocked
// paths but with a high cost.
conflict = (forceRoutable) ? PR_CONFLICT : PR_NO_EVAL;
if (o == 1) { // horizontal routes---check EAST and WEST first
check_order[0] = EAST | ((forbid & BLOCKED_E) ? conflict : 0);
check_order[1] = WEST | ((forbid & BLOCKED_W) ? conflict : 0);
check_order[2] = UP | ((forbid & BLOCKED_U) ? conflict : 0);
check_order[3] = DOWN | ((forbid & BLOCKED_D) ? conflict : 0);
check_order[4] = NORTH | ((forbid & BLOCKED_N) ? conflict : 0);
check_order[5] = SOUTH | ((forbid & BLOCKED_S) ? conflict : 0);
}
else { // vertical routes---check NORTH and SOUTH first
check_order[0] = NORTH | ((forbid & BLOCKED_N) ? conflict : 0);
check_order[1] = SOUTH | ((forbid & BLOCKED_S) ? conflict : 0);
check_order[2] = UP | ((forbid & BLOCKED_U) ? conflict : 0);
check_order[3] = DOWN | ((forbid & BLOCKED_D) ? conflict : 0);
check_order[4] = EAST | ((forbid & BLOCKED_E) ? conflict : 0);
check_order[5] = WEST | ((forbid & BLOCKED_W) ? conflict : 0);
}
// Check order is from 0 (1st priority) to 5 (last priority). However, this
// is a stack system, so the last one placed on the stack is the first to be
// pulled and processed. Therefore we evaluate and drop positions to check
// on the stack in reverse order (5 to 0).
for (i = 5; i >= 0; i--) {
predecessor = 0;
switch (check_order[i]) {
case EAST | PR_CONFLICT:
predecessor = PR_CONFLICT;
case EAST:
predecessor |= PR_PRED_W;
if ((curpt.x + 1) < NumChannelsX[curpt.lay]) {
if ((gpoint = eval_pt(&curpt, predecessor, stage)) != NULL) {
gpoint->next = iroute->glist[i];
iroute->glist[i] = gpoint;
}
}
break;
case WEST | PR_CONFLICT:
predecessor = PR_CONFLICT;
case WEST:
predecessor |= PR_PRED_E;
if ((curpt.x - 1) >= 0) {
if ((gpoint = eval_pt(&curpt, predecessor, stage)) != NULL) {
gpoint->next = iroute->glist[i];
iroute->glist[i] = gpoint;
}
}
break;
case SOUTH | PR_CONFLICT:
predecessor = PR_CONFLICT;
case SOUTH:
predecessor |= PR_PRED_N;
if ((curpt.y - 1) >= 0) {
if ((gpoint = eval_pt(&curpt, predecessor, stage)) != NULL) {
gpoint->next = iroute->glist[i];
iroute->glist[i] = gpoint;
}
}
break;
case NORTH | PR_CONFLICT:
predecessor = PR_CONFLICT;
case NORTH:
predecessor |= PR_PRED_S;
if ((curpt.y + 1) < NumChannelsY[curpt.lay]) {
if ((gpoint = eval_pt(&curpt, predecessor, stage)) != NULL) {
gpoint->next = iroute->glist[i];
iroute->glist[i] = gpoint;
}
}
break;
case DOWN | PR_CONFLICT:
predecessor = PR_CONFLICT;
case DOWN:
predecessor |= PR_PRED_U;
if (curpt.lay > 0) {
if ((gpoint = eval_pt(&curpt, predecessor, stage)) != NULL) {
gpoint->next = iroute->glist[i];
iroute->glist[i] = gpoint;
}
}
break;
case UP | PR_CONFLICT:
predecessor = PR_CONFLICT;
case UP:
predecessor |= PR_PRED_D;
if (curpt.lay < (Num_layers - 1)) {
if ((gpoint = eval_pt(&curpt, predecessor, stage)) != NULL) {
gpoint->next = iroute->glist[i];
iroute->glist[i] = gpoint;
}
}
break;
}
}
// Mark this node as processed
Pr->flags |= PR_PROCESSED;
} // while stack is not empty
free_glist(iroute);
// If we found a route, save it and return
if (best.cost <= iroute->maxcost) {
curpt.x = best.x;
curpt.y = best.y;
curpt.lay = best.lay;
if ((rval = commit_proute(iroute->rt, &curpt, stage)) != 1) break;
if (Verbose > 2) {
Fprintf(stdout, "\nCommit to a route of cost %d\n", best.cost);
Fprintf(stdout, "Between positions (%d %d) and (%d %d)\n",
best.x, best.y, curpt.x, curpt.y);
}
route_set_connections(iroute->net, iroute->rt);
goto done; /* route success */
}
// Continue loop to next pass if any positions were ignored due to
// masking or due to exceeding maxcost.
// If the cost of the route exceeded maxcost at one or more locations,
// then increase maximum cost for next pass.
if (max_reached == TRUE) {
iroute->maxcost <<= 1;
// Cost overflow; we're probably completely hosed long before this.
if (iroute->maxcost > MAXRT) break;
}
else
maskpass++; // Increase the mask size
if (gunproc == NULL) break; // route failure not due to limiting
// search to maxcost or to masking
// Regenerate the stack of unprocessed nodes
iroute->glist[0] = gunproc;
gunproc = NULL;
} // pass
if (!first && (Verbose > 2)) {
Fprintf(stdout, "\n");
Flush(stdout);
}
if (Verbose > 1) {
Fprintf(stderr, "Fell through %d passes\n", pass);
}
if (!iroute->do_pwrbus && (Verbose > 2)) {
Fprintf(stderr, "(%g,%g) net=%s\n",
iroute->nsrctap->x, iroute->nsrctap->y, iroute->net->netname);
}
rval = -1;
done:
// Regenerate the stack of unprocessed nodes
if (gunproc != NULL) iroute->glist[0] = gunproc;
return rval;
} /* route_segs() */
/*--------------------------------------------------------------*/
/* createemptyroute - begin a ROUTE structure */
/* */
/* ARGS: a nodes */
/* RETURNS: ROUTE calloc'd and ready to begin */
/* SIDE EFFECTS: */
/* AUTHOR and DATE: steve beccue Fri Aug 8 */
/*--------------------------------------------------------------*/
static ROUTE createemptyroute(void)
{
ROUTE rt;
rt = (ROUTE)calloc(1, sizeof(struct route_));
rt->netnum = 0;
rt->segments = (SEG)NULL;
rt->flags = (u_char)0;
rt->next = (ROUTE)NULL;
rt->start.route = (ROUTE)NULL;
rt->end.route = (ROUTE)NULL;
return rt;
} /* createemptyroute(void) */
/*--------------------------------------------------------------*/
/* helpmessage - tell user how to use the program */
/* */
/* ARGS: none. */
/* RETURNS: nothing. */
/* SIDE EFFECTS: */
/* */
/* NOTES: */
/* 1) "qrouter -v0 -h" prints only the version number and exits */
/* 2) Tcl-Tk based version adds ".T" to the end to alert tools */
/* attempting to query the capabilities of qrouter of the */
/* availability of the scripting. */
/* */
/*--------------------------------------------------------------*/
static void helpmessage(void)
{
if (Verbose > 0) {
Fprintf(stdout, "qrouter - maze router by Tim Edwards\n\n");
Fprintf(stdout, "usage: qrouter [-switches] design_name\n\n");
Fprintf(stdout, "switches:\n");
Fprintf(stdout, "\t-c <file>\t\t\tConfiguration file name if not route.cfg.\n");
Fprintf(stdout, "\t-d <file>\t\t\tGenerate delay information output.\n");
Fprintf(stdout, "\t-v <level>\t\t\tVerbose output level.\n");
Fprintf(stdout, "\t-i <file>\t\t\tPrint route names and pitches and exit.\n");
Fprintf(stdout, "\t-p <name>\t\t\tSpecify global power bus name.\n");
Fprintf(stdout, "\t-g <name>\t\t\tSpecify global ground bus name.\n");
Fprintf(stdout, "\t-r <value>\t\t\tForce output resolution scale.\n");
Fprintf(stdout, "\t-f \t\t\tForce all pins to be routable.\n");
Fprintf(stdout, "\t-e <level>\t\t\tLevel of effort to keep trying.\n");
Fprintf(stdout, "\n");
}
#ifdef TCL_QROUTER
Fprintf(stdout, "%s.%s.T\n", VERSION, REVISION);
#else
Fprintf(stdout, "%s.%s\n", VERSION, REVISION);
#endif
} /* helpmessage() */
/* end of qrouter.c */
|