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
|
diff -N -C 2 -r ckit/README.mlton ckit-mlton/README.mlton
*** ckit/README.mlton 1969-12-31 19:00:00.000000000 -0500
--- ckit-mlton/README.mlton 2010-02-18 11:59:02.000000000 -0500
***************
*** 0 ****
--- 1,14 ----
+ The following changes were made to the ckit Library, in addition to
+ deriving the {{{.mlb}}} file from the {{{.cm}}} files:
+ * {{{parser/parse-tree-sig.sml}}} (modified): Rewrote use of (sequential) {{{withtype}}} in signature.
+ * {{{parser/parse-tree.sml}}} (modified): Rewrote use of (sequential) {{{withtype}}}.
+ * {{{parser/grammar/c.lex.sml}}} (modified): Rewrote use of vector literal.
+ * {{{ast/ast-sig.sml}}} (modified): Rewrote use of {{{withtype}}} in signature.
+ * {{{ast/pp/pp-lib.sml}}} (modified): Rewrote use of ''or-patterns''.
+ * {{{ast/pp/pp-ast-ext-sig.sml}}} (modified): Rewrote use of {{{signature}}} in {{{local}}}.
+ * {{{ast/pp/pp-ast-adornment-sig.sml}}} (modified): Rewrote use of {{{signature}}} in {{{local}}}.
+ * {{{ast/type-util-sig.sml}}} (modified): Rewrote use of {{{signature}}} in {{{local}}}.
+ * {{{ast/type-util.sml}}} (modified): Rewrote use of ''or-patterns''.
+ * {{{ast/sizeof.sml}}} (modified): Rewrote use of ''or-patterns''.
+ * {{{ast/initializer-normalizer.sml}}} (modified): Rewrote use of ''or-patterns''.
+ * {{{ast/build-ast.sml}}} (modified): Rewrote use of ''or-patterns''.
diff -N -C 2 -r ckit/ckit-lib.mlb ckit-mlton/ckit-lib.mlb
*** ckit/ckit-lib.mlb 1969-12-31 19:00:00.000000000 -0500
--- ckit-mlton/ckit-lib.mlb 2009-03-27 18:24:18.000000000 -0400
***************
*** 0 ****
--- 1 ----
+ src/ckit-lib.mlb
diff -N -C 2 -r ckit/src/ast/ast-sig.sml ckit-mlton/src/ast/ast-sig.sml
*** ckit/src/ast/ast-sig.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/ast/ast-sig.sml 2009-03-27 18:28:04.000000000 -0400
***************
*** 68,72 ****
= TypeDecl of {shadow: {strct:bool} option, tid:tid}
(* placeholder to indicate where typedefs/enums/structs should be printed *)
! | VarDecl of id * initExpression option
--- 68,77 ----
= TypeDecl of {shadow: {strct:bool} option, tid:tid}
(* placeholder to indicate where typedefs/enums/structs should be printed *)
! | VarDecl of
! (* id *) {name: Symbol.symbol, uid: Pid.uid,
! location: SourceMap.location, ctype: ctype,
! stClass: storageClass, status: declStatus,
! global: bool, kind: idKind} *
! initExpression option
***************
*** 107,112 ****
| Comma of expression * expression
| Sub of expression * expression
! | Member of expression * member
! | Arrow of expression * member
| Deref of expression
| AddrOf of expression
--- 112,125 ----
| Comma of expression * expression
| Sub of expression * expression
! | Member of
! expression *
! (* member *) {name: Symbol.symbol, uid : Pid.uid,
! location : SourceMap.location,
! ctype: ctype, kind: memberKind}
! | Arrow of
! expression *
! (* member *) {name: Symbol.symbol, uid : Pid.uid,
! location : SourceMap.location,
! ctype: ctype, kind: memberKind}
| Deref of expression
| AddrOf of expression
***************
*** 114,119 ****
| Unop of unop * expression
| Cast of ctype * expression
! | Id of id
! | EnumId of member * LargeInt.int
| SizeOf of ctype (* not used in compiler mode; sizeof expr becomes sizeof (typeof expr) *)
| ExprExt of (expression, statement, binop, unop) AstExt.expressionExt
--- 127,140 ----
| Unop of unop * expression
| Cast of ctype * expression
! | Id of
! (* id *) {name: Symbol.symbol, uid: Pid.uid,
! location: SourceMap.location, ctype: ctype,
! stClass: storageClass, status: declStatus,
! global: bool, kind: idKind}
! | EnumId of
! (* member *) {name: Symbol.symbol, uid : Pid.uid,
! location : SourceMap.location,
! ctype: ctype, kind: memberKind} *
! LargeInt.int
| SizeOf of ctype (* not used in compiler mode; sizeof expr becomes sizeof (typeof expr) *)
| ExprExt of (expression, statement, binop, unop) AstExt.expressionExt
***************
*** 132,136 ****
| Array of (LargeInt.int * expression) option * ctype
| Pointer of ctype
! | Function of ctype * (ctype * id option) list
| StructRef of tid (* reference to a tid bound by a struct decl *)
| UnionRef of tid (* reference to a tid bound by a union decl *)
--- 153,163 ----
| Array of (LargeInt.int * expression) option * ctype
| Pointer of ctype
! | Function of
! ctype *
! (ctype *
! (* id *) {name: Symbol.symbol, uid: Pid.uid,
! location: SourceMap.location, ctype: ctype,
! stClass: storageClass, status: declStatus,
! global: bool, kind: idKind} option) list
| StructRef of tid (* reference to a tid bound by a struct decl *)
| UnionRef of tid (* reference to a tid bound by a union decl *)
***************
*** 152,156 ****
| ENUMmem of LargeInt.int
! withtype member =
{name: Symbol.symbol, (* the name of the member *)
uid : Pid.uid, (* unique identifier *)
--- 179,183 ----
| ENUMmem of LargeInt.int
! type member =
{name: Symbol.symbol, (* the name of the member *)
uid : Pid.uid, (* unique identifier *)
diff -N -C 2 -r ckit/src/ast/build-ast.sml ckit-mlton/src/ast/build-ast.sml
*** ckit/src/ast/build-ast.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/ast/build-ast.sml 2009-03-27 18:28:04.000000000 -0400
***************
*** 291,295 ****
| _ => false
! fun isPartialTy(Ast.StructRef tid | Ast.UnionRef tid) = isPartial tid
| isPartialTy _ = false
--- 291,296 ----
| _ => false
! fun isPartialTy(Ast.StructRef tid) = isPartial tid
! | isPartialTy(Ast.UnionRef tid) = isPartial tid
| isPartialTy _ = false
***************
*** 444,448 ****
of Ast.Member(Ast.EXPR (expr'', aid, _), _) =>
isLval (expr'', lookAid aid)
! | (Ast.Id _ | Ast.Sub _ | Ast.Arrow _ | Ast.Deref _) => true
| _ => false
--- 445,452 ----
of Ast.Member(Ast.EXPR (expr'', aid, _), _) =>
isLval (expr'', lookAid aid)
! | Ast.Id _ => true
! | Ast.Sub _ => true
! | Ast.Arrow _ => true
! | Ast.Deref _ => true
| _ => false
***************
*** 603,607 ****
! fun TCInitializer(ctype as (Ast.TypeRef _ | Ast.Qual _), expr) =
TCInitializer(getCoreType ctype, expr) (* the following TCInitializer cases expect coretypes *)
| TCInitializer (Ast.Array(opt, ctype), Ast.Aggregate exprs) =
--- 607,613 ----
! fun TCInitializer(ctype as Ast.TypeRef _, expr) =
! TCInitializer(getCoreType ctype, expr) (* the following TCInitializer cases expect coretypes *)
! | TCInitializer(ctype as Ast.Qual _, expr) =
TCInitializer(getCoreType ctype, expr) (* the following TCInitializer cases expect coretypes *)
| TCInitializer (Ast.Array(opt, ctype), Ast.Aggregate exprs) =
***************
*** 651,655 ****
| NONE => bug "TCInitializer: lookTid failed"
| _ => error "TCInitializer: ill-formed UnionRef type")
! | TCInitializer (ty as (Ast.StructRef _ | Ast.UnionRef _), Ast.Simple(Ast.EXPR(coreExp, aid, _))) =
if isAssignableTys {lhsTy=ty, rhsTy=lookAid aid, rhsExprOpt=SOME coreExp}
then ()
--- 657,665 ----
| NONE => bug "TCInitializer: lookTid failed"
| _ => error "TCInitializer: ill-formed UnionRef type")
! | TCInitializer (ty as Ast.StructRef _, Ast.Simple(Ast.EXPR(coreExp, aid, _))) =
! if isAssignableTys {lhsTy=ty, rhsTy=lookAid aid, rhsExprOpt=SOME coreExp}
! then ()
! else error "type of initializer is incompatible with type of lval"
! | TCInitializer (ty as Ast.UnionRef _, Ast.Simple(Ast.EXPR(coreExp, aid, _))) =
if isAssignableTys {lhsTy=ty, rhsTy=lookAid aid, rhsExprOpt=SOME coreExp}
then ()
***************
*** 805,809 ****
*)
(* Note: should really reduce constants arith exprs to simple constants *)
! fun constCheck(Ast.EXPR((Ast.StringConst _ | Ast.IntConst _ | Ast.RealConst _),_,_)) = true
| constCheck(Ast.EXPR(Ast.QuestionColon(e1, e2, e3), _, _))
= constCheck e1 andalso constCheck e2 andalso constCheck e3
--- 815,821 ----
*)
(* Note: should really reduce constants arith exprs to simple constants *)
! fun constCheck(Ast.EXPR(Ast.StringConst _,_,_)) = true
! | constCheck(Ast.EXPR(Ast.IntConst _,_,_)) = true
! | constCheck(Ast.EXPR(Ast.RealConst _,_,_)) = true
| constCheck(Ast.EXPR(Ast.QuestionColon(e1, e2, e3), _, _))
= constCheck e1 andalso constCheck e2 andalso constCheck e3
***************
*** 2372,2376 ****
of PT.Signed =>
(case !kind
! of SOME (Ast.FLOAT | Ast.DOUBLE | Ast.LONGDOUBLE) =>
error "illegal combination of signed with float/double/long double"
| _ => ();
--- 2384,2392 ----
of PT.Signed =>
(case !kind
! of SOME Ast.FLOAT =>
! error "illegal combination of signed with float/double/long double"
! | SOME Ast.DOUBLE =>
! error "illegal combination of signed with float/double/long double"
! | SOME Ast.LONGDOUBLE =>
error "illegal combination of signed with float/double/long double"
| _ => ();
***************
*** 2380,2384 ****
| PT.Unsigned =>
(case !kind
! of SOME (Ast.FLOAT | Ast.DOUBLE | Ast.LONGDOUBLE) =>
error "illegal combination of unsigned with float/double/long double"
| _ => ();
--- 2396,2404 ----
| PT.Unsigned =>
(case !kind
! of SOME Ast.FLOAT =>
! error "illegal combination of unsigned with float/double/long double"
! | SOME Ast.DOUBLE =>
! error "illegal combination of unsigned with float/double/long double"
! | SOME Ast.LONGDOUBLE =>
error "illegal combination of unsigned with float/double/long double"
| _ => ();
***************
*** 2395,2399 ****
| PT.Short =>
(case !kind
! of (NONE | SOME Ast.INT) => (kind := SOME Ast.SHORT)
| SOME ct =>
error (case ct
--- 2415,2420 ----
| PT.Short =>
(case !kind
! of NONE => (kind := SOME Ast.SHORT)
! | SOME Ast.INT => (kind := SOME Ast.SHORT)
| SOME ct =>
error (case ct
***************
*** 2403,2407 ****
(case !kind
of NONE => (kind := SOME Ast.INT)
! | SOME (Ast.SHORT | Ast.LONG | Ast.LONGLONG) => ()
| SOME ct =>
error (case ct
--- 2424,2430 ----
(case !kind
of NONE => (kind := SOME Ast.INT)
! | SOME Ast.SHORT => ()
! | SOME Ast.LONG => ()
! | SOME Ast.LONGLONG => ()
| SOME ct =>
error (case ct
***************
*** 2688,2692 ****
of SOME(TAG{ctype=ty,location=loc',...}) =>
(case ty
! of (Ast.UnionRef tid | Ast.StructRef tid) =>
if isPartial tid
then SOME{tid=tid, alreadyDefined=false}
--- 2711,2725 ----
of SOME(TAG{ctype=ty,location=loc',...}) =>
(case ty
! of Ast.UnionRef tid =>
! if isPartial tid
! then SOME{tid=tid, alreadyDefined=false}
! else if repeated_declarations_ok
! then SOME{tid=tid, alreadyDefined=true}
! else (error("Redeclaration of type tag `"
! ^ tagname
! ^ "'; previous declaration at "
! ^ SM.locToString loc');
! NONE)
! | Ast.StructRef tid =>
if isPartial tid
then SOME{tid=tid, alreadyDefined=false}
diff -N -C 2 -r ckit/src/ast/initializer-normalizer.sml ckit-mlton/src/ast/initializer-normalizer.sml
*** ckit/src/ast/initializer-normalizer.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/ast/initializer-normalizer.sml 2009-03-27 18:28:04.000000000 -0400
***************
*** 157,161 ****
| SOME _ => fail "Incomplete type for union ref"
| NONE => fail "Inconsistent table for union ref")
! | (Ast.Numeric _ | Ast.Pointer _ | Ast.Function _ | Ast.EnumRef _) =>
feed (scalarNorm ctype, inits)
| Ast.Void => fail "Incomplete type: void"
--- 157,167 ----
| SOME _ => fail "Incomplete type for union ref"
| NONE => fail "Inconsistent table for union ref")
! | Ast.Numeric _ =>
! feed (scalarNorm ctype, inits)
! | Ast.Pointer _ =>
! feed (scalarNorm ctype, inits)
! | Ast.Function _ =>
! feed (scalarNorm ctype, inits)
! | Ast.EnumRef _ =>
feed (scalarNorm ctype, inits)
| Ast.Void => fail "Incomplete type: void"
diff -N -C 2 -r ckit/src/ast/pp/pp-ast-adornment-sig.sml ckit-mlton/src/ast/pp/pp-ast-adornment-sig.sml
*** ckit/src/ast/pp/pp-ast-adornment-sig.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/ast/pp/pp-ast-adornment-sig.sml 2009-03-27 18:29:56.000000000 -0400
***************
*** 1,9 ****
(* Copyright (c) 1998 by Lucent Technologies *)
! local
type 'a pp = Tables.tidtab -> OldPrettyPrint.ppstream -> 'a -> unit
type ('aidinfo,'a,'b) adornment_pp = ('aidinfo -> 'a) -> 'aidinfo -> 'b
! in
signature PPASTADORNMENT = sig
type aidinfo
--- 1,9 ----
(* Copyright (c) 1998 by Lucent Technologies *)
! (* local *)
type 'a pp = Tables.tidtab -> OldPrettyPrint.ppstream -> 'a -> unit
type ('aidinfo,'a,'b) adornment_pp = ('aidinfo -> 'a) -> 'aidinfo -> 'b
! (* in *)
signature PPASTADORNMENT = sig
type aidinfo
***************
*** 12,14 ****
val ppExternalDeclAdornment: (aidinfo,Ast.coreExternalDecl pp,Ast.externalDecl pp) adornment_pp
end
! end
--- 12,14 ----
val ppExternalDeclAdornment: (aidinfo,Ast.coreExternalDecl pp,Ast.externalDecl pp) adornment_pp
end
! (* end *)
diff -N -C 2 -r ckit/src/ast/pp/pp-ast-ext-sig.sml ckit-mlton/src/ast/pp/pp-ast-ext-sig.sml
*** ckit/src/ast/pp/pp-ast-ext-sig.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/ast/pp/pp-ast-ext-sig.sml 2009-03-27 18:29:56.000000000 -0400
***************
*** 1,5 ****
(* Copyright (c) 1998 by Lucent Technologies *)
! local
type 'a pp = Tables.tidtab -> OldPrettyPrint.ppstream -> 'a -> unit
type ('a, 'aidinfo) ppExt =
--- 1,5 ----
(* Copyright (c) 1998 by Lucent Technologies *)
! (* local *)
type 'a pp = Tables.tidtab -> OldPrettyPrint.ppstream -> 'a -> unit
type ('a, 'aidinfo) ppExt =
***************
*** 8,12 ****
-> 'aidinfo
-> Tables.tidtab -> OldPrettyPrint.ppstream -> 'a -> unit
! in
signature PPASTEXT = sig
--- 8,12 ----
-> 'aidinfo
-> Tables.tidtab -> OldPrettyPrint.ppstream -> 'a -> unit
! (* in *)
signature PPASTEXT = sig
***************
*** 25,27 ****
end
! end
--- 25,27 ----
end
! (* end *)
diff -N -C 2 -r ckit/src/ast/pp/pp-lib.sml ckit-mlton/src/ast/pp/pp-lib.sml
*** ckit/src/ast/pp/pp-lib.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/ast/pp/pp-lib.sml 2009-03-27 18:29:56.000000000 -0400
***************
*** 116,120 ****
fun ppId pps ({name,uid,kind,stClass,global,...}: Ast.id) =
case (stClass,global)
! of ((Ast.EXTERN,_) | (_, true)) => (* globals *)
if !suppressPidGlobalUnderscores then ppSymbol' pps name
else ppSymbol pps (name,uid)
--- 116,123 ----
fun ppId pps ({name,uid,kind,stClass,global,...}: Ast.id) =
case (stClass,global)
! of (Ast.EXTERN,_) => (* globals *)
! if !suppressPidGlobalUnderscores then ppSymbol' pps name
! else ppSymbol pps (name,uid)
! | (_, true) => (* globals *)
if !suppressPidGlobalUnderscores then ppSymbol' pps name
else ppSymbol pps (name,uid)
diff -N -C 2 -r ckit/src/ast/sizeof.sml ckit-mlton/src/ast/sizeof.sml
*** ckit/src/ast/sizeof.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/ast/sizeof.sml 2009-03-27 18:28:04.000000000 -0400
***************
*** 322,326 ****
case ty
of Ast.TypeRef tid => processTid sizesErrWarnBug tidtab tid
! | (Ast.StructRef tid | Ast.UnionRef tid) =>
processTid sizesErrWarnBug tidtab tid
| Ast.EnumRef _ =>
--- 322,328 ----
case ty
of Ast.TypeRef tid => processTid sizesErrWarnBug tidtab tid
! | Ast.StructRef tid =>
! processTid sizesErrWarnBug tidtab tid
! | Ast.UnionRef tid =>
processTid sizesErrWarnBug tidtab tid
| Ast.EnumRef _ =>
diff -N -C 2 -r ckit/src/ast/type-util-sig.sml ckit-mlton/src/ast/type-util-sig.sml
*** ckit/src/ast/type-util-sig.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/ast/type-util-sig.sml 2009-03-27 18:28:04.000000000 -0400
***************
*** 1,9 ****
(* Copyright (c) 1998 by Lucent Technologies *)
! local
type 'a type_util = Tables.tidtab -> Ast.ctype -> 'a
type 'a type_mem_util = Tables.tidtab -> Ast.ctype * Ast.member -> 'a
type 'a type_type_util = Tables.tidtab -> Ast.ctype * Ast.ctype -> 'a
! in
signature TYPE_UTIL =
--- 1,9 ----
(* Copyright (c) 1998 by Lucent Technologies *)
! (* local *)
type 'a type_util = Tables.tidtab -> Ast.ctype -> 'a
type 'a type_mem_util = Tables.tidtab -> Ast.ctype * Ast.member -> 'a
type 'a type_type_util = Tables.tidtab -> Ast.ctype * Ast.ctype -> 'a
! (* in *)
signature TYPE_UTIL =
***************
*** 146,148 ****
end (* signature TYPE_UTIL *)
! end (* local *)
--- 146,148 ----
end (* signature TYPE_UTIL *)
! (* end (* local *) *)
diff -N -C 2 -r ckit/src/ast/type-util.sml ckit-mlton/src/ast/type-util.sml
*** ckit/src/ast/type-util.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/ast/type-util.sml 2009-03-27 18:28:04.000000000 -0400
***************
*** 283,287 ****
case reduceTypedef tidtab ty
of Ast.Qual (_,ty) => isStructOrUnion tidtab ty
! | (Ast.StructRef tid | Ast.UnionRef tid) => SOME tid
| _ => NONE
--- 283,288 ----
case reduceTypedef tidtab ty
of Ast.Qual (_,ty) => isStructOrUnion tidtab ty
! | Ast.StructRef tid => SOME tid
! | Ast.UnionRef tid => SOME tid
| _ => NONE
***************
*** 554,558 ****
(SOME ct, eml) => (SOME(Pointer ct), eml)
| (NONE, eml) => (NONE, eml))
! | ((StructRef tid1, StructRef tid2) | (UnionRef tid1, UnionRef tid2)) =>
if Tid.equal (tid1, tid2) then (SOME ty1, nil) else (NONE, nil)
| _ => (NONE, nil)
--- 555,561 ----
(SOME ct, eml) => (SOME(Pointer ct), eml)
| (NONE, eml) => (NONE, eml))
! | (StructRef tid1, StructRef tid2) =>
! if Tid.equal (tid1, tid2) then (SOME ty1, nil) else (NONE, nil)
! | (UnionRef tid1, UnionRef tid2) =>
if Tid.equal (tid1, tid2) then (SOME ty1, nil) else (NONE, nil)
| _ => (NONE, nil)
***************
*** 652,657 ****
(case (usualUnaryCnv tidtab ty1, exp1Zero, usualUnaryCnv tidtab ty2, exp2Zero) of
(Ast.Numeric _, _, Ast.Numeric _, _) => usualBinaryCnv tidtab (ty1, ty2) (* get common type *)
! | ((Ast.StructRef tid1, _, Ast.StructRef tid2, _) |
! (Ast.UnionRef tid1, _, Ast.UnionRef tid2, _)) =>
if Tid.equal (tid1, tid2) then SOME ty1
else NONE
--- 655,662 ----
(case (usualUnaryCnv tidtab ty1, exp1Zero, usualUnaryCnv tidtab ty2, exp2Zero) of
(Ast.Numeric _, _, Ast.Numeric _, _) => usualBinaryCnv tidtab (ty1, ty2) (* get common type *)
! | (Ast.StructRef tid1, _, Ast.StructRef tid2, _) =>
! if Tid.equal (tid1, tid2) then SOME ty1
! else NONE
! | (Ast.UnionRef tid1, _, Ast.UnionRef tid2, _) =>
if Tid.equal (tid1, tid2) then SOME ty1
else NONE
***************
*** 746,752 ****
* is a function of no args *)
*)
! | ((_, nil, _) | (_, _, nil)) => ( ["Type Warning: function call has too few args"]
! , nil
! )
| (nil, argl, _) => (["Type Warning: function call has too many args"]
, List.map (functionArgConv tidtab) argl
--- 751,760 ----
* is a function of no args *)
*)
! | (_, nil, _) => (["Type Warning: function call has too few args"]
! , nil
! )
! | (_, _, nil) => (["Type Warning: function call has too few args"]
! , nil
! )
| (nil, argl, _) => (["Type Warning: function call has too many args"]
, List.map (functionArgConv tidtab) argl
diff -N -C 2 -r ckit/src/ckit-lib.mlb ckit-mlton/src/ckit-lib.mlb
*** ckit/src/ckit-lib.mlb 1969-12-31 19:00:00.000000000 -0500
--- ckit-mlton/src/ckit-lib.mlb 2010-04-02 16:08:40.000000000 -0400
***************
*** 0 ****
--- 1,888 ----
+
+ ann
+ "nonexhaustiveMatch warn" "redundantMatch warn"
+ "sequenceNonUnit ignore"
+ "warnUnused false" "forceUsed"
+ in
+
+ local
+ basis l4 =
+ bas
+ (* $/basis.cm ====> *) $(SML_LIB)/basis/basis.mlb
+ end
+ basis l24 =
+ bas
+ (* $/smlnj-lib.cm ====> *) $(SML_LIB)/smlnj-lib/Util/smlnj-lib.mlb
+ end
+ basis l71 =
+ bas
+ (* $/pp-lib.cm ====> *) $(SML_LIB)/smlnj-lib/PP/pp-lib.mlb
+ end
+ basis l96 =
+ bas
+ (* $/ml-yacc-lib.cm ====> *) $(SML_LIB)/mlyacc-lib/mlyacc-lib.mlb
+ end
+ in
+ local
+ $(SML_LIB)/basis/pervasive.mlb
+ local
+ open l4
+ in
+ structure gs_0 = TextIO
+ end
+ local
+ variants/type-check-control-sig.sml
+ in
+ signature gs_1 = TYPECHECKCONTROL
+ end
+ local
+ variants/parse-control-sig.sml
+ in
+ signature gs_2 = PARSECONTROL
+ end
+ local
+ signature PARSECONTROL = gs_2
+ signature TYPECHECKCONTROL = gs_1
+ variants/config-sig.sml
+ in
+ signature gs_3 = CONFIG
+ end
+ local
+ signature CONFIG = gs_3
+ signature PARSECONTROL = gs_2
+ signature TYPECHECKCONTROL = gs_1
+ structure TextIO = gs_0
+ variants/ansic/config.sml
+ in
+ structure gs_4 = Config
+ end
+ local
+ open l24
+ in
+ functor gs_5 = HashTableFn
+ end
+ local
+ ast/uidtabimp-sig.sml
+ in
+ signature gs_6 = UIDTABIMP
+ end
+ local
+ open l4
+ in
+ structure gs_7 = Word
+ end
+ local
+ structure Word = gs_7
+ ast/uid-sig.sml
+ in
+ signature gs_8 = UID
+ end
+ local
+ functor HashTableFn = gs_5
+ signature UID = gs_8
+ signature UIDTABIMP = gs_6
+ ast/uidtabimp-fn.sml
+ in
+ functor gs_9 = UidtabImpFn
+ end
+ local
+ open l4
+ in
+ structure gs_10 = Int
+ end
+ local
+ structure Int = gs_10
+ signature UID = gs_8
+ structure Word = gs_7
+ ast/uid-fn.sml
+ in
+ functor gs_11 = UidFn
+ end
+ local
+ signature UID = gs_8
+ functor UidFn = gs_11
+ ast/aid.sml
+ in
+ structure gs_12 = Aid
+ end
+ local
+ structure Aid = gs_12
+ functor UidtabImpFn = gs_9
+ ast/aidtab.sml
+ in
+ structure gs_13 = Aidtab
+ end
+ local
+ open l24
+ in
+ structure gs_14 = Format
+ end
+ local
+ open l4
+ in
+ structure gs_15 = String
+ end
+ local
+ parser/util/sourcemap-sig.sml
+ in
+ signature gs_16 = SOURCE_MAP
+ end
+ local
+ structure Config = gs_4
+ structure Format = gs_14
+ structure Int = gs_10
+ signature SOURCE_MAP = gs_16
+ structure String = gs_15
+ parser/util/sourcemap.sml
+ in
+ structure gs_17 = SourceMap
+ end
+ local
+ open l71
+ in
+ functor gs_18 = PPStreamFn
+ end
+ local
+ open l71
+ in
+ structure gs_19 = StringToken
+ end
+ local
+ open l4
+ in
+ structure gs_20 = StringCvt
+ end
+ local
+ open l4
+ in
+ structure gs_21 = List
+ end
+ local
+ structure List = gs_21
+ functor PPStreamFn = gs_18
+ structure String = gs_15
+ structure StringCvt = gs_20
+ structure StringToken = gs_19
+ parser/util/old-pp.sml
+ in
+ signature gs_22 = OLD_PRETTYPRINT
+ structure gs_23 = OldPrettyPrint
+ end
+ local
+ structure Format = gs_14
+ signature OLD_PRETTYPRINT = gs_22
+ structure OldPrettyPrint = gs_23
+ structure SourceMap = gs_17
+ structure TextIO = gs_0
+ parser/util/error-sig.sml
+ in
+ signature gs_24 = ERROR
+ end
+ local
+ signature ERROR = gs_24
+ structure Format = gs_14
+ signature OLD_PRETTYPRINT = gs_22
+ structure OldPrettyPrint = gs_23
+ structure SourceMap = gs_17
+ structure TextIO = gs_0
+ parser/util/error.sml
+ in
+ structure gs_25 = Error
+ end
+ local
+ open l96
+ in
+ functor gs_26 = Join
+ functor gs_27 = JoinWithArg
+ end
+ local
+ open l96
+ in
+ structure gs_28 = LrParser
+ end
+ local
+ open l4
+ in
+ structure gs_29 = LargeInt
+ end
+ local
+ parser/extensions/c/parse-tree-ext.sml
+ in
+ structure gs_30 = ParseTreeExt
+ end
+ local
+ structure LargeInt = gs_29
+ structure ParseTreeExt = gs_30
+ structure SourceMap = gs_17
+ parser/parse-tree-sig.sml
+ in
+ signature gs_31 = PARSETREE
+ end
+ local
+ structure LargeInt = gs_29
+ signature PARSETREE = gs_31
+ structure ParseTreeExt = gs_30
+ structure SourceMap = gs_17
+ parser/parse-tree.sml
+ in
+ structure gs_32 = ParseTree
+ end
+ local
+ structure Error = gs_25
+ structure ParseTree = gs_32
+ parser/parser-sig.sml
+ in
+ signature gs_33 = PARSER
+ end
+ local
+ open l4
+ in
+ structure gs_34 = IO
+ end
+ local
+ open l4
+ in
+ structure gs_35 = TextPrimIO
+ end
+ local
+ open l4
+ in
+ structure gs_36 = IntInf
+ end
+ local
+ open l4
+ in
+ structure gs_37 = CharVector
+ end
+ local
+ open l4
+ in
+ structure gs_38 = Vector
+ end
+ local
+ open l4
+ in
+ structure gs_39 = Real
+ end
+ local
+ open l4
+ in
+ structure gs_40 = Char
+ end
+ local
+ open l24
+ in
+ structure gs_41 = AtomTable
+ end
+ local
+ open l24
+ in
+ structure gs_42 = Atom
+ end
+ local
+ structure Atom = gs_42
+ structure AtomTable = gs_41
+ structure Config = gs_4
+ parser/grammar/tdefs.sml
+ in
+ signature gs_43 = TYPEDEFS
+ structure gs_44 = TypeDefs
+ end
+ local
+ open l96
+ in
+ signature gs_45 = ARG_LEXER
+ signature gs_46 = ARG_PARSER
+ signature gs_47 = LEXER
+ signature gs_48 = LR_PARSER
+ signature gs_49 = LR_TABLE
+ signature gs_50 = PARSER
+ signature gs_51 = PARSER_DATA
+ signature gs_52 = STREAM
+ signature gs_53 = TOKEN
+ end
+ local
+ signature ARG_LEXER = gs_45
+ signature ARG_PARSER = gs_46
+ signature LEXER = gs_47
+ signature LR_PARSER = gs_48
+ signature LR_TABLE = gs_49
+ structure LargeInt = gs_29
+ signature PARSER = gs_50
+ signature PARSER_DATA = gs_51
+ signature STREAM = gs_52
+ signature TOKEN = gs_53
+ parser/grammar/c.grm.sig
+ in
+ signature gs_54 = C_LRVALS
+ signature gs_55 = C_TOKENS
+ end
+ local
+ structure Atom = gs_42
+ structure AtomTable = gs_41
+ signature C_LRVALS = gs_54
+ signature C_TOKENS = gs_55
+ structure Config = gs_4
+ signature TYPEDEFS = gs_43
+ structure TypeDefs = gs_44
+ parser/grammar/tokentable.sml
+ in
+ signature gs_56 = TOKENTABLE
+ functor gs_57 = TokenTable
+ end
+ local
+ signature C_LRVALS = gs_54
+ signature C_TOKENS = gs_55
+ structure Char = gs_40
+ structure CharVector = gs_37
+ structure IO = gs_34
+ structure Int = gs_10
+ structure IntInf = gs_36
+ structure LargeInt = gs_29
+ structure Real = gs_39
+ structure SourceMap = gs_17
+ structure String = gs_15
+ structure StringCvt = gs_20
+ signature TOKENTABLE = gs_56
+ structure TextIO = gs_0
+ structure TextPrimIO = gs_35
+ functor TokenTable = gs_57
+ structure Vector = gs_38
+ parser/grammar/c.lex.sml
+ in
+ functor gs_58 = CLexFun
+ end
+ local
+ open l4
+ in
+ structure gs_59 = Array
+ end
+ local
+ signature ARG_LEXER = gs_45
+ signature ARG_PARSER = gs_46
+ structure Array = gs_59
+ signature C_LRVALS = gs_54
+ signature C_TOKENS = gs_55
+ structure Char = gs_40
+ structure Error = gs_25
+ signature LEXER = gs_47
+ signature LR_PARSER = gs_48
+ signature LR_TABLE = gs_49
+ structure LargeInt = gs_29
+ structure List = gs_21
+ signature PARSER = gs_50
+ signature PARSER_DATA = gs_51
+ structure ParseTree = gs_32
+ signature STREAM = gs_52
+ structure SourceMap = gs_17
+ structure String = gs_15
+ signature TOKEN = gs_53
+ signature TYPEDEFS = gs_43
+ structure TypeDefs = gs_44
+ parser/grammar/c.grm.sml
+ in
+ functor gs_60 = LrValsFun
+ end
+ local
+ functor CLexFun = gs_58
+ structure Error = gs_25
+ functor Join = gs_26
+ functor JoinWithArg = gs_27
+ structure LrParser = gs_28
+ functor LrValsFun = gs_60
+ signature PARSER = gs_33
+ structure SourceMap = gs_17
+ signature TOKENTABLE = gs_56
+ signature TYPEDEFS = gs_43
+ structure TextIO = gs_0
+ functor TokenTable = gs_57
+ structure TypeDefs = gs_44
+ parser/parser.sml
+ in
+ structure gs_61 = Parser
+ end
+ local
+ open l24
+ in
+ structure gs_62 = HashString
+ end
+ local
+ signature UID = gs_8
+ functor UidFn = gs_11
+ ast/tid.sml
+ in
+ structure gs_63 = Tid
+ end
+ local
+ structure Tid = gs_63
+ ast/symbol-sig.sml
+ in
+ signature gs_64 = SYMBOL
+ end
+ local
+ structure HashString = gs_62
+ structure Int = gs_10
+ signature SYMBOL = gs_64
+ structure String = gs_15
+ structure Tid = gs_63
+ structure Word = gs_7
+ ast/symbol.sml
+ in
+ structure gs_65 = Symbol
+ end
+ local
+ signature UID = gs_8
+ functor UidFn = gs_11
+ ast/pid.sml
+ in
+ structure gs_66 = Pid
+ end
+ local
+ ast/extensions/c/ast-ext.sml
+ in
+ structure gs_67 = AstExt
+ end
+ local
+ structure Aid = gs_12
+ structure AstExt = gs_67
+ structure LargeInt = gs_29
+ structure Pid = gs_66
+ structure SourceMap = gs_17
+ structure Symbol = gs_65
+ structure Tid = gs_63
+ ast/ast-sig.sml
+ in
+ signature gs_68 = AST
+ end
+ local
+ signature AST = gs_68
+ structure Aid = gs_12
+ structure AstExt = gs_67
+ structure LargeInt = gs_29
+ structure Pid = gs_66
+ structure SourceMap = gs_17
+ structure Symbol = gs_65
+ structure Tid = gs_63
+ ast/ast.sml
+ in
+ structure gs_69 = Ast
+ end
+ local
+ structure Ast = gs_69
+ structure LargeInt = gs_29
+ structure Pid = gs_66
+ structure SourceMap = gs_17
+ structure Symbol = gs_65
+ structure Tid = gs_63
+ ast/bindings.sml
+ in
+ structure gs_70 = Bindings
+ end
+ local
+ open l24
+ in
+ functor gs_71 = BinaryMapFn
+ end
+ local
+ open l24
+ in
+ signature gs_72 = ORD_MAP
+ end
+ local
+ structure Tid = gs_63
+ functor UidtabImpFn = gs_9
+ ast/tidtab.sml
+ in
+ structure gs_73 = Tidtab
+ end
+ local
+ structure Aidtab = gs_13
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ structure Tidtab = gs_73
+ ast/tables.sml
+ in
+ structure gs_74 = Tables
+ end
+ local
+ structure Aid = gs_12
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ structure Error = gs_25
+ structure LargeInt = gs_29
+ signature ORD_MAP = gs_72
+ structure SourceMap = gs_17
+ structure Symbol = gs_65
+ structure Tables = gs_74
+ structure Tid = gs_63
+ ast/state-sig.sml
+ in
+ signature gs_75 = STATE
+ end
+ local
+ structure Aid = gs_12
+ structure Aidtab = gs_13
+ structure Ast = gs_69
+ functor BinaryMapFn = gs_71
+ structure Bindings = gs_70
+ structure Error = gs_25
+ structure LargeInt = gs_29
+ structure List = gs_21
+ structure Pid = gs_66
+ signature STATE = gs_75
+ structure SourceMap = gs_17
+ structure Symbol = gs_65
+ structure Tables = gs_74
+ structure Tid = gs_63
+ structure Tidtab = gs_73
+ ast/state.sml
+ in
+ structure gs_76 = State
+ end
+ local
+ ast/sizes-sig.sml
+ in
+ signature gs_77 = SIZES
+ end
+ local
+ signature SIZES = gs_77
+ ast/sizes.sml
+ in
+ structure gs_78 = Sizes
+ end
+ local
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ structure Sizes = gs_78
+ structure State = gs_76
+ structure Tables = gs_74
+ structure TextIO = gs_0
+ structure Tidtab = gs_73
+ ast/parse-to-ast-sig.sml
+ in
+ signature gs_79 = PARSE_TO_AST
+ end
+ local
+ open l4
+ in
+ structure gs_80 = ListPair
+ end
+ local
+ open l4
+ in
+ structure gs_81 = Option
+ end
+ local
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ structure Error = gs_25
+ structure ParseTree = gs_32
+ structure Sizes = gs_78
+ structure State = gs_76
+ structure Tables = gs_74
+ structure Tidtab = gs_73
+ ast/build-ast-sig.sml
+ in
+ signature gs_82 = BUILD_AST
+ end
+ local
+ structure Ast = gs_69
+ structure ParseTree = gs_32
+ structure ParseTreeExt = gs_30
+ structure State = gs_76
+ ast/cnv-ext-sig.sml
+ in
+ signature gs_83 = CNVEXT
+ end
+ local
+ structure Ast = gs_69
+ signature CNVEXT = gs_83
+ structure ParseTree = gs_32
+ structure ParseTreeExt = gs_30
+ structure State = gs_76
+ ast/extensions/c/cnv-ext.sml
+ in
+ structure gs_84 = CnvExt
+ end
+ local
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ structure Pid = gs_66
+ structure Symbol = gs_65
+ ast/simplify-assign-ops.sml
+ in
+ structure gs_85 = SimplifyAssignOps
+ end
+ local
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ signature OLD_PRETTYPRINT = gs_22
+ structure OldPrettyPrint = gs_23
+ structure Tables = gs_74
+ structure Tid = gs_63
+ ast/pp/pp-ast-sig.sml
+ in
+ signature gs_86 = PP_AST
+ end
+ local
+ open l4
+ in
+ structure gs_87 = Int32
+ end
+ local
+ structure Ast = gs_69
+ structure Int = gs_10
+ structure Int32 = gs_87
+ structure LargeInt = gs_29
+ signature OLD_PRETTYPRINT = gs_22
+ structure OldPrettyPrint = gs_23
+ structure Pid = gs_66
+ structure Real = gs_39
+ structure String = gs_15
+ structure Symbol = gs_65
+ structure Tables = gs_74
+ structure TextIO = gs_0
+ structure Tid = gs_63
+ structure Tidtab = gs_73
+ ast/pp/pp-lib.sml
+ in
+ structure gs_88 = PPLib
+ end
+ local
+ structure Ast = gs_69
+ structure AstExt = gs_67
+ signature OLD_PRETTYPRINT = gs_22
+ structure OldPrettyPrint = gs_23
+ structure Tables = gs_74
+ ast/pp/pp-ast-ext-sig.sml
+ in
+ signature gs_89 = PPASTEXT
+ end
+ local
+ signature PPASTEXT = gs_89
+ ast/extensions/c/pp-ast-ext-fn.sml
+ in
+ functor gs_90 = PPAstExtFn
+ end
+ local
+ structure Ast = gs_69
+ signature OLD_PRETTYPRINT = gs_22
+ structure OldPrettyPrint = gs_23
+ structure Tables = gs_74
+ ast/pp/pp-ast-adornment-sig.sml
+ in
+ signature gs_91 = PPASTADORNMENT
+ end
+ local
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ structure Int = gs_10
+ structure LargeInt = gs_29
+ structure List = gs_21
+ signature OLD_PRETTYPRINT = gs_22
+ structure OldPrettyPrint = gs_23
+ structure Option = gs_81
+ signature PPASTADORNMENT = gs_91
+ functor PPAstExtFn = gs_90
+ structure PPLib = gs_88
+ signature PP_AST = gs_86
+ structure Pid = gs_66
+ structure SourceMap = gs_17
+ structure Tid = gs_63
+ structure Tidtab = gs_73
+ ast/pp/pp-ast-fn.sml
+ in
+ functor gs_92 = PPAstFn
+ end
+ local
+ structure Ast = gs_69
+ signature PPASTADORNMENT = gs_91
+ functor PPAstFn = gs_92
+ ast/pp/pp-ast.sml
+ in
+ structure gs_93 = PPAst
+ end
+ local
+ structure Ast = gs_69
+ ast/ctype-eq.sml
+ in
+ structure gs_94 = CTypeEq
+ end
+ local
+ structure Ast = gs_69
+ structure Sizes = gs_78
+ structure Tables = gs_74
+ ast/sizeof-sig.sml
+ in
+ signature gs_95 = SIZEOF
+ end
+ local
+ structure Ast = gs_69
+ structure LargeInt = gs_29
+ structure Tables = gs_74
+ ast/type-util-sig.sml
+ in
+ signature gs_96 = TYPE_UTIL
+ end
+ local
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ structure Config = gs_4
+ structure Int = gs_10
+ structure List = gs_21
+ structure PPAst = gs_93
+ structure PPLib = gs_88
+ structure Pid = gs_66
+ structure Symbol = gs_65
+ signature TYPE_UTIL = gs_96
+ structure Tables = gs_74
+ structure Tid = gs_63
+ structure Tidtab = gs_73
+ ast/type-util.sml
+ in
+ structure gs_97 = TypeUtil
+ end
+ local
+ structure Ast = gs_69
+ functor BinaryMapFn = gs_71
+ structure Bindings = gs_70
+ structure Config = gs_4
+ structure Int = gs_10
+ structure LargeInt = gs_29
+ structure List = gs_21
+ structure Pid = gs_66
+ signature SIZEOF = gs_95
+ structure Sizes = gs_78
+ structure Tables = gs_74
+ structure TextIO = gs_0
+ structure Tid = gs_63
+ structure Tidtab = gs_73
+ structure TypeUtil = gs_97
+ ast/sizeof.sml
+ in
+ structure gs_98 = Sizeof
+ end
+ local
+ structure ParseTree = gs_32
+ structure Real = gs_39
+ structure Tid = gs_63
+ ast/anonymous-structs.sml
+ in
+ structure gs_99 = AnonymousStructs
+ structure gs_100 = TyEq
+ end
+ local
+ structure Aid = gs_12
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ structure Tid = gs_63
+ ast/initializer-normalizer-sig.sml
+ in
+ signature gs_101 = INITIALIZER_NORMALIZER
+ end
+ local
+ structure Aid = gs_12
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ signature INITIALIZER_NORMALIZER = gs_101
+ structure LargeInt = gs_29
+ structure SourceMap = gs_17
+ structure String = gs_15
+ structure Tid = gs_63
+ ast/initializer-normalizer.sml
+ in
+ structure gs_102 = InitializerNormalizer
+ end
+ local
+ structure Aid = gs_12
+ structure Aidtab = gs_13
+ structure AnonymousStructs = gs_99
+ structure Ast = gs_69
+ signature BUILD_AST = gs_82
+ functor BinaryMapFn = gs_71
+ structure Bindings = gs_70
+ structure CTypeEq = gs_94
+ structure CnvExt = gs_84
+ structure Config = gs_4
+ structure Error = gs_25
+ structure InitializerNormalizer = gs_102
+ structure Int = gs_10
+ structure LargeInt = gs_29
+ structure List = gs_21
+ structure ListPair = gs_80
+ structure Option = gs_81
+ structure PPAst = gs_93
+ structure PPLib = gs_88
+ structure ParseTree = gs_32
+ structure ParseTreeExt = gs_30
+ structure Pid = gs_66
+ structure SimplifyAssignOps = gs_85
+ structure Sizeof = gs_98
+ structure Sizes = gs_78
+ structure SourceMap = gs_17
+ structure State = gs_76
+ structure String = gs_15
+ structure Symbol = gs_65
+ structure Tables = gs_74
+ structure TextIO = gs_0
+ structure Tid = gs_63
+ structure Tidtab = gs_73
+ structure TyEq = gs_100
+ structure TypeUtil = gs_97
+ structure Word = gs_7
+ ast/build-ast.sml
+ in
+ structure gs_103 = BuildAst
+ end
+ local
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ structure BuildAst = gs_103
+ structure Error = gs_25
+ signature PARSE_TO_AST = gs_79
+ structure PPAst = gs_93
+ structure PPLib = gs_88
+ structure Parser = gs_61
+ structure Sizes = gs_78
+ structure State = gs_76
+ structure Tables = gs_74
+ structure TextIO = gs_0
+ structure Tidtab = gs_73
+ ast/parse-to-ast.sml
+ in
+ structure gs_104 = ParseToAst
+ end
+ in
+ signature AST = gs_68
+ structure Aidtab = gs_13
+ structure Ast = gs_69
+ structure Bindings = gs_70
+ signature CONFIG = gs_3
+ structure Config = gs_4
+ signature PARSECONTROL = gs_2
+ signature PARSER = gs_33
+ signature PARSETREE = gs_31
+ signature PARSE_TO_AST = gs_79
+ structure PPAst = gs_93
+ signature PP_AST = gs_86
+ structure ParseToAst = gs_104
+ structure ParseTree = gs_32
+ structure Parser = gs_61
+ structure Pid = gs_66
+ signature SOURCE_MAP = gs_16
+ structure Sizeof = gs_98
+ structure Sizes = gs_78
+ structure SourceMap = gs_17
+ structure State = gs_76
+ structure Symbol = gs_65
+ signature TYPECHECKCONTROL = gs_1
+ structure Tables = gs_74
+ structure Tid = gs_63
+ structure Tidtab = gs_73
+ structure TypeUtil = gs_97
+ signature UID = gs_8
+ signature UIDTABIMP = gs_6
+ end
+ end
+
+ end
diff -N -C 2 -r ckit/src/parser/grammar/c.lex.sml ckit-mlton/src/parser/grammar/c.lex.sml
*** ckit/src/parser/grammar/c.lex.sml 2010-02-03 11:40:52.000000000 -0500
--- ckit-mlton/src/parser/grammar/c.lex.sml 2009-03-27 18:29:56.000000000 -0400
***************
*** 230,234 ****
val yytable =
! #[
]
--- 230,234 ----
val yytable =
! Vector.fromList [
]
diff -N -C 2 -r ckit/src/parser/parse-tree-sig.sml ckit-mlton/src/parser/parse-tree-sig.sml
*** ckit/src/parser/parse-tree-sig.sml 2010-02-03 11:40:53.000000000 -0500
--- ckit-mlton/src/parser/parse-tree-sig.sml 2009-03-27 18:28:04.000000000 -0400
***************
*** 28,33 ****
| LshiftAssign | RshiftAssign
| Uplus
! | SizeofType of ctype
! | OperatorExt of operatorExt
and expression
--- 28,35 ----
| LshiftAssign | RshiftAssign
| Uplus
! | SizeofType of
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list}
! | OperatorExt of
! ParseTreeExt.operatorExt
and expression
***************
*** 41,48 ****
| QuestionColon of expression * expression * expression
| Call of expression * expression list
! | Cast of ctype * expression
| InitList of expression list
| MARKexpression of (SourceMap.location * expression)
! | ExprExt of expressionExt
and specifier
--- 43,57 ----
| QuestionColon of expression * expression * expression
| Call of expression * expression list
! | Cast of
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list} *
! expression
| InitList of expression list
| MARKexpression of (SourceMap.location * expression)
! | ExprExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.expressionExt
and specifier
***************
*** 61,69 ****
| Saturate
| Nonsaturate
! | Array of expression * ctype
! | Pointer of ctype
| Function of
! {retType : ctype,
! params : (decltype * declarator) list}
| Enum of
{tagOpt : string option,
--- 70,82 ----
| Saturate
| Nonsaturate
! | Array of
! expression *
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list}
! | Pointer of
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list}
| Function of
! {retType : (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! params : ((* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list} *
! declarator) list}
| Enum of
{tagOpt : string option,
***************
*** 73,77 ****
{isStruct : bool, (* struct or union; true => struct *)
tagOpt : string option, (* optional tag *)
! members: (ctype * (declarator * expression) list) list} (* member specs *)
| TypedefName of string
| StructTag of
--- 86,91 ----
{isStruct : bool, (* struct or union; true => struct *)
tagOpt : string option, (* optional tag *)
! members: ((* ctype *) {qualifiers : qualifier list, specifiers : specifier list} *
! (declarator * expression) list) list} (* member specs *)
| TypedefName of string
| StructTag of
***************
*** 79,83 ****
name : string}
| EnumTag of string
! | SpecExt of specifierExt
and declarator (* constructor suffix: "Decr" *)
--- 93,102 ----
name : string}
| EnumTag of string
! | SpecExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.specifierExt
and declarator (* constructor suffix: "Decr" *)
***************
*** 88,94 ****
| PointerDecr of declarator
| QualDecr of qualifier * declarator
! | FuncDecr of declarator * (decltype * declarator) list
| MARKdeclarator of (SourceMap.location * declarator)
! | DecrExt of declaratorExt
(* supports extensions of C in which expressions contain statements *)
--- 107,121 ----
| PointerDecr of declarator
| QualDecr of qualifier * declarator
! | FuncDecr of
! declarator *
! ((* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list} *
! declarator) list
| MARKdeclarator of (SourceMap.location * declarator)
! | DecrExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.declaratorExt
(* supports extensions of C in which expressions contain statements *)
***************
*** 111,120 ****
| Switch of expression * statement
| MARKstatement of (SourceMap.location * statement)
! | StatExt of statementExt
and declaration
! = Declaration of decltype * (declarator * expression) list
| MARKdeclaration of (SourceMap.location * declaration)
! | DeclarationExt of declarationExt
(* the top-level constructs in a translation unit (i.e. source file) *)
--- 138,159 ----
| Switch of expression * statement
| MARKstatement of (SourceMap.location * statement)
! | StatExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.statementExt
and declaration
! = Declaration of
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list} *
! (declarator * expression) list
| MARKdeclaration of (SourceMap.location * declaration)
! | DeclarationExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.declarationExt
(* the top-level constructs in a translation unit (i.e. source file) *)
***************
*** 122,133 ****
= ExternalDecl of declaration
| FunctionDef of
! {retType : decltype, (* return type *)
! funDecr : declarator, (* function name declarator *)
! krParams : declaration list, (* K&R-style parameter declarations *)
! body : statement} (* function body *)
| MARKexternalDecl of (SourceMap.location * externalDecl)
! | ExternalDeclExt of externalDeclExt
! withtype ctype =
{qualifiers : qualifier list,
specifiers : specifier list}
--- 161,177 ----
= ExternalDecl of declaration
| FunctionDef of
! {retType : (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list}, (* return type *)
! funDecr : declarator, (* function name declarator *)
! krParams : declaration list, (* K&R-style parameter declarations *)
! body : statement (* function body *)}
| MARKexternalDecl of (SourceMap.location * externalDecl)
! | ExternalDeclExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.externalDeclExt
! type ctype =
{qualifiers : qualifier list,
specifiers : specifier list}
***************
*** 138,142 ****
(* extension types for basic constructs *)
! and externalDeclExt =
(specifier, declarator, ctype, decltype, operator, expression, statement)
ParseTreeExt.externalDeclExt
--- 182,186 ----
(* extension types for basic constructs *)
! type externalDeclExt =
(specifier, declarator, ctype, decltype, operator, expression, statement)
ParseTreeExt.externalDeclExt
diff -N -C 2 -r ckit/src/parser/parse-tree.sml ckit-mlton/src/parser/parse-tree.sml
*** ckit/src/parser/parse-tree.sml 2010-02-03 11:40:53.000000000 -0500
--- ckit-mlton/src/parser/parse-tree.sml 2009-03-27 18:28:04.000000000 -0400
***************
*** 24,29 ****
| LshiftAssign | RshiftAssign
| Uplus
! | SizeofType of ctype
! | OperatorExt of operatorExt
and expression
--- 24,31 ----
| LshiftAssign | RshiftAssign
| Uplus
! | SizeofType of
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list}
! | OperatorExt of
! ParseTreeExt.operatorExt
and expression
***************
*** 37,44 ****
| QuestionColon of expression * expression * expression
| Call of expression * expression list
! | Cast of ctype * expression
| InitList of expression list
| MARKexpression of (SourceMap.location * expression)
! | ExprExt of expressionExt
and specifier
--- 39,53 ----
| QuestionColon of expression * expression * expression
| Call of expression * expression list
! | Cast of
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list} *
! expression
| InitList of expression list
| MARKexpression of (SourceMap.location * expression)
! | ExprExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.expressionExt
and specifier
***************
*** 57,65 ****
| Saturate
| Nonsaturate
! | Array of expression * ctype
! | Pointer of ctype
| Function of
! {retType : ctype,
! params : (decltype * declarator) list}
| Enum of
{tagOpt : string option,
--- 66,78 ----
| Saturate
| Nonsaturate
! | Array of
! expression *
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list}
! | Pointer of
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list}
| Function of
! {retType : (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! params : ((* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list} *
! declarator) list}
| Enum of
{tagOpt : string option,
***************
*** 69,73 ****
{isStruct : bool, (* struct or union; true => struct *)
tagOpt : string option, (* optional tag *)
! members: (ctype * (declarator * expression) list) list} (* member specs *)
| TypedefName of string
| StructTag of
--- 82,87 ----
{isStruct : bool, (* struct or union; true => struct *)
tagOpt : string option, (* optional tag *)
! members: ((* ctype *) {qualifiers : qualifier list, specifiers : specifier list} *
! (declarator * expression) list) list} (* member specs *)
| TypedefName of string
| StructTag of
***************
*** 75,79 ****
name : string}
| EnumTag of string
! | SpecExt of specifierExt
and declarator (* constructor suffix: "Decr" *)
--- 89,98 ----
name : string}
| EnumTag of string
! | SpecExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.specifierExt
and declarator (* constructor suffix: "Decr" *)
***************
*** 84,90 ****
| PointerDecr of declarator
| QualDecr of qualifier * declarator
! | FuncDecr of declarator * (decltype * declarator) list
| MARKdeclarator of (SourceMap.location * declarator)
! | DecrExt of declaratorExt
(* supports extensions of C in which expressions contain statements *)
--- 103,117 ----
| PointerDecr of declarator
| QualDecr of qualifier * declarator
! | FuncDecr of
! declarator *
! ((* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list} *
! declarator) list
| MARKdeclarator of (SourceMap.location * declarator)
! | DecrExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.declaratorExt
(* supports extensions of C in which expressions contain statements *)
***************
*** 107,128 ****
| Switch of expression * statement
| MARKstatement of (SourceMap.location * statement)
! | StatExt of statementExt
and declaration
! = Declaration of decltype * (declarator * expression) list
| MARKdeclaration of (SourceMap.location * declaration)
! | DeclarationExt of declarationExt
and externalDecl
= ExternalDecl of declaration
| FunctionDef of (* record? *)
! {retType : decltype, (* return type *)
! funDecr : declarator, (* function name declarator *)
! krParams : declaration list, (* K&R-style parameter declarations *)
! body : statement} (* function body *)
| MARKexternalDecl of (SourceMap.location * externalDecl)
! | ExternalDeclExt of externalDeclExt
! withtype ctype =
{qualifiers : qualifier list,
specifiers : specifier list}
--- 134,172 ----
| Switch of expression * statement
| MARKstatement of (SourceMap.location * statement)
! | StatExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.statementExt
and declaration
! = Declaration of
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list} *
! (declarator * expression) list
| MARKdeclaration of (SourceMap.location * declaration)
! | DeclarationExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.declarationExt
and externalDecl
= ExternalDecl of declaration
| FunctionDef of (* record? *)
! {retType : (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list}, (* return type *)
! funDecr : declarator, (* function name declarator *)
! krParams : declaration list, (* K&R-style parameter declarations *)
! body : statement (* function body *)}
| MARKexternalDecl of (SourceMap.location * externalDecl)
! | ExternalDeclExt of
! (specifier, declarator,
! (* ctype *) {qualifiers : qualifier list, specifiers : specifier list},
! (* decltype *) {qualifiers : qualifier list, specifiers : specifier list, storage : storage list},
! operator, expression, statement)
! ParseTreeExt.externalDeclExt
! type ctype =
{qualifiers : qualifier list,
specifiers : specifier list}
***************
*** 132,136 ****
storage : storage list}
! and externalDeclExt =
(specifier, declarator, ctype, decltype, operator, expression, statement)
ParseTreeExt.externalDeclExt
--- 176,180 ----
storage : storage list}
! type externalDeclExt =
(specifier, declarator, ctype, decltype, operator, expression, statement)
ParseTreeExt.externalDeclExt
|