1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303
|
; C Library
;
; Copyright (C) 2022 Kestrel Institute (http://www.kestrel.edu)
; Copyright (C) 2022 Kestrel Technology LLC (http://kestreltechnology.com)
;
; License: A 3-clause BSD license. See the LICENSE file distributed with ACL2.
;
; Author: Alessandro Coglio (coglio@kestrel.edu)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(in-package "C")
(include-book "function-environments")
(include-book "computation-states")
(include-book "integer-operations")
(include-book "../language/abstract-syntax-operations")
(include-book "../language/structure-operations")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defxdoc+ atc-execution
:parents (atc-dynamic-semantics)
:short "A model of C execution for ATC."
:long
(xdoc::topstring
(xdoc::p
"We distinguish between pure (i.e. side-effect-free) expressions
and expressions that may have side effects.
We allow the latter to appear only in certain parts of statements,
and we put restrictions to ensure a predictable order of evaluation.
Pure expressions may be evaluated in any order;
we evaluate them left to right.")
(xdoc::p
"We formalize a big-step operational interpretive semantics.
To ensure the termination of the ACL2 mutually recursive functions
that formalize the execution of statements, function calls, etc.,
these ACL2 functions take a limit on the depth of the recursive calls,
which ends the recursion with an error when it reaches 0,
which is decremented at each recursive call,
and which is used as termination measure.
Thus, a proof of total correctness
(i.e. the code terminates and produces correct results)
involves showing the existence of sufficiently large limit values,
while a proof of partial correctness
(i.e. the code produces correct results if it terminates)
is relativized to the limit value not running out.
The limit is an artifact of the formalization;
it has no explicit counterpart in the execution state of the C code."))
:order-subtopics t
:default-parent t)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-iconst ((ic iconstp))
:returns (result value-resultp)
:short "Execute an integer constant."
:long
(xdoc::topstring
(xdoc::p
"This is according to [C:6.4.4.1/5]:
based on the suffixes and the base,
we find the first type that suffices to represent the value,
in the lists indicated in the table,
and we return the value of the found type.
If the value is too large, we return an error.")
(xdoc::p
"This is the dynamic counterpart of @(tsee check-iconst)."))
(b* (((iconst ic) ic)
(error (error (list :iconst-out-of-range (iconst-fix ic)))))
(if ic.unsignedp
(iconst-length-case
ic.length
:none (cond ((uint-integerp ic.value) (uint ic.value))
((ulong-integerp ic.value) (ulong ic.value))
((ullong-integerp ic.value) (ullong ic.value))
(t error))
:long (cond ((ulong-integerp ic.value) (ulong ic.value))
((ullong-integerp ic.value) (ullong ic.value))
(t error))
:llong (cond ((ullong-integerp ic.value) (ullong ic.value))
(t error)))
(iconst-length-case
ic.length
:none (if (iconst-base-case ic.base :dec)
(cond ((sint-integerp ic.value) (sint ic.value))
((slong-integerp ic.value) (slong ic.value))
((sllong-integerp ic.value) (sllong ic.value))
(t error))
(cond ((sint-integerp ic.value) (sint ic.value))
((uint-integerp ic.value) (uint ic.value))
((slong-integerp ic.value) (slong ic.value))
((ulong-integerp ic.value) (ulong ic.value))
((sllong-integerp ic.value) (sllong ic.value))
((ullong-integerp ic.value) (ullong ic.value))
(t error)))
:long (if (iconst-base-case ic.base :dec)
(cond ((slong-integerp ic.value) (slong ic.value))
((sllong-integerp ic.value) (sllong ic.value))
(t error))
(cond ((slong-integerp ic.value) (slong ic.value))
((ulong-integerp ic.value) (ulong ic.value))
((sllong-integerp ic.value) (sllong ic.value))
((ullong-integerp ic.value) (ullong ic.value))
(t error)))
:llong (if (iconst-base-case ic.base :dec)
(cond ((sllong-integerp ic.value) (sllong ic.value))
(t error))
(cond ((sllong-integerp ic.value) (sllong ic.value))
((ullong-integerp ic.value) (ullong ic.value))
(t error))))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-const ((c constp))
:returns (result value-resultp)
:short "Execute a constant."
:long
(xdoc::topstring
(xdoc::p
"We only support the execution of integer constants for now."))
(const-case c
:int (exec-iconst c.get)
:float (error :exec-const-float)
:enum (error :exec-const-enum)
:char (error :exec-const-char))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-ident ((id identp) (compst compustatep))
:returns (result value-resultp)
:short "Execute a variable."
:long
(xdoc::topstring
(xdoc::p
"We read the variable's value (if any) from the computation state."))
(read-var id compst)
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define promote-value ((val valuep))
:returns (promoted-val valuep)
:short "Apply the integer promotions to a value [C:6.3.1.1/2]."
:long
(xdoc::topstring
(xdoc::p
"This is the dynamic counterpart of @(tsee promote-type).
See the documentation of that function for details.
Here we actually convert values;
we do not merely compute a promoted type."))
(b* ((val (value-fix val)))
(cond ((ucharp val) (if (<= (uchar-max) (sint-max))
(sint-from-uchar val)
(uint-from-uchar val)))
((scharp val) (sint-from-schar val))
((ushortp val) (if (<= (ushort-max) (sint-max))
(sint-from-ushort val)
(uint-from-ushort val)))
((sshortp val) (sint-from-sshort val))
(t val)))
:guard-hints (("Goal" :in-theory (enable
sint-from-uchar-okp
sint-from-ushort-okp
uchar-integerp-alt-def
schar-integerp-alt-def
ushort-integerp-alt-def
sshort-integerp-alt-def
sint-integerp-alt-def)))
:hooks (:fix)
///
(defruled values-of-promote-value
(implies (value-arithmeticp val)
(b* ((pval (promote-value val)))
(or (uintp pval)
(sintp pval)
(ulongp pval)
(slongp pval)
(ullongp pval)
(sllongp pval))))
:enable (value-arithmeticp
value-realp
value-integerp
value-unsigned-integerp-alt-def
value-signed-integerp-alt-def))
(defrule value-integerp-of-promote-value
(equal (value-integerp (promote-value val))
(value-integerp (value-fix val)))
:enable (value-integerp
value-unsigned-integerp-alt-def
value-signed-integerp-alt-def)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-plus ((arg valuep))
:returns (result value-resultp)
:short "Execute unary plus [C:6.5.3.3/1] [C:6.5.3.3/2]."
(b* ((arg (value-fix arg))
((unless (value-arithmeticp arg))
(error (list :mistype-plus
:required :arithmetic
:supplied arg)))
(val (promote-value arg)))
(cond ((uintp val) (plus-uint val))
((sintp val) (plus-sint val))
((ulongp val) (plus-ulong val))
((slongp val) (plus-slong val))
((ullongp val) (plus-ullong val))
((sllongp val) (plus-sllong val))
(t (error (impossible)))))
:guard-hints (("Goal"
:in-theory (enable value-arithmeticp
value-realp
value-integerp
value-unsigned-integerp-alt-def
value-signed-integerp-alt-def)
:use (:instance values-of-promote-value (val arg))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-minus ((arg valuep))
:returns (result value-resultp)
:short "Execute unary minus [C:6.5.3.3/1] [C:6.5.3.3/3]."
(b* ((arg (value-fix arg))
((unless (value-arithmeticp arg))
(error (list :mistype-minus
:required :arithmetic
:supplied arg)))
(val (promote-value arg))
(err (error (list :undefined-minus arg))))
(cond ((uintp val) (minus-uint val))
((sintp val) (if (minus-sint-okp val) (minus-sint val) err))
((ulongp val) (minus-ulong val))
((slongp val) (if (minus-slong-okp val) (minus-slong val) err))
((ullongp val) (minus-ullong val))
((sllongp val) (if (minus-sllong-okp val) (minus-sllong val) err))
(t (error (impossible)))))
:guard-hints (("Goal"
:in-theory (enable value-arithmeticp
value-realp
value-integerp
value-unsigned-integerp-alt-def
value-signed-integerp-alt-def)
:use (:instance values-of-promote-value (val arg))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-bitnot ((arg valuep))
:returns (result value-resultp)
:short "Execute bitwise complement [C:6.5.3.3/1] [C:6.5.3.3/4]."
(b* ((arg (value-fix arg))
((unless (value-integerp arg))
(error (list :mistype-bitnot
:required :integer
:supplied arg)))
(val (promote-value arg)))
(cond ((uintp val) (bitnot-uint val))
((sintp val) (bitnot-sint val))
((ulongp val) (bitnot-ulong val))
((slongp val) (bitnot-slong val))
((ullongp val) (bitnot-ullong val))
((sllongp val) (bitnot-sllong val))
(t (error (impossible)))))
:guard-hints (("Goal"
:in-theory (enable value-arithmeticp
value-realp
value-integerp
value-unsigned-integerp-alt-def
value-signed-integerp-alt-def)
:use (:instance values-of-promote-value (val arg))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-lognot ((arg valuep))
:returns (result value-resultp)
:short "Execute unary lognot [C:6.5.3.3/1] [C:6.5.3.3/5]."
(b* ((arg (value-fix arg))
((unless (value-scalarp arg))
(error (list :mistype-lognot
:required :scalar
:supplied arg))))
(cond ((ucharp arg) (lognot-uchar arg))
((scharp arg) (lognot-schar arg))
((ushortp arg) (lognot-ushort arg))
((sshortp arg) (lognot-sshort arg))
((uintp arg) (lognot-uint arg))
((sintp arg) (lognot-sint arg))
((ulongp arg) (lognot-ulong arg))
((slongp arg) (lognot-slong arg))
((ullongp arg) (lognot-ullong arg))
((sllongp arg) (lognot-sllong arg))
((value-case arg :pointer) (sint-from-boolean
(value-pointer-nullp arg)))
(t (error (impossible)))))
:guard-hints (("Goal"
:in-theory (enable value-scalarp
value-arithmeticp
value-realp
value-integerp
value-unsigned-integerp-alt-def
value-signed-integerp-alt-def)
:use (:instance values-of-promote-value (val arg))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-unary ((op unopp) (arg value-resultp))
:returns (result value-resultp)
:short "Execute a unary operation."
(b* ((arg (value-result-fix arg))
((when (errorp arg)) arg))
(unop-case op
:address (error :todo)
:indir (error :todo)
:plus (exec-plus arg)
:minus (exec-minus arg)
:bitnot (exec-bitnot arg)
:lognot (exec-lognot arg)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define uaconvert-values ((val1 valuep) (val2 valuep))
:guard (and (value-arithmeticp val1)
(value-arithmeticp val2))
:returns (mv (new-val1 valuep)
(new-val2 valuep))
:short "Apply the usual arithmetic conversions to two arithmetic values
[C:6.3.1.8]."
:long
(xdoc::topstring
(xdoc::p
"This is the dynamic counterpart of @(tsee uaconvert-types).
See the documentation of that function for details.
Here we actually convert the values;
we do not merely compute the common type."))
(b* ((val1 (promote-value val1))
(val2 (promote-value val2)))
(cond ((sllongp val1)
(cond ((sllongp val2) (mv val1 val2))
((slongp val2) (mv val1 (sllong-from-slong val2)))
((sintp val2) (mv val1 (sllong-from-sint val2)))
((ullongp val2) (mv (ullong-from-sllong val1) val2))
((ulongp val2) (if (>= (sllong-max) (ulong-max))
(mv val1 (sllong-from-ulong val2))
(mv (ullong-from-sllong val1)
(ullong-from-ulong val2))))
((uintp val2) (if (>= (sllong-max) (uint-max))
(mv val1 (sllong-from-uint val2))
(mv (ullong-from-sllong val1)
(ullong-from-uint val2))))
(t (prog2$ (impossible) (mv val1 val2)))))
((slongp val1)
(cond ((sllongp val2) (mv (sllong-from-slong val1) val2))
((slongp val2) (mv val1 val2))
((sintp val2) (mv val1 (slong-from-sint val2)))
((ullongp val2) (mv (ullong-from-slong val1) val2))
((ulongp val2) (mv (ulong-from-slong val1) val2))
((uintp val2) (if (>= (slong-max) (uint-max))
(mv val1 (slong-from-uint val2))
(mv (ulong-from-slong val1)
(ulong-from-uint val2))))
(t (prog2$ (impossible) (mv val1 val2)))))
((sintp val1)
(cond ((sllongp val2) (mv (sllong-from-sint val1) val2))
((slongp val2) (mv (slong-from-sint val1) val2))
((sintp val2) (mv val1 val2))
((ullongp val2) (mv (ullong-from-sint val1) val2))
((ulongp val2) (mv (ulong-from-sint val1) val2))
((uintp val2) (mv (uint-from-sint val1) val2))
(t (prog2$ (impossible) (mv val1 val2)))))
((ullongp val1)
(cond ((sllongp val2) (mv val1 (ullong-from-sllong val2)))
((slongp val2) (mv val1 (ullong-from-slong val2)))
((sintp val2) (mv val1 (ullong-from-sint val2)))
((ullongp val2) (mv val1 val2))
((ulongp val2) (mv val1 (ullong-from-ulong val2)))
((uintp val2) (mv val1 (ullong-from-uint val2)))
(t (prog2$ (impossible) (mv val1 val2)))))
((ulongp val1)
(cond ((sllongp val2) (if (>= (sllong-max) (ulong-max))
(mv (sllong-from-ulong val1) val2)
(mv (ullong-from-ulong val1)
(ullong-from-sllong val2))))
((slongp val2) (mv val1 (ulong-from-slong val2)))
((sintp val2) (mv val1 (ulong-from-sint val2)))
((ullongp val2) (mv (ullong-from-ulong val1) val2))
((ulongp val2) (mv val1 val2))
((uintp val2) (mv val1 (ulong-from-uint val2)))
(t (prog2$ (impossible) (mv val1 val2)))))
((uintp val1)
(cond ((sllongp val2) (if (>= (sllong-max) (uint-max))
(mv (sllong-from-uint val1) val2)
(mv (ullong-from-uint val1)
(ullong-from-sllong val2))))
((slongp val2) (if (>= (slong-max) (uint-max))
(mv (slong-from-uint val1) val2)
(mv (ulong-from-uint val1)
(ulong-from-slong val2))))
((sintp val2) (mv val1 (uint-from-sint val2)))
((ullongp val2) (mv (ullong-from-uint val1) val2))
((ulongp val2) (mv (ulong-from-uint val1) val2))
((uintp val2) (mv val1 val2))
(t (prog2$ (impossible) (mv val1 val2)))))
(t (prog2$ (impossible) (mv val1 val2)))))
:guard-hints (("Goal"
:do-not '(preprocess) ; just for speed
:in-theory (enable slong-from-uint-okp
sllong-from-uint-okp
sllong-from-ulong-okp
sint-integerp-alt-def
slong-integerp-alt-def
sllong-integerp-alt-def
uint-integerp-alt-def
ulong-integerp-alt-def
ullong-integerp-alt-def)
:use ((:instance values-of-promote-value (val val1))
(:instance values-of-promote-value (val val2)))))
///
(defrule values-of-uaconvert-values
(implies (and (value-arithmeticp val1)
(value-arithmeticp val2))
(b* (((mv cval1 cval2) (uaconvert-values val1 val2)))
(or (and (uintp cval1) (uintp cval2))
(and (sintp cval1) (sintp cval2))
(and (ulongp cval1) (ulongp cval2))
(and (slongp cval1) (slongp cval2))
(and (ullongp cval1) (ullongp cval2))
(and (sllongp cval1) (sllongp cval2)))))
:use ((:instance values-of-promote-value (val val1))
(:instance values-of-promote-value (val val2)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-test ((arg value-resultp))
:returns (result boolean-resultp)
:short "Execute a test on a value."
:long
(xdoc::topstring
(xdoc::p
"This is used for tests of conditionals
and for the operands of the non-strict operations.")
(xdoc::p
"The argument value must be a scalar.
We return an ACL2 boolean, or an error."))
(b* ((arg (value-result-fix arg))
((when (errorp arg)) arg)
((unless (value-scalarp arg)) (error (list :test-mistype
:required :scalar
:supplied arg))))
(cond ((ucharp arg) (boolean-from-uchar arg))
((scharp arg) (boolean-from-schar arg))
((ushortp arg) (boolean-from-ushort arg))
((sshortp arg) (boolean-from-sshort arg))
((uintp arg) (boolean-from-uint arg))
((sintp arg) (boolean-from-sint arg))
((ulongp arg) (boolean-from-ulong arg))
((slongp arg) (boolean-from-slong arg))
((ullongp arg) (boolean-from-ullong arg))
((sllongp arg) (boolean-from-sllong arg))
((value-case arg :pointer) (not (value-pointer-nullp arg)))
(t (error (impossible)))))
:guard-hints (("Goal" :in-theory (enable value-scalarp
value-arithmeticp
value-realp
value-integerp
value-signed-integerp-alt-def
value-unsigned-integerp-alt-def)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-integer ((arg valuep))
:guard (value-integerp arg)
:returns (result integerp)
:short "Execute a value to obtain an (ACL2) integer."
:long
(xdoc::topstring
(xdoc::p
"This is used for operands such that
only their mathematical values affect the result of the operation,
and not their C types.
Examples are the second operand of shift operations
and the index operand of array subscript operations."))
(b* ((arg (value-fix arg)))
(cond ((ucharp arg) (uchar-integer-value arg))
((scharp arg) (schar-integer-value arg))
((ushortp arg) (ushort-integer-value arg))
((sshortp arg) (sshort-integer-value arg))
((uintp arg) (uint-integer-value arg))
((sintp arg) (sint-integer-value arg))
((ulongp arg) (ulong-integer-value arg))
((slongp arg) (slong-integer-value arg))
((ullongp arg) (ullong-integer-value arg))
((sllongp arg) (sllong-integer-value arg))
(t (prog2$ (impossible) 0))))
:guard-hints (("Goal" :in-theory (enable value-integerp
value-unsigned-integerp-alt-def
value-signed-integerp-alt-def)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-mul ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute multiplication [C:6.5.5/2] [C:6.5.5/3] [C:6.5.5/4]."
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-arithmeticp arg1))
(error (list :mistype-mul
:required :arithmetic
:supplied arg1)))
((unless (value-arithmeticp arg2))
(error (list :mistype-mul
:required :arithmetic
:supplied arg2)))
(err (error (list :undefined-mul arg1 arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (mul-uint-uint val1 val2))
((sintp val1) (if (mul-sint-sint-okp val1 val2)
(mul-sint-sint val1 val2)
err))
((ulongp val1) (mul-ulong-ulong val1 val2))
((slongp val1) (if (mul-slong-slong-okp val1 val2)
(mul-slong-slong val1 val2)
err))
((ullongp val1) (mul-ullong-ullong val1 val2))
((sllongp val1) (if (mul-sllong-sllong-okp val1 val2)
(mul-sllong-sllong val1 val2)
err))
(t (error (impossible)))))
:guard-hints (("Goal" :use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-div ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute division [C:6.5.5/2] [C:6.5.5/3] [C:6.5.5/5]."
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-arithmeticp arg1))
(error (list :mistype-div
:required :arithmetic
:supplied arg1)))
((unless (value-arithmeticp arg2))
(error (list :mistype-div
:required :arithmetic
:supplied arg2)))
(err (error (list :undefined-div arg1 arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (if (div-uint-uint-okp val1 val2)
(div-uint-uint val1 val2)
err))
((sintp val1) (if (div-sint-sint-okp val1 val2)
(div-sint-sint val1 val2)
err))
((ulongp val1) (if (div-ulong-ulong-okp val1 val2)
(div-ulong-ulong val1 val2)
err))
((slongp val1) (if (div-slong-slong-okp val1 val2)
(div-slong-slong val1 val2)
err))
((ullongp val1) (if (div-ullong-ullong-okp val1 val2)
(div-ullong-ullong val1 val2)
err))
((sllongp val1) (if (div-sllong-sllong-okp val1 val2)
(div-sllong-sllong val1 val2)
err))
(t (error (impossible)))))
:guard-hints (("Goal" :use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-rem ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute remainder [C:6.5.5/2] [C:6.5.5/3] [C:6.5.5/5]."
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-integerp arg1))
(error (list :mistype-rem
:required :integer
:supplied arg1)))
((unless (value-integerp arg2))
(error (list :mistype-rem
:required :integer
:supplied arg2)))
(err (error (list :undefined-rem arg1 arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (if (rem-uint-uint-okp val1 val2)
(rem-uint-uint val1 val2)
err))
((sintp val1) (if (rem-sint-sint-okp val1 val2)
(rem-sint-sint val1 val2)
err))
((ulongp val1) (if (rem-ulong-ulong-okp val1 val2)
(rem-ulong-ulong val1 val2)
err))
((slongp val1) (if (rem-slong-slong-okp val1 val2)
(rem-slong-slong val1 val2)
err))
((ullongp val1) (if (rem-ullong-ullong-okp val1 val2)
(rem-ullong-ullong val1 val2)
err))
((sllongp val1) (if (rem-sllong-sllong-okp val1 val2)
(rem-sllong-sllong val1 val2)
err))
(t (error (impossible)))))
:guard-hints (("Goal"
:use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))
:in-theory (enable value-arithmeticp value-realp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-add ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute addition [C:6.5.6/2] [C:6.5.6/4] [C:6.5.6/5]."
:long
(xdoc::topstring
(xdoc::p
"We do not support additions involving pointers for now."))
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-arithmeticp arg1))
(error (list :mistype-add
:required :arithmetic
:supplied arg1)))
((unless (value-arithmeticp arg2))
(error (list :mistype-add
:required :arithmetic
:supplied arg2)))
(err (error (list :undefined-add arg1 arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (add-uint-uint val1 val2))
((sintp val1) (if (add-sint-sint-okp val1 val2)
(add-sint-sint val1 val2)
err))
((ulongp val1) (add-ulong-ulong val1 val2))
((slongp val1) (if (add-slong-slong-okp val1 val2)
(add-slong-slong val1 val2)
err))
((ullongp val1) (add-ullong-ullong val1 val2))
((sllongp val1) (if (add-sllong-sllong-okp val1 val2)
(add-sllong-sllong val1 val2)
err))
(t (error (impossible)))))
:guard-hints (("Goal" :use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-sub ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute subtraction [C:6.5.6/3] [C:6.5.6/4] [C:6.5.6/6]."
:long
(xdoc::topstring
(xdoc::p
"We do not support subtractions involving pointers for now."))
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-arithmeticp arg1))
(error (list :mistype-sub
:required :arithmetic
:supplied arg1)))
((unless (value-arithmeticp arg2))
(error (list :mistype-sub
:required :arithmetic
:supplied arg2)))
(err (error (list :undefined-sub arg1 arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (sub-uint-uint val1 val2))
((sintp val1) (if (sub-sint-sint-okp val1 val2)
(sub-sint-sint val1 val2)
err))
((ulongp val1) (sub-ulong-ulong val1 val2))
((slongp val1) (if (sub-slong-slong-okp val1 val2)
(sub-slong-slong val1 val2)
err))
((ullongp val1) (sub-ullong-ullong val1 val2))
((sllongp val1) (if (sub-sllong-sllong-okp val1 val2)
(sub-sllong-sllong val1 val2)
err))
(t (error (impossible)))))
:guard-hints (("Goal" :use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-shl ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute left shifts [C:6.5.7/2] [C:6.5.7/3] [C:6.5.7/4]."
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-integerp arg1))
(error (list :mistype-shl
:required :integer
:supplied arg1)))
(val1 (promote-value arg1))
((unless (value-integerp arg2))
(error (list :mistype-shl
:required :integer
:supplied arg2)))
(val2 (promote-value arg2))
(val2 (exec-integer val2))
(err (error (list :undefined-shl arg1 arg2))))
(cond
((uintp val1) (if (shl-uint-okp val1 val2)
(shl-uint val1 val2)
err))
((sintp val1) (if (shl-sint-okp val1 val2)
(shl-sint val1 val2)
err))
((ulongp val1) (if (shl-ulong-okp val1 val2)
(shl-ulong val1 val2)
err))
((slongp val1) (if (shl-slong-okp val1 val2)
(shl-slong val1 val2)
err))
((ullongp val1) (if (shl-ullong-okp val1 val2)
(shl-ullong val1 val2)
err))
((sllongp val1) (if (shl-sllong-okp val1 val2)
(shl-sllong val1 val2)
err))
(t (error (impossible)))))
:guard-hints (("Goal"
:use ((:instance values-of-promote-value (val arg1))
(:instance values-of-promote-value (val arg2)))
:in-theory (enable value-arithmeticp
value-realp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-shr ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute right shifts [C:6.5.7/2] [C:6.5.7/3] [C:6.5.7/5]."
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-integerp arg1))
(error (list :mistype-shr
:required :integer
:supplied arg1)))
(val1 (promote-value arg1))
((unless (value-integerp arg2))
(error (list :mistype-shr
:required :integer
:supplied arg2)))
(val2 (promote-value arg2))
(val2 (exec-integer val2))
((when (errorp val2)) val2)
(err (error (list :undefined-shr arg1 arg2))))
(cond
((uintp val1) (if (shr-uint-okp val1 val2) (shr-uint val1 val2) err))
((sintp val1) (if (shr-sint-okp val1 val2) (shr-sint val1 val2) err))
((ulongp val1) (if (shr-ulong-okp val1 val2) (shr-ulong val1 val2) err))
((slongp val1) (if (shr-slong-okp val1 val2) (shr-slong val1 val2) err))
((ullongp val1) (if (shr-ullong-okp val1 val2) (shr-ullong val1 val2) err))
((sllongp val1) (if (shr-sllong-okp val1 val2) (shr-sllong val1 val2) err))
(t (error (impossible)))))
:guard-hints (("Goal"
:use ((:instance values-of-promote-value (val arg1))
(:instance values-of-promote-value (val arg2)))
:in-theory (enable value-arithmeticp
value-realp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-lt ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute less-than [C:6.5.8/2] [C:6.5.8/3] [C:6.5.8/6]."
:long
(xdoc::topstring
(xdoc::p
"We do not support comparisons involving pointers for now."))
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-realp arg1))
(error (list :mistype-lt
:required :arithmetic
:supplied arg1)))
((unless (value-realp arg2))
(error (list :mistype-lt
:required :arithmetic
:supplied arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (lt-uint-uint val1 val2))
((sintp val1) (lt-sint-sint val1 val2))
((ulongp val1) (lt-ulong-ulong val1 val2))
((slongp val1) (lt-slong-slong val1 val2))
((ullongp val1) (lt-ullong-ullong val1 val2))
((sllongp val1) (lt-sllong-sllong val1 val2))
(t (error (impossible)))))
:guard-hints (("Goal"
:use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))
:in-theory (enable value-arithmeticp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-gt ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute greater-than [C:6.5.8/2] [C:6.5.8/3] [C:6.5.8/6]."
:long
(xdoc::topstring
(xdoc::p
"We do not support comparisons involving pointers for now."))
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-realp arg1))
(error (list :mistype-gt
:required :arithmetic
:supplied arg1)))
((unless (value-realp arg2))
(error (list :mistype-gt
:required :arithmetic
:supplied arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (gt-uint-uint val1 val2))
((sintp val1) (gt-sint-sint val1 val2))
((ulongp val1) (gt-ulong-ulong val1 val2))
((slongp val1) (gt-slong-slong val1 val2))
((ullongp val1) (gt-ullong-ullong val1 val2))
((sllongp val1) (gt-sllong-sllong val1 val2))
(t (error (impossible)))))
:guard-hints (("Goal"
:use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))
:in-theory (enable value-arithmeticp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-le ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute less-than-or-equal-to [C:6.5.8/2] [C:6.5.8/3] [C:6.5.8/6]."
:long
(xdoc::topstring
(xdoc::p
"We do not support comparisons involving pointers for now."))
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-realp arg1))
(error (list :mistype-le
:required :arithmetic
:supplied arg1)))
((unless (value-realp arg2))
(error (list :mistype-le
:required :arithmetic
:supplied arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (le-uint-uint val1 val2))
((sintp val1) (le-sint-sint val1 val2))
((ulongp val1) (le-ulong-ulong val1 val2))
((slongp val1) (le-slong-slong val1 val2))
((ullongp val1) (le-ullong-ullong val1 val2))
((sllongp val1) (le-sllong-sllong val1 val2))
(t (error (impossible)))))
:guard-hints (("Goal"
:use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))
:in-theory (enable value-arithmeticp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-ge ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute greater-than-or-equal-to [C:6.5.8/2] [C:6.5.8/3] [C:6.5.8/6]."
:long
(xdoc::topstring
(xdoc::p
"We do not support comparisons involving pointers for now."))
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-realp arg1))
(error (list :mistype-ge
:required :arithmetic
:supplied arg1)))
((unless (value-realp arg2))
(error (list :mistype-ge
:required :arithmetic
:supplied arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (ge-uint-uint val1 val2))
((sintp val1) (ge-sint-sint val1 val2))
((ulongp val1) (ge-ulong-ulong val1 val2))
((slongp val1) (ge-slong-slong val1 val2))
((ullongp val1) (ge-ullong-ullong val1 val2))
((sllongp val1) (ge-sllong-sllong val1 val2))
(t (error (impossible)))))
:guard-hints (("Goal"
:use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))
:in-theory (enable value-arithmeticp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-eq ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute equality [C:6.5.9/2] [C:6.5.9/3] [C:6.5.9/4]."
:long
(xdoc::topstring
(xdoc::p
"We do not support comparisons involving pointers for now."))
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-arithmeticp arg1))
(error (list :mistype-eq
:required :arithmetic
:supplied arg1)))
((unless (value-arithmeticp arg2))
(error (list :mistype-eq
:required :arithmetic
:supplied arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (eq-uint-uint val1 val2))
((sintp val1) (eq-sint-sint val1 val2))
((ulongp val1) (eq-ulong-ulong val1 val2))
((slongp val1) (eq-slong-slong val1 val2))
((ullongp val1) (eq-ullong-ullong val1 val2))
((sllongp val1) (eq-sllong-sllong val1 val2))
(t (error (impossible)))))
:guard-hints (("Goal" :use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-ne ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute non-equality [C:6.5.9/2] [C:6.5.9/3] [C:6.5.9/4]."
:long
(xdoc::topstring
(xdoc::p
"We do not support comparisons involving pointers for now."))
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-arithmeticp arg1))
(error (list :mistype-ne
:required :arithmetic
:supplied arg1)))
((unless (value-arithmeticp arg2))
(error (list :mistype-ne
:required :arithmetic
:supplied arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (ne-uint-uint val1 val2))
((sintp val1) (ne-sint-sint val1 val2))
((ulongp val1) (ne-ulong-ulong val1 val2))
((slongp val1) (ne-slong-slong val1 val2))
((ullongp val1) (ne-ullong-ullong val1 val2))
((sllongp val1) (ne-sllong-sllong val1 val2))
(t (error (impossible)))))
:guard-hints (("Goal" :use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-bitand ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute bitwise cojunction [C:6.5.10]."
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-integerp arg1))
(error (list :mistype-bitand
:required :integer
:supplied arg1)))
((unless (value-integerp arg2))
(error (list :mistype-bitand
:required :integer
:supplied arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (bitand-uint-uint val1 val2))
((sintp val1) (bitand-sint-sint val1 val2))
((ulongp val1) (bitand-ulong-ulong val1 val2))
((slongp val1) (bitand-slong-slong val1 val2))
((ullongp val1) (bitand-ullong-ullong val1 val2))
((sllongp val1) (bitand-sllong-sllong val1 val2))
(t (error (impossible)))))
:guard-hints (("Goal"
:use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))
:in-theory (enable value-arithmeticp value-realp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-bitxor ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute bitwise cojunction [C:6.5.11]."
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-integerp arg1))
(error (list :mistype-bitxor
:required :integer
:supplied arg1)))
((unless (value-integerp arg2))
(error (list :mistype-bitxor
:required :integer
:supplied arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (bitxor-uint-uint val1 val2))
((sintp val1) (bitxor-sint-sint val1 val2))
((ulongp val1) (bitxor-ulong-ulong val1 val2))
((slongp val1) (bitxor-slong-slong val1 val2))
((ullongp val1) (bitxor-ullong-ullong val1 val2))
((sllongp val1) (bitxor-sllong-sllong val1 val2))
(t (error (impossible)))))
:guard-hints (("Goal"
:use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))
:in-theory (enable value-arithmeticp value-realp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-bitior ((arg1 valuep) (arg2 valuep))
:returns (result value-resultp)
:short "Execute bitwise cojunction [C:6.5.12]."
(b* ((arg1 (value-fix arg1))
(arg2 (value-fix arg2))
((unless (value-integerp arg1))
(error (list :mistype-bitior
:required :integer
:supplied arg1)))
((unless (value-integerp arg2))
(error (list :mistype-bitior
:required :integer
:supplied arg2)))
((mv val1 val2) (uaconvert-values arg1 arg2)))
(cond
((uintp val1) (bitior-uint-uint val1 val2))
((sintp val1) (bitior-sint-sint val1 val2))
((ulongp val1) (bitior-ulong-ulong val1 val2))
((slongp val1) (bitior-slong-slong val1 val2))
((ullongp val1) (bitior-ullong-ullong val1 val2))
((sllongp val1) (bitior-sllong-sllong val1 val2))
(t (error (impossible)))))
:guard-hints (("Goal"
:use (:instance values-of-uaconvert-values
(val1 arg1) (val2 arg2))
:in-theory (enable value-arithmeticp value-realp)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-binary-strict-pure ((op binopp)
(arg1 value-resultp)
(arg2 value-resultp))
:guard (and (binop-strictp op)
(binop-purep op))
:returns (result value-resultp)
:short "Execute a binary expression with a strict pure operator."
:long
(xdoc::topstring
(xdoc::p
"The arguments are the results of
recursively executing the operand expressions,
both of which must be considered because the operator is non-strict.")
(xdoc::p
"These operators are pure,
so we just return a value as result (if there is no error)."))
(b* ((arg1 (value-result-fix arg1))
(arg2 (value-result-fix arg2))
((when (errorp arg1)) arg1)
((when (errorp arg2)) arg2))
(case (binop-kind op)
(:mul (exec-mul arg1 arg2))
(:div (exec-div arg1 arg2))
(:rem (exec-rem arg1 arg2))
(:add (exec-add arg1 arg2))
(:sub (exec-sub arg1 arg2))
(:shl (exec-shl arg1 arg2))
(:shr (exec-shr arg1 arg2))
(:lt (exec-lt arg1 arg2))
(:gt (exec-gt arg1 arg2))
(:le (exec-le arg1 arg2))
(:ge (exec-ge arg1 arg2))
(:eq (exec-eq arg1 arg2))
(:ne (exec-ne arg1 arg2))
(:bitand (exec-bitand arg1 arg2))
(:bitxor (exec-bitxor arg1 arg2))
(:bitior (exec-bitior arg1 arg2))
(t (error (impossible)))))
:guard-hints (("Goal" :in-theory (enable binop-strictp binop-purep)))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-cast ((tyname tynamep) (arg value-resultp))
:returns (result value-resultp)
:short "Execute a cast expression."
:long
(xdoc::topstring
(xdoc::p
"For now we only support casts between integer types.
None involving pointers.")
(xdoc::p
"We reject casts to @('void'),
because a scalar type is required [C:6.5.4/2]."))
(b* ((arg (value-result-fix arg))
((when (errorp arg)) arg)
(type (tyname-to-type tyname))
(err (error (list :cast-undefined :from arg :to type)))
(todo (error (list :cast-todo :from arg :to type)))
(void (error (list :cast-void :from arg :to type))))
(cond ((ucharp arg)
(type-case
type
:void void
:char todo
:uchar arg
:schar (if (schar-from-uchar-okp arg) (schar-from-uchar arg) err)
:ushort (ushort-from-uchar arg)
:sshort (if (sshort-from-uchar-okp arg) (sshort-from-uchar arg) err)
:uint (uint-from-uchar arg)
:sint (if (sint-from-uchar-okp arg) (sint-from-uchar arg) err)
:ulong (ulong-from-uchar arg)
:slong (if (slong-from-uchar-okp arg) (slong-from-uchar arg) err)
:ullong (ullong-from-uchar arg)
:sllong (if (sllong-from-uchar-okp arg) (sllong-from-uchar arg) err)
:struct todo
:pointer todo
:array todo))
((scharp arg)
(type-case
type
:void void
:char todo
:uchar (uchar-from-schar arg)
:schar arg
:ushort (ushort-from-schar arg)
:sshort (sshort-from-schar arg)
:uint (uint-from-schar arg)
:sint (sint-from-schar arg)
:ulong (ulong-from-schar arg)
:slong (slong-from-schar arg)
:ullong (ullong-from-schar arg)
:sllong (sllong-from-schar arg)
:struct todo
:pointer todo
:array todo))
((ushortp arg)
(type-case
type
:void void
:char todo
:uchar (uchar-from-ushort arg)
:schar (if (schar-from-ushort-okp arg) (schar-from-ushort arg) err)
:ushort arg
:sshort (if (sshort-from-ushort-okp arg) (sshort-from-ushort arg) err)
:uint (uint-from-ushort arg)
:sint (if (sint-from-ushort-okp arg) (sint-from-ushort arg) err)
:ulong (ulong-from-ushort arg)
:slong (if (slong-from-ushort-okp arg) (slong-from-ushort arg) err)
:ullong (ullong-from-ushort arg)
:sllong (if (sllong-from-ushort-okp arg) (sllong-from-ushort arg) err)
:struct todo
:pointer todo
:array todo))
((sshortp arg)
(type-case
type
:void void
:char todo
:uchar (uchar-from-sshort arg)
:schar (if (schar-from-sshort-okp arg) (schar-from-sshort arg) err)
:ushort (ushort-from-sshort arg)
:sshort arg
:uint (uint-from-sshort arg)
:sint (sint-from-sshort arg)
:ulong (ulong-from-sshort arg)
:slong (slong-from-sshort arg)
:ullong (ullong-from-sshort arg)
:sllong (sllong-from-sshort arg)
:struct todo
:pointer todo
:array todo))
((uintp arg)
(type-case
type
:void void
:char todo
:uchar (uchar-from-uint arg)
:schar (if (schar-from-uint-okp arg) (schar-from-uint arg) err)
:ushort (ushort-from-uint arg)
:sshort (if (sshort-from-uint-okp arg) (sshort-from-uint arg) err)
:uint arg
:sint (if (sint-from-uint-okp arg) (sint-from-uint arg) err)
:ulong (ulong-from-uint arg)
:slong (if (slong-from-uint-okp arg) (slong-from-uint arg) err)
:ullong (ullong-from-uint arg)
:sllong (if (sllong-from-uint-okp arg) (sllong-from-uint arg) err)
:struct todo
:pointer todo
:array todo))
((sintp arg)
(type-case
type
:void void
:char todo
:uchar (uchar-from-sint arg)
:schar (if (schar-from-sint-okp arg) (schar-from-sint arg) err)
:ushort (ushort-from-sint arg)
:sshort (if (sshort-from-sint-okp arg) (sshort-from-sint arg) err)
:uint (uint-from-sint arg)
:sint arg
:ulong (ulong-from-sint arg)
:slong (slong-from-sint arg)
:ullong (ullong-from-sint arg)
:sllong (sllong-from-sint arg)
:struct todo
:pointer todo
:array todo))
((ulongp arg)
(type-case
type
:void void
:char todo
:uchar (uchar-from-ulong arg)
:schar (if (schar-from-ulong-okp arg) (schar-from-ulong arg) err)
:ushort (ushort-from-ulong arg)
:sshort (if (sshort-from-ulong-okp arg) (sshort-from-ulong arg) err)
:uint (uint-from-ulong arg)
:sint (if (sint-from-ulong-okp arg) (sint-from-ulong arg) err)
:ulong arg
:slong (if (slong-from-ulong-okp arg) (slong-from-ulong arg) err)
:ullong (ullong-from-ulong arg)
:sllong (if (sllong-from-ulong-okp arg) (sllong-from-ulong arg) err)
:struct todo
:pointer todo
:array todo))
((slongp arg)
(type-case
type
:void void
:char todo
:uchar (uchar-from-slong arg)
:schar (if (schar-from-slong-okp arg) (schar-from-slong arg) err)
:ushort (ushort-from-slong arg)
:sshort (if (sshort-from-slong-okp arg) (sshort-from-slong arg) err)
:uint (uint-from-slong arg)
:sint (if (sint-from-slong-okp arg) (sint-from-slong arg) err)
:ulong (ulong-from-slong arg)
:slong arg
:ullong (ullong-from-slong arg)
:sllong (sllong-from-slong arg)
:struct todo
:pointer todo
:array todo))
((ullongp arg)
(type-case
type
:void void
:char todo
:uchar (uchar-from-ullong arg)
:schar (if (schar-from-ullong-okp arg) (schar-from-ullong arg) err)
:ushort (ushort-from-ullong arg)
:sshort (if (sshort-from-ullong-okp arg) (sshort-from-ullong arg) err)
:uint (uint-from-ullong arg)
:sint (if (sint-from-ullong-okp arg) (sint-from-ullong arg) err)
:ulong (ulong-from-ullong arg)
:slong (if (slong-from-ullong-okp arg) (slong-from-ullong arg) err)
:ullong arg
:sllong (if (sllong-from-ullong-okp arg) (sllong-from-ullong arg) err)
:struct todo
:pointer todo
:array todo))
((sllongp arg)
(type-case
type
:void void
:char todo
:uchar (uchar-from-sllong arg)
:schar (if (schar-from-sllong-okp arg) (schar-from-sllong arg) err)
:ushort (ushort-from-sllong arg)
:sshort (if (sshort-from-sllong-okp arg) (sshort-from-sllong arg) err)
:uint (uint-from-sllong arg)
:sint (if (sint-from-sllong-okp arg) (sint-from-sllong arg) err)
:ulong (ulong-from-sllong arg)
:slong (if (slong-from-sllong-okp arg) (slong-from-sllong arg) err)
:ullong (ullong-from-sllong arg)
:sllong arg
:struct todo
:pointer todo
:array todo))
((value-case arg :pointer) todo)
((value-case arg :array) todo)
((value-case arg :struct) todo)
(t (error (impossible)))))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-arrsub ((arr value-resultp)
(sub value-resultp)
(compst compustatep))
:returns (result value-resultp)
:short "Execute an array subscripting expression."
:long
(xdoc::topstring
(xdoc::p
"The first operand must be a non-null pointer to an array
of type consistent with the array.
The second operand must be an integer value (of any integer type).
The resulting index must be in range for the array,
and the indexed element is returned as result."))
(b* ((arr (value-result-fix arr))
((when (errorp arr)) arr)
((unless (value-case arr :pointer))
(error (list :mistype-arrsub
:required :pointer
:supplied (type-of-value arr))))
((when (value-pointer-nullp arr)) (error (list :null-pointer)))
(objdes (value-pointer->designator arr))
(reftype (value-pointer->reftype arr))
(array (read-object objdes compst))
((when (errorp array))
(error (list :array-not-found arr (compustate-fix compst))))
((unless (value-case array :array))
(error (list :not-array arr (compustate-fix compst))))
((unless (equal reftype (value-array->elemtype array)))
(error (list :mistype-array-read
:pointer reftype
:array (value-array->elemtype array))))
(sub (value-result-fix sub))
((when (errorp sub)) sub)
((unless (value-integerp sub)) (error
(list :mistype-array :index
:required :integer
:supplied (type-of-value sub))))
(index (exec-integer sub))
((when (< index 0)) (error (list :negative-array-index
:pointer arr
:array array
:index sub))))
(value-array-read index array))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-memberp ((str value-resultp) (mem identp) (compst compustatep))
:returns (result value-resultp)
:short "Execute a structure pointer member expression."
:long
(xdoc::topstring
(xdoc::p
"This is for the @('->') operator.
The operand must be a non-null pointer to a structure
of type consistent with the structure.
The named member must be in the structure.
The value associated to the member is returned."))
(b* ((str (value-result-fix str))
((when (errorp str)) str)
((unless (value-case str :pointer))
(error (list :mistype-memberp
:required :pointer
:supplied (type-of-value str))))
((when (value-pointer-nullp str)) (error (list :null-pointer)))
(objdes (value-pointer->designator str))
(reftype (value-pointer->reftype str))
(struct (read-object objdes compst))
((when (errorp struct))
(error (list :struct-not-found str (compustate-fix compst))))
((unless (value-case struct :struct))
(error (list :not-struct str (compustate-fix compst))))
((unless (equal reftype
(type-struct (value-struct->tag struct))))
(error (list :mistype-struct-read
:pointer reftype
:array (type-struct (value-struct->tag struct))))))
(value-struct-read mem struct))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-arrsub-of-memberp ((str value-resultp)
(mem identp)
(sub value-resultp)
(compst compustatep))
:returns (result value-resultp)
:short "Execute an array subscripting expression
of a structure pointer member expression."
:long
(xdoc::topstring
(xdoc::p
"This is a combination of @(tsee exec-arrsub) and @(tsee exec-memberp),
but it is defined as a separate function because currently
those two functions are not really compositional.
Our current semantics of C is correct for the purposes of ATC,
but it is not full-fledged and compositional.
In particular, it should (and will) be extended so that
expression execution returns either a value or an object designator.")
(xdoc::p
"So here we formalize the execution of expressions of the form @('s->m[i]'),
where @('s') is a pointer to a structure,
@('m') is the name of a member of the structure of array type,
and @('i') is an index into the array."))
(b* ((str (value-result-fix str))
((when (errorp str)) str)
((unless (value-case str :pointer))
(error (list :mistype-arrsub-of-memberp
:required :pointer
:supplied (type-of-value str))))
((when (value-pointer-nullp str)) (error (list :null-pointer)))
(objdes (value-pointer->designator str))
(reftype (value-pointer->reftype str))
(struct (read-object objdes compst))
((when (errorp struct))
(error (list :struct-not-found str (compustate-fix compst))))
((unless (value-case struct :struct))
(error (list :not-struct str (compustate-fix compst))))
((unless (equal reftype
(type-struct (value-struct->tag struct))))
(error (list :mistype-struct-read
:pointer reftype
:array (type-struct (value-struct->tag struct)))))
(arr (value-struct-read mem struct))
((when (errorp arr)) arr)
((unless (value-case arr :array))
(error (list :not-array arr)))
(sub (value-result-fix sub))
((when (errorp sub)) sub)
((unless (value-integerp sub)) (error
(list :mistype-array :index
:required :integer
:supplied (type-of-value sub))))
(index (exec-integer sub))
((when (< index 0)) (error (list :negative-array-index
:array arr
:index sub))))
(value-array-read index arr))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-expr-pure ((e exprp) (compst compustatep))
:returns (result value-resultp)
:short "Execute a pure expression."
:long
(xdoc::topstring
(xdoc::p
"We return an error if we encounter a non-pure expression.
While function calls do not necessarily have side effects,
establishing that requires looking at the function.
Thus, for simplicity, we regard function calls to be non-pure,
i.e. we return an error if we encounter them here.")
(xdoc::p
"We also reject pre/post-increment/decrement expressions,
which are obviously non-pure.")
(xdoc::p
"We use a specialized ACL2 function for the case of
an array subscript expression
whose array is a structure read expression by pointer.
See @(tsee exec-arrsub-of-memberp) for motivation.")
(xdoc::p
"Recall that our C abstract syntax does not cover
all the possible C expressions yet.
Thus, we may extend this ACL2 function
with support for more kinds of pure expressions in the future.")
(xdoc::p
"If no error occurs, none of the expressions has side effects.
Thus, the order in which the subexpressions are evaluated does not matter:
we just proceed left to right."))
(b* ((e (expr-fix e)))
(expr-case
e
:ident (exec-ident e.get compst)
:const (exec-const e.get)
:arrsub (case (expr-kind e.arr)
(:memberp
(b* (((expr-memberp e.arr) e.arr))
(exec-arrsub-of-memberp (exec-expr-pure e.arr.target compst)
e.arr.name
(exec-expr-pure e.sub compst)
compst)))
(t (exec-arrsub (exec-expr-pure e.arr compst)
(exec-expr-pure e.sub compst)
compst)))
:call (error (list :non-pure-expr e))
:member (error (list :not-supported-yet e))
:memberp (exec-memberp (exec-expr-pure e.target compst)
e.name
compst)
:postinc (error (list :non-pure-expr e))
:postdec (error (list :non-pure-expr e))
:preinc (error (list :non-pure-expr e))
:predec (error (list :non-pure-expr e))
:unary (exec-unary e.op (exec-expr-pure e.arg compst))
:cast (exec-cast e.type (exec-expr-pure e.arg compst))
:binary (b* (((unless (binop-purep e.op)) (error (list :non-pure-expr e))))
(case (binop-kind e.op)
(:logand
(b* ((test1 (exec-test (exec-expr-pure e.arg1 compst)))
((when (errorp test1)) test1)
((when (not test1)) (sint 0))
(test2 (exec-test (exec-expr-pure e.arg2 compst)))
((when (errorp test2)) test2))
(if test2 (sint 1) (sint 0))))
(:logor
(b* ((test1 (exec-test (exec-expr-pure e.arg1 compst)))
((when (errorp test1)) test1)
((when test1) (sint 1))
(test2 (exec-test (exec-expr-pure e.arg2 compst)))
((when (errorp test2)) test2))
(if test2 (sint 1) (sint 0))))
(t (exec-binary-strict-pure e.op
(exec-expr-pure e.arg1 compst)
(exec-expr-pure e.arg2 compst)))))
:cond (b* ((test (exec-test (exec-expr-pure e.test compst)))
((when (errorp test)) test))
(if test
(exec-expr-pure e.then compst)
(exec-expr-pure e.else compst)))))
:measure (expr-count e)
:hooks (:fix)
:verify-guards nil ; done below
///
(defret value-resultp-of-exec-expr-pure-forward
(value-resultp result)
:rule-classes ((:forward-chaining
:trigger-terms ((exec-expr-pure e compst)))))
(verify-guards exec-expr-pure
:hints (("Goal" :in-theory (enable binop-strictp)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-expr-pure-list ((es expr-listp) (compst compustatep))
:returns (result
value-list-resultp
:hints (("Goal"
:in-theory
(enable
valuep-when-value-resultp-and-not-errorp
value-listp-when-value-list-resultp-and-not-errorp))))
:short "Execute a list of pure expression."
:long
(xdoc::topstring
(xdoc::p
"This is used, in particular,
for the argument expressions a function call.")
(xdoc::p
"Given that the expression have no side effects (if there is no error),
the order of evaluation does not matter.
Thus, we proceed left to right."))
(b* (((when (endp es)) nil)
(val (exec-expr-pure (car es) compst))
((when (errorp val)) val)
(vals (exec-expr-pure-list (cdr es) compst))
((when (errorp vals)) vals))
(cons val vals))
:hooks (:fix))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define init-scope ((formals param-declon-listp) (actuals value-listp))
:returns (result scope-resultp
:hints (("Goal"
:in-theory
(enable scopep-when-scope-resultp-and-not-errorp))))
:short "Initialize the variable scope for a function call."
:long
(xdoc::topstring
(xdoc::p
"We go through formal parameters and actual arguments,
pairing them up into the scope.
We return an error if they do not match in number or types,
or if there are repeated parameters.
We perform array-to-pointer conversion on both types
before comparing them."))
(b* ((formals (param-declon-list-fix formals))
(actuals (value-list-fix actuals))
((when (endp formals))
(if (endp actuals)
nil
(error (list :init-scope :extra-actuals actuals))))
((when (endp actuals))
(error (list :init-scope :extra-formals formals)))
(scope (init-scope (cdr formals) (cdr actuals)))
((when (errorp scope)) scope)
(formal (car formals))
(actual (car actuals))
((mv name tyname) (param-declon-to-ident+tyname formal))
(formal-type (apconvert-type (tyname-to-type tyname)))
(actual-type (apconvert-type (type-of-value actual)))
((unless (equal formal-type actual-type))
(error (list :formal-actual-mistype
:name name
:formal formal-type
:actual actual-type))))
(if (omap::in name scope)
(error (list :init-scope :duplicate-param name))
(omap::update name actual scope)))
:hooks (:fix)
:measure (len formals)
:verify-guards nil ; done below
///
(verify-guards init-scope))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defines exec
:short "Mutually recursive functions for execution."
:flag-local nil
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-expr-call ((fun identp)
(args expr-listp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:returns (mv (result value-option-resultp)
(new-compst compustatep))
:parents (atc-execution exec)
:short "Execution a function call."
:long
(xdoc::topstring
(xdoc::p
"We return an optional value,
which is @('nil') for a function that returns @('void')."))
(b* (((when (zp limit)) (mv (error :limit) (compustate-fix compst)))
(vals (exec-expr-pure-list args compst))
((when (errorp vals)) (mv vals (compustate-fix compst))))
(exec-fun fun vals compst fenv (1- limit)))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-expr-call-or-pure ((e exprp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:returns (mv (result value-option-resultp)
(new-compst compustatep))
:parents (atc-execution exec)
:short "Execute a function call or a pure expression."
:long
(xdoc::topstring
(xdoc::p
"This is only used for expressions that must be
either function calls or pure.
If the expression is a call, we use @(tsee exec-expr-call).
Otherwise, we resort to @(tsee exec-expr-pure).")
(xdoc::p
"We return an optional value,
which is @('nil') for a function that returns @('void')."))
(b* (((when (zp limit)) (mv (error :limit) (compustate-fix compst)))
(e (expr-fix e)))
(if (expr-case e :call)
(exec-expr-call (expr-call->fun e)
(expr-call->args e)
compst
fenv
(1- limit))
(mv (exec-expr-pure e compst)
(compustate-fix compst))))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-expr-asg ((e exprp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:returns (new-compst compustate-resultp)
:parents (atc-execution exec)
:short "Execute an assignment expression."
:long
(xdoc::topstring
(xdoc::p
"This is only used for expressions that must be assignments.
For now we only support certain assignment expressions, with:")
(xdoc::ul
(xdoc::li
"A left-hand side consisting of
either a variable,
or an array subscripting expression
where the array is a variable,
or a structure pointer member expression
where the target is a variable,
or an array subscripting expression
where the array is a structure pointer member expression
where the target is a variable.")
(xdoc::li
"A right-hand side consisting of
a function call or a pure expression,
with the restriction that it must be a pure expression
when the left hand side is
an array subscripting expression;
in that case, the index expression must be also pure."))
(xdoc::p
"We ensure that if the right-hand side expression is a function call,
it returns a value (i.e. it is not @('void')).")
(xdoc::p
"We allow these assignment expressions
as the expressions of expression statements.
Thus, we discard the value of the assignment
(which is the value written to the variable);
this ACL2 function just returns an updated computation state."))
(b* (((when (zp limit)) (error :limit))
((unless (expr-case e :binary))
(error (list :expr-asg-not-binary (expr-fix e))))
(op (expr-binary->op e))
(left (expr-binary->arg1 e))
(right (expr-binary->arg2 e))
((unless (binop-case op :asg))
(error (list :expr-asg-not-asg op))))
(case (expr-kind left)
(:ident
(b* ((var (expr-ident->get left))
((mv val? compst)
(exec-expr-call-or-pure right compst fenv (1- limit)))
((when (errorp val?)) val?)
((when (not val?)) (error (list :asg-void-expr (expr-fix e))))
(val val?))
(write-var var val compst)))
(:arrsub
(b* ((arr (expr-arrsub->arr left))
(sub (expr-arrsub->sub left)))
(cond ((expr-case arr :ident)
(b* ((var (expr-ident->get arr))
(ptr (read-var var compst))
((when (errorp ptr)) ptr)
((unless (value-case ptr :pointer))
(error (list :mistype-array
:required :pointer
:supplied (type-of-value ptr))))
((when (value-pointer-nullp ptr))
(error (list :null-pointer)))
(objdes (value-pointer->designator ptr))
(reftype (value-pointer->reftype ptr))
(array (read-object objdes compst))
((when (errorp array)) array)
((unless (value-case array :array))
(error (list :not-array arr (compustate-fix compst))))
((unless (equal reftype (value-array->elemtype array)))
(error (list :mistype-array-read
:pointer reftype
:array (value-array->elemtype array))))
(index (exec-expr-pure sub compst))
((when (errorp index)) index)
((unless (value-integerp index))
(error (list :mistype-array-index
:required :integer
:found index)))
(index (exec-integer index))
((when (< index 0)) (error (list :negative-array-index
:pointer ptr
:array array
:index index)))
(val (exec-expr-pure right compst))
((when (errorp val)) val)
(new-array (value-array-write index val array))
((when (errorp new-array)) new-array))
(write-object objdes new-array compst)))
((expr-case arr :memberp)
(b* ((str (expr-memberp->target arr))
(mem (expr-memberp->name arr))
((unless (expr-case str :ident))
(error (list :expr-asg-arrsub-memberp-not-supported
str)))
(var (expr-ident->get str))
(ptr (read-var var compst))
((when (errorp ptr)) ptr)
((unless (value-case ptr :pointer))
(error (list :mistype-struct
:required :pointer
:supplied (type-of-value ptr))))
((when (value-pointer-nullp ptr))
(error (list :null-pointer)))
(objdes (value-pointer->designator ptr))
(reftype (value-pointer->reftype ptr))
(struct (read-object objdes compst))
((when (errorp struct)) struct)
((unless (value-case struct :struct))
(error (list :not-struct str (compustate-fix compst))))
((unless (equal reftype
(type-of-value struct)))
(error (list :mistype-struct-read
:pointer reftype
:struct (type-of-value struct))))
(array (value-struct-read mem struct))
((when (errorp array)) array)
((unless (value-case array :array))
(error (list :not-array array)))
(index (exec-expr-pure sub compst))
((when (errorp index)) index)
((unless (value-integerp index))
(error (list :mistype-struct-array-read
:required :integer
:supplied index)))
(index (exec-integer index))
((when (< index 0)) (error (list :negative-array-index
:pointer ptr
:array array
:index index)))
(val (exec-expr-pure right compst))
((when (errorp val)) val)
(new-array (value-array-write index val array))
((when (errorp new-array)) new-array)
(new-struct (value-struct-write mem new-array struct))
((when (errorp new-struct)) new-struct))
(write-object objdes new-struct compst)))
(t (error (list :expr-asg-arrsub-not-supported arr))))))
(:memberp
(b* ((str (expr-memberp->target left))
(mem (expr-memberp->name left))
((unless (expr-case str :ident))
(error (list :expr-asg-memberp-not-var left)))
(var (expr-ident->get str))
(ptr (read-var var compst))
((when (errorp ptr)) ptr)
((unless (value-case ptr :pointer))
(error (list :mistype-struct
:required :pointer
:supplied (type-of-value ptr))))
((when (value-pointer-nullp ptr)) (error (list :null-pointer)))
(objdes (value-pointer->designator ptr))
(reftype (value-pointer->reftype ptr))
(struct (read-object objdes compst))
((when (errorp struct)) struct)
((unless (value-case struct :struct))
(error (list :not-struct str (compustate-fix compst))))
((unless (equal reftype
(type-of-value struct)))
(error (list :mistype-struct-read
:pointer reftype
:struct (type-of-value struct))))
(val (exec-expr-pure right compst))
((when (errorp val)) val)
(new-struct (value-struct-write mem val struct))
((when (errorp new-struct)) new-struct))
(write-object objdes new-struct compst)))
(t (error (list :expr-asg-left-not-var-or-array-var-subscript left)))))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-expr-call-or-asg ((e exprp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:returns (new-compst compustate-resultp)
:parents (atc-execution exec)
:short "Execute a function call or assignment expression."
:long
(xdoc::topstring
(xdoc::p
"This is used for expressions used as expression statements.
Thus, in the case of a function call,
we discard the returned value, if any."))
(b* (((when (zp limit)) (error :limit)))
(if (expr-case e :call)
(b* (((mv result compst)
(exec-expr-call (expr-call->fun e)
(expr-call->args e)
compst
fenv
(1- limit)))
((when (errorp result)) result))
compst)
(exec-expr-asg e compst fenv (1- limit))))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-fun ((fun identp)
(args value-listp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:returns (mv (result value-option-resultp)
(new-compst compustatep))
:parents (atc-execution exec)
:short "Execute a function on argument values."
:long
(xdoc::topstring
(xdoc::p
"We retrieve the information about the function from the environment.
We initialize a scope with the argument values,
and we push a frame onto the call stack.
We execute the function body,
which must return a result that matches the function's result type.
We pop the frame and return the value of the function call as result."))
(b* (((when (zp limit)) (mv (error :limit) (compustate-fix compst)))
(info (fun-env-lookup fun fenv))
((when (not info))
(mv (error (list :function-undefined (ident-fix fun)))
(compustate-fix compst)))
((fun-info info) info)
(scope (init-scope info.params args))
((when (errorp scope)) (mv scope (compustate-fix compst)))
(frame (make-frame :function fun :scopes (list scope)))
(compst (push-frame frame compst))
((mv val? compst) (exec-block-item-list info.body
compst
fenv
(1- limit)))
(compst (pop-frame compst))
((when (errorp val?)) (mv val? compst))
((unless (equal (type-of-value-option val?)
(tyname-to-type info.result)))
(mv (error (list :return-value-mistype
:required info.result
:supplied (type-of-value-option val?)))
compst)))
(mv val? compst))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-stmt ((s stmtp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:guard (> (compustate-frames-number compst) 0)
:returns (mv (result value-option-resultp)
(new-compst compustatep))
:parents (atc-execution exec)
:short "Execute a statement."
:long
(xdoc::topstring
(xdoc::p
"For now we only support the execution of certain statements.")
(xdoc::p
"We only allow, and in fact require,
assignment expressions in expression statements.")
(xdoc::p
"For a compound statement (i.e. a block),
we enter a new (empty) scope prior to executing the block items,
and we exit that scope after executing the block items."))
(b* (((when (zp limit)) (mv (error :limit) (compustate-fix compst)))
(s (stmt-fix s)))
(stmt-case
s
:labeled (mv (error (list :exec-stmt s)) (compustate-fix compst))
:compound (b* ((compst (enter-scope compst))
((mv value? compst)
(exec-block-item-list s.items compst fenv (1- limit))))
(mv value? (exit-scope compst)))
:expr (b* ((compst/error (exec-expr-call-or-asg s.get
compst
fenv
(1- limit)))
((when (errorp compst/error))
(mv compst/error (compustate-fix compst))))
(mv nil compst/error))
:null (mv (error (list :exec-stmt s)) (compustate-fix compst))
:if (b* ((test (exec-test (exec-expr-pure s.test compst)))
((when (errorp test)) (mv test (compustate-fix compst))))
(if test
(exec-stmt s.then compst fenv (1- limit))
(mv nil (compustate-fix compst))))
:ifelse (b* ((test (exec-test (exec-expr-pure s.test compst)))
((when (errorp test)) (mv test (compustate-fix compst))))
(if test
(exec-stmt s.then compst fenv (1- limit))
(exec-stmt s.else compst fenv (1- limit))))
:switch (mv (error (list :exec-stmt s)) (compustate-fix compst))
:while (exec-stmt-while s.test s.body compst fenv (1- limit))
:dowhile (mv (error (list :exec-stmt s)) (compustate-fix compst))
:for (mv (error (list :exec-stmt s)) (compustate-fix compst))
:goto (mv (error (list :exec-stmt s)) (compustate-fix compst))
:continue (mv (error (list :exec-stmt s)) (compustate-fix compst))
:break (mv (error (list :exec-stmt s)) (compustate-fix compst))
:return (if (exprp s.value)
(b* (((mv val? compst)
(exec-expr-call-or-pure s.value
compst
fenv
(1- limit)))
((when (errorp val?)) (mv val? compst))
((when (not val?)) (mv (error (list :return-void-expr
s.value))
compst)))
(mv val? compst))
(mv nil (compustate-fix compst)))))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-stmt-while ((test exprp)
(body stmtp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:guard (> (compustate-frames-number compst) 0)
:returns (mv (result value-option-resultp)
(new-compst compustatep))
:parents (atc-execution exec)
:short "Execute a @('while') statement."
:long
(xdoc::topstring
(xdoc::p
"First, we execute the test.
If it yields a 0 scalar, we return a @('nil') value result,
because it means that the loop completes,
and execution can proceed with any code after the loop.
Otherwise, we recursively execute the body.
If the body returns a result,
we return it from this ACL2 function without continuing the loop.
If the body returns no result,
we re-execute the loop,
by calling this ACL2 function recursively."))
(b* (((when (zp limit)) (mv (error :limit) (compustate-fix compst)))
(continuep (exec-test (exec-expr-pure test compst)))
((when (errorp continuep)) (mv continuep (compustate-fix compst)))
((when (not continuep)) (mv nil (compustate-fix compst)))
((mv val? compst) (exec-stmt body compst fenv (1- limit)))
((when (errorp val?)) (mv val? compst))
((when (valuep val?)) (mv val? compst)))
(exec-stmt-while test body compst fenv (1- limit)))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-initer ((initer initerp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:guard (> (compustate-frames-number compst) 0)
:returns (mv (result value-resultp)
(new-compst compustatep))
:parents (atc-execution exec)
:short "Execute an initializer."
:long
(xdoc::topstring
(xdoc::p
"For now we only accept single expressions.
The single expression must be a function call or a pure expression.
If it is a function call, it must return a value (not @('nil'))."))
(b* (((when (zp limit)) (mv (error :limit) (compustate-fix compst))))
(initer-case
initer
:single
(b* (((mv val compst) (exec-expr-call-or-pure initer.get
compst
fenv
(1- limit)))
((when (errorp val)) (mv val compst))
((when (not val))
(mv (error (list :void-initializer (initer-fix initer)))
compst)))
(mv val compst))
:list
(mv (error (list :array-initializer-not-supported (initer-fix initer)))
(compustate-fix compst))))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-block-item ((item block-itemp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:guard (and (> (compustate-frames-number compst) 0)
(> (compustate-top-frame-scopes-number compst) 0))
:returns (mv (result value-option-resultp)
(new-compst compustatep))
:parents (atc-execution exec)
:short "Execute a block item."
:long
(xdoc::topstring
(xdoc::p
"Besides an optional value result,
we also return a possibly updated computation state.")
(xdoc::p
"If the block item is a declaration,
we ensure it is a variable (not a structure type) declaration,
then we execute the expression,
then we add the variable to the top scope of the top frame.
The initializer value must have the same type as the variable,
which automatically excludes the case of the variable being @('void'),
since @(tsee type-of-value) never returns @('void')
(under the guard).")
(xdoc::p
"If the block item is a statement,
we execute it like any other statement."))
(b* (((when (zp limit)) (mv (error :limit) (compustate-fix compst))))
(block-item-case
item
:declon
(b* (((mv var tyname init) (obj-declon-to-ident+tyname+init item.get))
((mv init compst) (exec-initer init compst fenv (1- limit)))
((when (errorp init)) (mv init compst))
(type (tyname-to-type tyname))
((unless (equal type (type-of-value init)))
(mv (error (list :decl-var-mistype var
:required type
:supplied (type-of-value init)))
compst))
(new-compst (create-var var init compst))
((when (errorp new-compst)) (mv new-compst compst)))
(mv nil new-compst))
:stmt (exec-stmt item.get compst fenv (1- limit))))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define exec-block-item-list ((items block-item-listp)
(compst compustatep)
(fenv fun-envp)
(limit natp))
:guard (and (> (compustate-frames-number compst) 0)
(> (compustate-top-frame-scopes-number compst) 0))
:returns (mv (result value-option-resultp)
(new-compst compustatep))
:parents (atc-execution exec)
:short "Execute a list of block items."
:long
(xdoc::topstring
(xdoc::p
"We thread the computation state through the block items."))
(b* (((when (zp limit)) (mv (error :limit) (compustate-fix compst)))
((when (endp items)) (mv nil (compustate-fix compst)))
((mv val? compst) (exec-block-item (car items) compst fenv (1- limit)))
((when (errorp val?)) (mv val? compst))
((when (valuep val?)) (mv val? compst)))
(exec-block-item-list (cdr items) compst fenv (1- limit)))
:measure (nfix limit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
:prepwork ((local
(in-theory
(enable
value-optionp-when-value-option-resultp-and-not-errorp
compustatep-when-compustate-resultp-and-not-errorp))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
:verify-guards nil ; done below
///
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defret-mutual compustate-frames-number-of-exec
(defret compustate-frames-number-of-exec-expr-call
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst))
:fn exec-expr-call)
(defret compustate-frames-number-of-exec-expr-call-or-pure
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst))
:fn exec-expr-call-or-pure)
(defret compustate-frames-number-of-exec-expr-asg
(implies (compustatep new-compst)
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst)))
:fn exec-expr-asg)
(defret compustate-frames-number-of-exec-expr-call-or-asg
(implies (compustatep new-compst)
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst)))
:fn exec-expr-call-or-asg)
(defret compustate-frames-number-of-exec-fun
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst))
:fn exec-fun)
(defret compustate-frames-number-of-exec-stmt
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst))
:hyp (> (compustate-frames-number compst) 0)
:fn exec-stmt)
(defret compustate-frames-number-of-exec-stmt-while
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst))
:hyp (> (compustate-frames-number compst) 0)
:fn exec-stmt-while)
(defret compustate-frames-number-of-exec-initer
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst))
:hyp (> (compustate-frames-number compst) 0)
:fn exec-initer)
(defret compustate-frames-number-of-exec-block-item
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst))
:hyp (> (compustate-frames-number compst) 0)
:fn exec-block-item)
(defret compustate-frames-number-of-exec-block-item-list
(equal (compustate-frames-number new-compst)
(compustate-frames-number compst))
:hyp (> (compustate-frames-number compst) 0)
:fn exec-block-item-list)
:hints (("Goal" :expand ((exec-expr-call fun args compst fenv limit)
(exec-expr-call-or-pure e compst fenv limit)
(exec-expr-asg e compst fenv limit)
(exec-expr-call-or-asg e compst fenv limit)
(exec-fun fun args compst fenv limit)
(exec-stmt s compst fenv limit)
(exec-initer initer compst fenv limit)
(exec-block-item item compst fenv limit)
(exec-block-item-list items compst fenv limit)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defret-mutual compustate-scopes-numbers-of-exec
(defret compustate-scopes-numbers-of-exec-expr-call
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst))
:fn exec-expr-call)
(defret compustate-scopes-numbers-of-exec-expr-call-or-pure
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst))
:fn exec-expr-call-or-pure)
(defret compustate-scopes-numbers-of-exec-expr-asg
(implies (compustatep new-compst)
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst)))
:fn exec-expr-asg)
(defret compustate-scopes-numbers-of-exec-expr-call-or-asg
(implies (compustatep new-compst)
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst)))
:fn exec-expr-call-or-asg)
(defret compustate-scopes-numbers-of-exec-fun
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst))
:rule-classes nil
:fn exec-fun)
(defret compustate-scopes-numbers-of-exec-stmt
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst))
:hyp (> (compustate-frames-number compst) 0)
:fn exec-stmt)
(defret compustate-scopes-numbers-of-exec-stmt-while
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst))
:hyp (> (compustate-frames-number compst) 0)
:fn exec-stmt-while)
(defret compustate-scopes-numbers-of-exec-initer
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst))
:hyp (and (> (compustate-frames-number compst) 0)
(> (compustate-top-frame-scopes-number compst) 0))
:fn exec-initer)
(defret compustate-scopes-numbers-of-exec-block-item
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst))
:hyp (and (> (compustate-frames-number compst) 0)
(> (compustate-top-frame-scopes-number compst) 0))
:fn exec-block-item)
(defret compustate-scopes-numbers-of-exec-block-item-list
(equal (compustate-scopes-numbers new-compst)
(compustate-scopes-numbers compst))
:hyp (and (> (compustate-frames-number compst) 0)
(> (compustate-top-frame-scopes-number compst) 0))
:fn exec-block-item-list)
:hints (("Goal" :expand ((exec-expr-call fun args compst fenv limit)
(exec-expr-call-or-pure e compst fenv limit)
(exec-expr-asg e compst fenv limit)
(exec-expr-call-or-asg e compst fenv limit)
(exec-fun fun args compst fenv limit)
(exec-stmt s compst fenv limit)
(exec-stmt-while test body compst fenv limit)
(exec-initer initer compst fenv limit)
(exec-block-item item compst fenv limit)
(exec-block-item-list items compst fenv limit)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(verify-guards exec-stmt)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(fty::deffixequiv-mutual exec))
|