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
|
(**************************************************************************)
(* *)
(* The Why platform for program certification *)
(* *)
(* Copyright (C) 2002-2011 *)
(* *)
(* Jean-Christophe FILLIATRE, CNRS & Univ. Paris-sud 11 *)
(* Claude MARCHE, INRIA & Univ. Paris-sud 11 *)
(* Yannick MOY, Univ. Paris-sud 11 *)
(* Romain BARDOU, Univ. Paris-sud 11 *)
(* *)
(* Secondary contributors: *)
(* *)
(* Thierry HUBERT, Univ. Paris-sud 11 (former Caduceus front-end) *)
(* Nicolas ROUSSET, Univ. Paris-sud 11 (on Jessie & Krakatoa) *)
(* Ali AYAD, CNRS & CEA Saclay (floating-point support) *)
(* Sylvie BOLDO, INRIA (floating-point support) *)
(* Jean-Francois COUCHOT, INRIA (sort encodings, hyps pruning) *)
(* Mehdi DOGGUY, Univ. Paris-sud 11 (Why GUI) *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Lesser General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
(* TODO:
- In both retyping phases that add a level of indirection to locals:
- Retype variables of structure type
- Retype variables and fields whose address is taken
If the returned value dereferences a local, take the returned value in
a temporary before deallocating memory for the local variable and
returning. Mostly an issue of consistency: since it is a local variable
involved, it is retyped as a reference and no check is issued for
validity of dereference.
See ex roux3.c from Jessie test base.
Thanks to Pierre Roux for noting this.
*)
(* Import from Cil *)
open Cil_types
open Cil
open Cilutil
open Cil_datatype
open Ast_info
open Extlib
open Visitor
(* Utility functions *)
open Common
open Integer
(*****************************************************************************)
(* Retype variables of array type. *)
(*****************************************************************************)
(* TODO: retype predicate \valid_index and \valid_range
* E.g. in example array.c, "\valid_index(t,1)" for "t" being typed as
* "int t[3][3]", should be transformed into "\valid_range(t,3,5)".
*)
class retypeArrayVariables =
(* Variables originally of array type *)
let varset = ref Cil_datatype.Varinfo.Set.empty in
let lvarset = ref Cil_datatype.Logic_var.Set.empty in
(* Correspondance between variables and "straw" variables, that are used to
* replace the variable after some changes have been made on the AST,
* so that further exploration does not change it anymore. The "straw"
* variables are replaced by regular one before returning the modified AST.
*)
let var_to_strawvar = Cil_datatype.Varinfo.Hashtbl.create 17 in
let strawvar_to_var = Cil_datatype.Varinfo.Hashtbl.create 17 in
let lvar_to_strawlvar = Cil_datatype.Logic_var.Hashtbl.create 17 in
let strawlvar_to_lvar = Cil_datatype.Logic_var.Hashtbl.create 17 in
(* Variables to allocate *)
let allocvarset = ref Cil_datatype.Varinfo.Set.empty in
let alloclvarset = ref Cil_datatype.Logic_var.Set.empty in
(* Remember original array type even after variable modified *)
let var_to_array_type : typ Cil_datatype.Varinfo.Hashtbl.t = Cil_datatype.Varinfo.Hashtbl.create 0 in
let lvar_to_array_type = Cil_datatype.Logic_var.Hashtbl.create 17 in
(* As the rule would be reentrant, do not rely on the fact it is idempotent,
* and rather change the variable into its "straw" counterpart, as it is
* done in [preaction_expr]. Also make sure every top expression inside
* a left-value is an [Info], so that terms that were converted to
* expressions before treatment can be safely converted back.
*)
let preaction_lval (host,off as lv) =
match host with
| Var v ->
if Cil_datatype.Varinfo.Set.mem v !varset then begin
let strawv = Cil_datatype.Varinfo.Hashtbl.find var_to_strawvar v in
let loc = Cil_const.CurrentLoc.get() in
let host = Mem(mkInfo(new_exp ~loc (Lval(Var strawv,NoOffset)))) in
let off =
lift_offset (Cil_datatype.Varinfo.Hashtbl.find var_to_array_type v) off
in
host, off
end else
lv (* For terms, also corresponds to the case for Result *)
| Mem _ -> lv
in
let postaction_lval (host,off as lv) =
match host with
| Var strawv ->
begin try
let v = Cil_datatype.Varinfo.Hashtbl.find strawvar_to_var strawv in
Var v, off
with Not_found -> lv end
| Mem _ -> lv
in
let rec preaction_expr e =
let loc = e.eloc in
match e.enode with
| StartOf(Var v,off) ->
if Cil_datatype.Varinfo.Set.mem v !varset then begin
let ty = Cil_datatype.Varinfo.Hashtbl.find var_to_array_type v in
let strawv = Cil_datatype.Varinfo.Hashtbl.find var_to_strawvar v in
match lift_offset ty off with
| NoOffset -> new_exp ~loc (Lval(Var strawv,NoOffset))
| Index(ie,NoOffset) ->
let ptrty = TPtr(element_type ty,[]) in
new_exp ~loc (BinOp(PlusPI,
new_exp ~loc (Lval(Var strawv,NoOffset)),
ie,ptrty))
| Index _ | Field _ ->
(* Field with address taken treated separately *)
new_exp ~loc
(StartOf
(Mem(new_exp ~loc (Lval(Var strawv,NoOffset))),off))
end else e
| AddrOf(Var v,off) ->
if Cil_datatype.Varinfo.Set.mem v !varset then
begin
let ty = Cil_datatype.Varinfo.Hashtbl.find var_to_array_type v in
let strawv = Cil_datatype.Varinfo.Hashtbl.find var_to_strawvar v in
match lift_offset ty off with
| Index(ie,NoOffset) ->
let ptrty = TPtr(element_type ty,[]) in
new_exp ~loc
(BinOp(PlusPI,
new_exp ~loc (Lval(Var strawv,NoOffset)), ie,ptrty))
| NoOffset ->
unsupported "this instance of the address operator cannot be handled"
| Index _ | Field _ ->
(* Field with address taken treated separately *)
new_exp ~loc
(AddrOf(Mem(new_exp ~loc (Lval(Var strawv,NoOffset))),off))
end
else e
| BinOp(PlusPI,e1,e2,opty) ->
begin match (stripInfo e1).enode with
| StartOf(Var v,off) ->
let rec findtype ty = function
| NoOffset -> ty
| Index(_, roff) ->
findtype (direct_element_type ty) roff
| Field _ -> raise Not_found
in
if Cil_datatype.Varinfo.Set.mem v !varset then
let ty = Cil_datatype.Varinfo.Hashtbl.find var_to_array_type v in
(* Do not replace [v] by [strawv] here, as the sub-expression
* [e1] should be treated first. Do it right away so that
* the resulting AST is well-typed, which is crucial to apply
* this on expressions obtained from terms.
*)
let e1 = preaction_expr e1 in
let ty = findtype ty off in
let subty = direct_element_type ty in
if isArrayType subty then
let siz = array_size subty in
let e2 =
new_exp ~loc:e2.eloc
(BinOp(Mult,e2,constant_expr siz,intType)) in
new_exp ~loc (BinOp(PlusPI,e1,e2,opty))
else e
else e
| _ -> e
end
| _ -> e
in
object(self)
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vvdec v =
if isArrayType v.vtype && not (Cil_datatype.Varinfo.Set.mem v !varset) then
begin
assert (not v.vformal);
Cil_datatype.Varinfo.Hashtbl.add var_to_array_type v v.vtype;
let elemty = element_type v.vtype in
(* Store information that variable was originally of array type *)
varset := Cil_datatype.Varinfo.Set.add v !varset;
(* Change the variable type *)
let newty =
if My_bigint.gt (array_size v.vtype) My_bigint.zero then
begin
(* Change the type into "reference" type, that behaves almost like
* a pointer, except validity is ensured.
*)
let size = constant_expr (array_size v.vtype) in
(* Schedule for allocation *)
allocvarset := Cil_datatype.Varinfo.Set.add v !allocvarset;
mkTRefArray(elemty,size,[]);
end
else
(* Plain pointer type to array with zero size *)
TPtr(v.vtype,[]);
in
attach_globaction (fun () -> v.vtype <- newty);
(* Create a "straw" variable for this variable, with the correct type *)
let strawv = makePseudoVar newty in
Cil_datatype.Varinfo.Hashtbl.add var_to_strawvar v strawv;
Cil_datatype.Varinfo.Hashtbl.add strawvar_to_var strawv v;
end;
DoChildren
method vlogic_var_decl lv =
if not (Cil_datatype.Logic_var.Hashtbl.mem lvar_to_strawlvar lv) &&
app_term_type isArrayType false lv.lv_type then
begin
Cil_datatype.Logic_var.Hashtbl.add lvar_to_array_type lv
(force_app_term_type (fun x -> x) lv.lv_type);
let elemty = force_app_term_type element_type lv.lv_type in
lvarset := Cil_datatype.Logic_var.Set.add lv !lvarset;
let newty =
if My_bigint.gt
(force_app_term_type array_size lv.lv_type)
My_bigint.zero
then
begin
let size =
constant_expr (force_app_term_type array_size lv.lv_type)
in alloclvarset := Cil_datatype.Logic_var.Set.add lv !alloclvarset;
mkTRefArray(elemty,size,[])
end
else TPtr(elemty,[])
in attach_globaction (fun () -> lv.lv_type <- Ctype newty);
let strawlv = match lv.lv_origin with
None -> make_temp_logic_var (Ctype newty)
| Some v -> cvar_to_lvar (Cil_datatype.Varinfo.Hashtbl.find var_to_strawvar v)
in
Cil_datatype.Logic_var.Hashtbl.add lvar_to_strawlvar lv strawlv;
Cil_datatype.Logic_var.Hashtbl.add strawlvar_to_lvar strawlv lv
end;
DoChildren
method vglob_aux g = match g with
| GVar(v,_init,_loc) ->
(* Make sure variable declaration is treated before definition *)
ignore (visitFramacVarDecl (self:>frama_c_visitor) v);
if Cil_datatype.Varinfo.Set.mem v !allocvarset then
(* Allocate memory for new reference variable *)
let ty = Cil_datatype.Varinfo.Hashtbl.find var_to_array_type v in
let size = array_size ty in
(* Disabled: anyway, it is useless to generate code for that,
a post-condition should be generated instead (bts0284)
let elemty = element_type ty in
let ast = mkalloc_array_statement v elemty (array_size ty) loc in
attach_globinit ast;
*)
(* Define a global validity invariant *)
let p =
Pvalid_range(
variable_term v.vdecl (cvar_to_lvar v),
constant_term v.vdecl My_bigint.zero,
constant_term v.vdecl (My_bigint.pred size))
in
let globinv =
Cil_const.make_logic_info (unique_logic_name ("valid_" ^ v.vname)) in
globinv.l_labels <- [ LogicLabel(None,"Here") ];
globinv.l_body <- LBpred (predicate v.vdecl p);
attach_globaction (fun () -> Logic_utils.add_logic_function globinv);
ChangeTo [g;GAnnot(Dinvariant (globinv,v.vdecl),v.vdecl)]
else DoChildren
| GVarDecl _ | GFun _ | GAnnot _ -> DoChildren
| GCompTag _ | GType _ | GCompTagDecl _ | GEnumTagDecl _
| GEnumTag _ | GAsm _ | GPragma _ | GText _ -> SkipChildren
method vfunc f =
(* First change type of local array variables *)
List.iter (ignore $ visitFramacVarDecl (self:>frama_c_visitor)) f.slocals;
List.iter (ignore $ visitFramacVarDecl (self:>frama_c_visitor)) f.sformals;
(* Then allocate/deallocate memory for those that need it *)
List.iter (fun v ->
if Cil_datatype.Varinfo.Set.mem v !allocvarset then
let ty = Cil_datatype.Varinfo.Hashtbl.find var_to_array_type v in
let elemty = element_type ty in
let ast = mkalloc_array_statement v elemty
(My_bigint.to_int64 (array_size ty)) v.vdecl
in
add_pending_statement ~beginning:true ast;
let fst = mkfree_statement v v.vdecl in
add_pending_statement ~beginning:false fst
) f.slocals;
DoChildren
method vlval lv =
ChangeDoChildrenPost (preaction_lval lv, postaction_lval)
method vterm_lval =
do_on_term_lval (Some preaction_lval, Some postaction_lval)
method vexpr e =
ChangeDoChildrenPost (preaction_expr e, fun x -> x)
method vterm =
do_on_term (Some preaction_expr, None)
end
let retype_array_variables file =
(* Enforce the prototype of malloc to exist before visiting anything.
It might be useful for allocation pointers from arrays
*)
ignore (Common.malloc_function ());
ignore (Common.free_function ());
let visitor = new retypeArrayVariables in
visit_and_push_statements visit_and_update_globals visitor file
(*****************************************************************************)
(* Retype logic functions/predicates with structure parameters or return. *)
(*****************************************************************************)
(* logic parameter:
* - change parameter type to pointer to structure
* - change uses of parameters in logical annotations
* TODO: take care of logic variables introduced by let.
*)
class retypeLogicFunctions =
let varset = ref Cil_datatype.Logic_var.Set.empty in
let this_name : string ref = ref "" in
let change_this_type = ref false in (* Should "this" change? *)
let new_result_type = ref (Ctype voidType) in
let change_result_type = ref false in (* Should Result change? *)
let var lv =
match lv.lv_type with
| Ltype _ | Lvar _ | Linteger | Lreal | Larrow _ -> ()
| Ctype ty ->
if isStructOrUnionType ty then
unsupported "Jessie plugin does not support struct or union as parameter to logic functions. Please use a pointer instead."
(*
if isStructOrUnionType ty then
begin
varset := Cil_datatype.Logic_var.Set.add lv !varset;
lv.lv_type <- Ctype(mkTRef ty);
match lv.lv_origin with
| None -> ()
| Some v ->
(* For some obscure reason, logic function/predicate
* parameters are C variables.
*)
v.vtype <- mkTRef ty
end
*)
in
let postaction_term_lval (host,off) =
let host = match host with
| TVar lv ->
(* Oddly, "this" variable in type invariant is not declared
before use. Change its type on the fly.
*)
if !change_this_type && lv.lv_name = !this_name then
var lv;
if Cil_datatype.Logic_var.Set.mem lv !varset then
let tlval =
mkterm (TLval(host,TNoOffset)) lv.lv_type
(Cil_const.CurrentLoc.get())
in
TMem tlval
else host
| TResult _ ->
if !change_result_type then
match !new_result_type with
Ctype typ ->
let tlval = Logic_const.tresult typ in TMem tlval
| _ -> assert false (* result type of C function
must be a C type*)
else host
| TMem _t -> host
in
host, off
in
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vannotation =
let return_type ty =
change_result_type := false;
match ty with
| Ctype rt when isStructOrUnionType rt ->
begin
change_result_type := true;
let ty = Ctype(mkTRef rt "Norm.vannotation") in
new_result_type := ty;
ty
end
| Ctype _ | Ltype _ | Lvar _ | Linteger | Lreal | Larrow _ -> ty
in
let rec annot = function
| Dfun_or_pred (li,loc) ->
List.iter var li.l_profile;
begin
match li.l_type with
| None -> DoChildren
| Some rt ->
let li' = { li with l_type = Some (return_type rt)} in
ChangeDoChildrenPost (Dfun_or_pred (li',loc), fun x -> x)
end
| Dtype_annot (annot,loc) ->
begin match (List.hd annot.l_profile).lv_type with
| Ctype ty when isStructOrUnionType ty ->
change_this_type := true;
this_name := (List.hd annot.l_profile).lv_name;
let annot = { annot with
l_profile = [{ (List.hd annot.l_profile) with
lv_type = Ctype(mkTRef ty "Norm.annot, Dtype_annot")}];
}
in
ChangeDoChildrenPost
(Dtype_annot (annot,loc), fun x -> change_this_type := false; x)
| Ctype _ | Ltype _ | Lvar _ | Linteger | Lreal | Larrow _ ->
DoChildren
end
| Dtype _ | Dlemma _ | Dinvariant _ | Dvolatile _ -> DoChildren
| Daxiomatic _ -> DoChildren (* FIXME: correct ? *)
| Dmodel_annot _ -> DoChildren (* FIXME: correct ? *)
in annot
method vterm_lval tlv =
ChangeDoChildrenPost (tlv, postaction_term_lval)
method vterm t =
let preaction_term t =
match t.term_node with
| Tapp(callee,labels,args) ->
let args = List.map (fun arg ->
(* Type of [arg] has not been changed. *)
match arg.term_type with
| Ltype _ | Lvar _ | Linteger | Lreal | Larrow _ -> arg
| Ctype ty ->
if isStructOrUnionType ty then
match arg.term_node with
| TLval lv ->
(* Arguments translated under address here may
* be translated back to dereference when treating
* left-values. This is why we add a normalization
* in [postaction_term]. *)
{
arg with
term_node = TAddrOf lv;
term_type = Ctype(mkTRef ty "Norm.vterm");
}
| _ -> assert false (* Should not be possible *)
else arg
) args in
{ t with term_node = Tapp(callee,labels,args); }
| _ -> t
in
(* Renormalize the term tree. *)
let postaction_term t =
match t.term_node with
| TAddrOf(TMem t,TNoOffset) -> t
| _ -> t
in
ChangeDoChildrenPost (preaction_term t, postaction_term)
method vpredicate = function
| Papp(callee,labels,args) ->
let args = List.map (fun arg ->
(* Type of [arg] has not been changed. *)
match arg.term_type with
| Ltype _ | Lvar _ | Linteger | Lreal | Larrow _ -> arg
| Ctype ty ->
if isStructOrUnionType ty then
match arg.term_node with
| TLval lv ->
{
arg with
term_node = TAddrOf lv;
term_type = Ctype(mkTRef ty "Norm.vpredicate");
}
| _ -> assert false (* Should not be possible *)
else arg
) args in
ChangeDoChildrenPost (Papp(callee,labels,args), fun x -> x)
| _ -> DoChildren
end
let retype_logic_functions file =
let visitor = new retypeLogicFunctions in
visitFramacFile visitor file
(*****************************************************************************)
(* Expand structure copying through parameter, return or assignment. *)
(*****************************************************************************)
let return_vars = Cil_datatype.Varinfo.Hashtbl.create 17
(* parameter:
* - if function defined, add local copy variable of structure type
* - change parameter type to pointer to structure
* - change type at call-site to take address of structure arguments
* - change uses of parameters in logical annotations
* return:
* - change return type to pointer to structure
* - add temporary variable for call
* - free allocated memory for return after call
* assignment:
* - recursively decompose into elementary assignments
*)
class expandStructAssign () =
let pairs = ref [] in
let new_return_type = ref None in
let return_var = ref None in
let postaction_term_lval (host,off) =
let host = match host with
| TResult _ ->
begin match !new_return_type with
None -> host
| Some rt ->
let tlval = Logic_const.tresult rt in TMem tlval
end
| TVar v ->
begin match v.lv_origin with
| None -> host
(* TODO: recognize \result variable, and change its use if
of reference type here. *)
| Some cv ->
try
let newv = List.assoc cv !pairs in
let newlv = cvar_to_lvar newv in
(* Type of [newv] is set at that point. *)
let tlval =
mkterm (TLval(TVar newlv,TNoOffset)) (Ctype newv.vtype)
(Cil_const.CurrentLoc.get())
in
TMem tlval
with Not_found -> TVar v
end
| TMem _t -> host
in
host, off
in
let rec expand_assign lv e ty loc =
match unrollType ty with
| TComp(mcomp,_,_) ->
let field fi =
let newlv = addOffsetLval (Field(fi,NoOffset)) lv in
let newe = match e.enode with
| Lval elv ->
new_exp ~loc:e.eloc
(Lval(addOffsetLval (Field(fi,NoOffset)) elv))
| _ ->
(* Other possibilities like [CastE] should have been
transformed at this point. *)
assert false
in
expand_assign newlv newe fi.ftype loc
in
List.flatten (List.map field mcomp.cfields)
| TArray _ ->
let elem i =
let cste = constant_expr i in
let newlv = addOffsetLval (Index(cste,NoOffset)) lv in
let newe = match e.enode with
| Lval elv ->
new_exp ~loc:e.eloc
(Lval (addOffsetLval (Index(cste,NoOffset)) elv))
| _ ->
(* Other possibilities like [CastE] should have been
transformed at this point. *)
assert false
in
expand_assign newlv newe (direct_element_type ty) loc
in
let rec all_elem acc i =
if My_bigint.ge i My_bigint.zero
then all_elem (elem i @ acc) (My_bigint.pred i)
else acc
in
assert (not (is_reference_type ty));
all_elem [] (My_bigint.pred (direct_array_size ty))
| _ -> [Set (lv, e, loc)]
in
let rec expand lv ty loc =
match unrollType ty with
| TComp(mcomp,_,_) ->
let field fi =
let newlv = addOffsetLval (Field(fi,NoOffset)) lv in
expand newlv fi.ftype loc
in
List.flatten (List.map field mcomp.cfields)
| TArray _ ->
let elem i =
let cste = constant_expr i in
let newlv = addOffsetLval (Index(cste,NoOffset)) lv in
expand newlv (direct_element_type ty) loc
in
let rec all_elem acc i =
if My_bigint.ge i My_bigint.zero then
all_elem (elem i @ acc) (My_bigint.pred i)
else acc
in
assert (not (is_reference_type ty));
all_elem [] (My_bigint.pred (direct_array_size ty))
| _ -> [ lv ]
in
object(self)
inherit Visitor.frama_c_inplace as super
method vglob_aux =
let retype_func fvi =
let formal (n,ty,a) =
let ty =
if isStructOrUnionType ty then mkTRef ty "Norm.vglob_aux" else ty
in
n, ty, a
in
let rt,params,isva,a = splitFunctionTypeVI fvi in
let params = match params with
| None -> None
| Some p -> Some(List.map formal p)
in
let rt =
if isStructOrUnionType rt then
mkTRef rt "Norm.vgloab_aux(2)"
else rt
in
fvi.vtype <- TFun(rt,params,isva,a)
in
function
| GVarDecl(_spec,v,_attr) ->
if isFunctionType v.vtype && not v.vdefined then retype_func v;
DoChildren
| GFun _
| GAnnot _ -> DoChildren
| GVar _ | GCompTag _ | GType _ | GCompTagDecl _ | GEnumTagDecl _
| GEnumTag _ | GAsm _ | GPragma _ | GText _ -> SkipChildren
method vfunc f =
let var v =
if isStructOrUnionType v.vtype then
let newv = copyVarinfo v (unique_name ("v_" ^ v.vname)) in
newv.vtype <- mkTRef newv.vtype "Norm.vfunc";
v.vformal <- false;
let rhs =
new_exp ~loc:v.vdecl
(Lval
(mkMem
(new_exp ~loc:v.vdecl (Lval(Var newv,NoOffset))) NoOffset))
in
let copy = mkassign_statement (Var v,NoOffset) rhs v.vdecl in
add_pending_statement ~beginning:true copy;
pairs := (v,newv) :: !pairs;
[v], newv
else
[], v
in
(* Insert copy statements. *)
let locvl,formvl = List.split (List.map var f.sformals) in
(* Set locals and formals. *)
let locvl = List.flatten locvl in
f.slocals <- locvl @ f.slocals;
setFormals f formvl;
(* Add local variable for return *)
let rt = getReturnType f.svar.vtype in
if isStructOrUnionType rt then
let rv = makeTempVar (Extlib.the self#current_func) rt in
return_var := Some rv;
Cil_datatype.Varinfo.Hashtbl.add return_vars rv ()
else
return_var := None;
(* Change return type. *)
new_return_type :=
if isStructOrUnionType rt then Some(mkTRef rt "Norm.vfunc(3)") else None;
let rt = if isStructOrUnionType rt then mkTRef rt "Norm.vfunc(4)" else rt in
setReturnType f rt;
DoChildren
method vbehavior b =
let kf = Extlib.the self#current_kf in
let ki = self#current_kinstr in
let old = Property.ip_all_of_behavior kf ki b in
let lval loc lv = expand lv (typeOfLval lv) loc in
let term t = match t.term_node with
| TLval tlv ->
let lv,env =
!Db.Properties.Interp.force_term_lval_to_lval tlv
in
let lvlist = lval t.term_loc lv in
let tslvlist =
List.map (!Db.Properties.Interp.force_back_lval_to_term_lval env)
lvlist
in
List.map (fun
tslv ->
Logic_const.term ~loc:t.term_loc (TLval tslv)
t.term_type
) tslvlist
| Tempty_set -> [ t ]
(* most of the case below are still to do*)
| TStartOf _
| TConst _
| TCastE _
| Tat _
| TAddrOf _
| Tapp _
| Trange _
| Tunion _
| Tinter _
| Tcomprehension _
| Tif _
| Tnull -> [ t ]
(* those cases can not appear as assigns *)
| TSizeOf _ | TSizeOfE _ | TSizeOfStr _ | TAlignOf _ | TAlignOfE _
| Tlambda _ | TDataCons _ | Tbase_addr _ | TBinOp _ | TUnOp _
| Tblock_length _ | TCoerce _ | TCoerceE _ | TUpdate _
| Ttypeof _ | Ttype _ | Tlet _ -> assert false
in
let zone idts =
List.map Logic_const.new_identified_term (term idts.it_content)
in
let assign (z,froms) =
let zl = zone z in
let froms =
match froms with
FromAny -> froms
| From l -> From (List.flatten (List.map zone l))
in
List.map (fun z -> z, froms) zl
in
(match b.b_assigns with
WritesAny -> ()
| Writes l ->
b.b_assigns <- Writes (List.flatten (List.map assign l)));
let props = Property.ip_all_of_behavior kf ki b in
Property_status.merge ~old props;
DoChildren
method vstmt_aux s = match s.skind with
| Return(Some e,loc) ->
(* Type of [e] has not been changed by retyping formals and return. *)
if isStructOrUnionType (typeOf e) then
(* match e with *)
(* | Lval lv -> *)
(* let skind = Return(Some(Cabs2cil.mkAddrOfAndMark lv),loc) in *)
(* ChangeTo { s with skind = skind; } *)
(* | _ -> assert false (\* Should not be possible *\) *)
let lv = Var(the !return_var),NoOffset in
let ret =
mkStmt (Return(Some(Cabs2cil.mkAddrOfAndMark loc lv),loc))
in
let assigns = expand_assign lv e (typeOf e) loc in
let assigns = List.map (fun i -> mkStmt(Instr i)) assigns in
let block = Block (mkBlock (assigns @ [ret])) in
ChangeTo { s with skind = block }
else SkipChildren
| _ -> DoChildren
method vinst =
function
| Set(lv,e,loc) ->
(* Type of [e] has not been changed by retyping formals and return. *)
if isStructOrUnionType (typeOf e) then
ChangeTo (expand_assign lv e (typeOf e) loc)
else SkipChildren
| Call(lvo,callee,args,loc) ->
let args = List.map (fun arg ->
(* Type of [arg] has not been changed. *)
if isStructOrUnionType (typeOf arg) then
match arg.enode with
| Lval lv -> Cabs2cil.mkAddrOfAndMark loc lv
| _ -> assert false (* Should not be possible *)
else arg
) args in
begin match lvo with
| None ->
(* TODO: free memory for structure return, even if not used.
Check that no temporary is added in every case, which would
make treatment here useless. *)
let call = Call (lvo, callee, args, loc) in
ChangeTo [call]
| Some lv ->
(* Type of [lv] has not been changed. *)
let lvty = typeOfLval lv in
if isStructOrUnionType lvty then
let tmpv =
makeTempVar
(Extlib.the self#current_func) (mkTRef lvty "Norm.vinst")
in
let tmplv = Var tmpv, NoOffset in
let call = Call(Some tmplv,callee,args,loc) in
let deref =
new_exp ~loc
(Lval
(mkMem
(new_exp ~loc (Lval(Var tmpv,NoOffset))) NoOffset))
in
let assign = mkassign lv deref loc in
let free = mkfree tmpv loc in
ChangeTo [call;assign;free]
else
let call = Call(lvo,callee,args,loc) in
ChangeTo [call]
end
| Asm _ | Skip _ -> SkipChildren
| Code_annot _ -> assert false
method vterm_lval tlv =
ChangeDoChildrenPost (tlv, postaction_term_lval)
method vterm t =
(* Renormalize the term tree. *)
let postaction t =
match t.term_node with
| TAddrOf(TMem t,TNoOffset) -> t
| _ -> t
in
ChangeDoChildrenPost (t, postaction)
end
let expand_struct_assign file =
let visitor = new expandStructAssign () in
visitFramacFile (visit_and_push_statements_visitor visitor) file
(*****************************************************************************)
(* Retype variables of structure type. *)
(*****************************************************************************)
(* DO NOT CHANGE neither formal parameters nor return type of functions.
*
* global variable:
* - change type to reference to structure
* - prepend allocation in [globinit] function
* - changes left-values to reflect new type
* local variable:
* - change type to reference to structure
* - prepend allocation at function entry
* - TODO: postpend release at function exit
* - changes left-values to reflect new type
*)
class retypeStructVariables =
let varset = ref Cil_datatype.Varinfo.Set.empty in
let lvarset = ref Cil_datatype.Logic_var.Set.empty in
let postaction_lval (host,off) =
let host = match host with
| Var v ->
if Cil_datatype.Varinfo.Set.mem v !varset then
Mem(mkInfo(new_exp ~loc:(Cil_const.CurrentLoc.get())
(Lval(Var v,NoOffset))))
else
Var v
| Mem _e -> host
in
host, off
in
let postaction_tlval (host,off) =
let add_deref host v =
TMem(mkterm (TLval (host,TNoOffset)) v.lv_type
(Cil_const.CurrentLoc.get()))
in
let host = match host with
| TVar v ->
if Cil_datatype.Logic_var.Set.mem v !lvarset then
add_deref host v
else
opt_app
(fun cv ->
if Cil_datatype.Varinfo.Set.mem cv !varset then
add_deref host v
else host
) host v.lv_origin
| TMem _ | TResult _ -> host
in
host, off
in
object(self)
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vvdec v =
if isStructOrUnionType v.vtype && not v.vformal then
begin
v.vtype <- mkTRef v.vtype "Norm.vvdec";
varset := Cil_datatype.Varinfo.Set.add v !varset
end;
DoChildren
method vquantifiers vl =
List.iter (fun v ->
(* Only iterate on logic variable with C type *)
if app_term_type (fun _ -> true) false v.lv_type then
match v.lv_origin with
| None -> ()
| Some v -> ignore (self#vvdec v)
else ()
) vl;
DoChildren
method vlogic_var_decl v =
let newty =
app_term_type
(fun ty ->
Ctype (if isStructOrUnionType ty then mkTRef ty "Norm.vlogic_var_decl" else ty))
v.lv_type v.lv_type
in
v.lv_type <- newty;
DoChildren
method vglob_aux = function
| GVar (_,_,_) as g ->
let postaction = function
| [GVar (v,_,_)] ->
if Cil_datatype.Varinfo.Set.mem v !varset then
(* Allocate memory for new reference variable *)
(* Disabled, see BTS 0284
let ast = mkalloc_statement v (pointed_type v.vtype) v.vdecl in
attach_globinit ast;
*)
(* Define a global validity invariant *)
let p =
Pvalid_range(
variable_term v.vdecl (cvar_to_lvar v),
constant_term v.vdecl My_bigint.zero,
constant_term v.vdecl My_bigint.zero)
in
let globinv =
Cil_const.make_logic_info (unique_logic_name ("valid_" ^ v.vname))
in
globinv.l_labels <- [ LogicLabel(None, "Here") ];
globinv.l_body <- LBpred (predicate v.vdecl p);
attach_globaction
(fun () -> Logic_utils.add_logic_function globinv);
[g; GAnnot(Dinvariant (globinv,v.vdecl),v.vdecl)]
else [g]
| _ -> assert false
in
ChangeDoChildrenPost ([g], postaction)
| GVarDecl _ | GFun _ | GAnnot _ -> DoChildren
| GCompTag _ | GType _ | GCompTagDecl _ | GEnumTagDecl _
| GEnumTag _ | GAsm _ | GPragma _ | GText _ -> SkipChildren
method vfunc f =
(* First change type of local structure variables *)
List.iter (ignore $ visitFramacVarDecl (self:>frama_c_visitor)) f.slocals;
List.iter (ignore $ visitFramacVarDecl (self:>frama_c_visitor)) f.sformals;
(* Then allocate/deallocate memory for those that need it *)
List.iter (fun v ->
if Cil_datatype.Varinfo.Set.mem v !varset then
let ast = mkalloc_statement v (pointed_type v.vtype) v.vdecl in
add_pending_statement ~beginning:true ast;
(* do not deallocate variable used in returning a structure *)
if not (Cil_datatype.Varinfo.Hashtbl.mem return_vars v) then
let fst = mkfree_statement v v.vdecl in
add_pending_statement ~beginning:false fst
) f.slocals;
DoChildren
method vlval lv =
ChangeDoChildrenPost (lv, postaction_lval)
method vterm_lval lv = ChangeDoChildrenPost(lv, postaction_tlval)
method vexpr e =
(* Renormalize the expression tree. *)
let postaction e = match e.enode with
| AddrOf(Mem e,NoOffset) -> e
| _ -> e
in
ChangeDoChildrenPost (e, postaction)
method vterm t =
(* Renormalize the term tree. *)
let postaction t =
match t.term_node with
| TAddrOf(TMem t,TNoOffset) -> t
| _ -> t
in
ChangeDoChildrenPost (t, postaction)
end
let retype_struct_variables file =
let visitor = new retypeStructVariables in
visit_and_push_statements visit_and_update_globals visitor file
(*****************************************************************************)
(* Retype variables and fields whose address is taken. *)
(*****************************************************************************)
(* global variable:
* - change type from [t] to [t*]
* - prepend allocation in [globinit] function
* local variable:
* - change type from [t] to [t*]
* - prepend allocation at function entry
* - TODO: postpend release at function exit
* formal parameter:
* - make it a local variable, with previous treatment
* - replace by a new parameter with same type
* - prepend initialisation at function entry, after allocation
* - TODO: decide whether formal parameter address can be taken in
* annotations. Currently, if address only taken in annotations,
* [vaddrof] would not be set. Plus there is no easy means of translating
* such annotation to Jessie.
* field:
* - change type from [t] to [t*]
* - TODO: allocation/release
*)
class retypeAddressTaken =
let varset = ref Cil_datatype.Varinfo.Set.empty in
let lvarset = ref Cil_datatype.Logic_var.Set.empty in
let fieldset = ref Cil_datatype.Fieldinfo.Set.empty in
let retypable_var v =
v.vaddrof
&& not (isArrayType v.vtype)
&& not (is_reference_type v.vtype)
in
let retypable_lvar v =
match v.lv_origin with None -> false | Some v -> retypable_var v
in
(* Only retype fields with base/pointer type, because fields of
* struct/union type will be retyped in any case later on.
*)
let retypable_field fi =
fi.faddrof
&& not (is_reference_type fi.ftype)
&& not (isArrayType fi.ftype)
&& not (isStructOrUnionType fi.ftype)
in
let retype_var v =
if retypable_var v then
begin
v.vtype <- mkTRef v.vtype "Norm.retype_var";
assert (isPointerType v.vtype);
varset := Cil_datatype.Varinfo.Set.add v !varset
end
in
let retype_lvar v =
if retypable_lvar v then begin
v.lv_type <- Ctype (force_app_term_type (fun x -> mkTRef x "Norm.retyp_lvar") v.lv_type);
lvarset := Cil_datatype.Logic_var.Set.add v !lvarset
end
in
let retype_field fi =
if retypable_field fi then
begin
fi.ftype <- mkTRef fi.ftype "Norm.retype_field";
assert (isPointerType fi.ftype);
fieldset := Cil_datatype.Fieldinfo.Set.add fi !fieldset
end
in
let postaction_lval (host,off) =
let host = match host with
| Var v ->
if Cil_datatype.Varinfo.Set.mem v !varset then
begin
assert (isPointerType v.vtype);
Mem(mkInfo
(new_exp ~loc:(Cil_const.CurrentLoc.get())
(Lval(Var v,NoOffset))))
end
else host
| Mem _e -> host
in
(* Field retyped can only appear as the last offset, as it is of
* base/pointer type.
*)
match lastOffset off with
| Field(fi,_) ->
if Cil_datatype.Fieldinfo.Set.mem fi !fieldset then
(assert (isPointerType fi.ftype);
mkMem
(mkInfo
(new_exp
~loc:(Cil_const.CurrentLoc.get())
(Lval(host,off)))) NoOffset)
else
host,off
| _ ->
host,off
in
let postaction_tlval (host,off) =
let add_deref host ty =
force_app_term_type (fun ty -> assert (isPointerType ty)) ty;
TMem(mkterm (TLval (host,TNoOffset)) ty (Cil_const.CurrentLoc.get()))
in
let host = match host with
| TVar v ->
if Cil_datatype.Logic_var.Set.mem v !lvarset then
add_deref host v.lv_type
else
opt_app
(fun cv ->
if Cil_datatype.Varinfo.Set.mem cv !varset then
add_deref host (Ctype cv.vtype)
else host
) host v.lv_origin
| TResult _ | TMem _ -> host
in match lastTermOffset off with
| TField (fi,_) ->
if Cil_datatype.Fieldinfo.Set.mem fi !fieldset then
(TMem
(Logic_utils.mk_dummy_term (TLval(host,off)) fi.ftype),TNoOffset)
else host,off
| TIndex _ | TNoOffset -> host,off
in
let postaction_expr e = match e.enode with
| AddrOf(Var _v,NoOffset) ->
unsupported "cannot take address of a function"
(* Host should have been turned into [Mem] *)
| AddrOf(Mem e1,NoOffset) ->
e1
| AddrOf(_host,off) ->
begin match lastOffset off with
| Field(fi,_) ->
if Cil_datatype.Fieldinfo.Set.mem fi !fieldset then
(* Host should have been turned into [Mem], with NoOffset *)
assert false
else
e
| Index _ -> e
| NoOffset -> assert false (* Should be unreachable *)
end
| _ -> e
in
let postaction_term t = match t.term_node with
| TAddrOf((TVar _ | TResult _), TNoOffset) -> assert false
| TAddrOf(TMem t1,TNoOffset) -> t1
| TAddrOf(_,off) ->
begin match lastTermOffset off with
| TField(fi,_) ->
if Cil_datatype.Fieldinfo.Set.mem fi !fieldset then assert false
else t
| TIndex _ -> t
| TNoOffset -> assert false (*unreachable*)
end
| _ -> t
in
let varpairs : (varinfo * varinfo) list ref = ref [] in
let in_funspec = ref false in
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vglob_aux = function
| GVar(v,_,_) ->
if retypable_var v then
begin
retype_var v;
(* Disabled, see BTS 0284
let ast = mkalloc_statement v (pointed_type v.vtype) v.vdecl in
attach_globinit ast
*)
end;
SkipChildren
| GVarDecl (_,v,_) ->
(* No problem with calling [retype_var] more than once, since
subsequent calls do nothing on reference type. *)
if not (isFunctionType v.vtype || v.vdefined) then retype_var v;
SkipChildren
| GFun _ -> DoChildren
| GAnnot _ -> DoChildren
| GCompTag(compinfo,_loc) ->
List.iter retype_field compinfo.cfields;
SkipChildren
| GType _ | GCompTagDecl _ | GEnumTagDecl _ | GEnumTag _
| GAsm _ | GPragma _ | GText _ -> SkipChildren
method vfunc f =
(* Change types before code. *)
let formals,locals,pairs =
List.fold_right (fun v (fl,ll,pl) ->
if retypable_var v then
let newv = copyVarinfo v ("v_" ^ v.vname) in
newv.vaddrof <- false;
v.vformal <- false;
(newv::fl,v::ll,(v,newv)::pl)
else (v::fl,ll,pl)
) f.sformals ([],[],[])
in
varpairs := pairs;
setFormals f formals;
f.slocals <- locals @ f.slocals;
List.iter retype_var f.slocals;
List.iter (fun v ->
(* allocate/deallocate locals *)
if Cil_datatype.Varinfo.Set.mem v !varset then
begin
let ast = mkalloc_statement v (pointed_type v.vtype) v.vdecl in
add_pending_statement ~beginning:true ast;
(* do not deallocate variable used in returning a structure *)
if not (Cil_datatype.Varinfo.Hashtbl.mem return_vars v) then
let fst = mkfree_statement v v.vdecl in
add_pending_statement ~beginning:false fst
end;
(* allocate/deallocate formals *)
begin try
let loc = v.vdecl in
(* [varpairs] holds pairs of (local,formal) to initialize due to
* the transformation for formals whose address is taken.
*)
let fv = List.assoc v !varpairs in
let lhs = mkMem (new_exp ~loc (Lval(Var v,NoOffset))) NoOffset in
let rhs = new_exp ~loc (Lval(Var fv,NoOffset)) in
let assign = mkassign_statement lhs rhs loc in
add_pending_statement ~beginning:true assign
with Not_found -> () end
) f.slocals;
DoChildren
method vspec funspec =
in_funspec := true;
ChangeDoChildrenPost (funspec, fun x -> in_funspec := false; x)
method vlogic_var_use v =
if !in_funspec then
match v.lv_origin with
| None -> SkipChildren
| Some cv ->
try
let fv = List.assoc cv !varpairs in
ChangeTo (cvar_to_lvar fv)
with Not_found -> SkipChildren
else
begin
if retypable_lvar v then retype_lvar v;
DoChildren
end
method vlogic_var_decl v = if retypable_lvar v then retype_lvar v; DoChildren
method vlval lv = ChangeDoChildrenPost (lv, postaction_lval)
method vterm_lval lv = ChangeDoChildrenPost (lv, postaction_tlval)
method vexpr e = ChangeDoChildrenPost(e, postaction_expr)
method vterm t = ChangeDoChildrenPost(t,postaction_term)
end
let retype_address_taken file =
let visitor = new retypeAddressTaken in
visit_and_push_statements visit_and_update_globals visitor file
(*****************************************************************************)
(* Retype fields of type structure and array. *)
(*****************************************************************************)
(* We translate C left-values so that they stick to the Jessie semantics for
* left-values. E.g., a C left-value
* s.t.i
* which is translated in CIL as
* Var s, Field(t, Field(i, NoOffset))
* is translated as
* Mem (Mem s, Field(t, NoOffset)), Field(i, NoOffset)
* so that it is the same as the C left-value
* s->t->i
*
* Introduce reference at each structure subfield.
* Does not modify union fields on purpose : union should first be translated
* into inheritance before [retypeFields] is called again.
*)
class retypeFields =
let field_to_array_type : typ Cil_datatype.Fieldinfo.Hashtbl.t = Cil_datatype.Fieldinfo.Hashtbl.create 0 in
let postaction_lval (host,off) =
let rec offset_list = function
| NoOffset -> []
| Field (fi,off) ->
(Field (fi, NoOffset)) :: offset_list off
| Index (e, Field (fi,off)) ->
(Index (e, Field (fi, NoOffset))) :: offset_list off
| Index (_idx, NoOffset) as off -> [off]
| Index (idx, (Index _ as off)) ->
assert (not !flatten_multi_dim_array);
Index(idx,NoOffset) :: offset_list off
in
let rec apply_lift_offset = function
| Field (fi,roff) ->
begin try
let ty = Cil_datatype.Fieldinfo.Hashtbl.find field_to_array_type fi in
let roff = apply_lift_offset (lift_offset ty roff) in
Field (fi,roff)
with Not_found ->
let roff = apply_lift_offset roff in
Field (fi,roff)
end
| Index (idx,roff) ->
let roff = apply_lift_offset roff in
Index (idx,roff)
| NoOffset -> NoOffset
in
let off =
if !flatten_multi_dim_array then apply_lift_offset off else off
in
(* [initlv] : topmost lval
* [initlist] : list of offsets to apply to topmost lval
*)
let initlv,initlist = match offset_list off with
| [] -> (host, NoOffset), []
| fstoff :: roff -> (host, fstoff), roff
in
List.fold_left
(fun curlv -> function
| NoOffset ->
assert false (* should not occur *)
| Field(_,_)
| Index(_, Field (_,_))
| Index(_, NoOffset) as nextoff ->
Mem
(mkInfo
(new_exp ~loc:(Cil_const.CurrentLoc.get()) (Lval curlv))),
nextoff
| Index (_, Index _) -> assert false
) initlv initlist
in
(* Renormalize the expression tree. *)
let postaction_expr e = match e.enode with
| AddrOf(Mem e,NoOffset) | StartOf(Mem e,NoOffset) -> e
| AddrOf(Mem _e,Field(_fi,off) as lv)
| StartOf(Mem _e,Field(_fi,off) as lv) ->
assert (off = NoOffset);
(* Only possibility is that field is of structure or union type,
* otherwise [retype_address_taken] would have taken care of it.
* Do not check it though, because type was modified in place.
*)
new_exp ~loc:e.eloc (Lval lv)
| AddrOf(Mem e',Index(ie,NoOffset)) ->
let ptrty = TPtr(typeOf e',[]) in
new_exp ~loc:e.eloc (BinOp(PlusPI,e',ie,ptrty))
| StartOf(Mem _e,Index(_ie,NoOffset) as lv) ->
new_exp ~loc:e.eloc (Lval lv)
| AddrOf(Mem _e,Index(_ie,Field(_,NoOffset)) as lv)
| StartOf(Mem _e,Index(_ie,Field(_,NoOffset)) as lv) ->
new_exp ~loc: e.eloc (Lval lv)
| AddrOf(Mem _e,Index(_ie,_)) | StartOf(Mem _e,Index(_ie,_)) ->
assert false
| _ -> e
in
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vglob_aux = function
| GCompTag (compinfo,_) ->
let field fi =
if isStructOrUnionType fi.ftype then
fi.ftype <- mkTRef fi.ftype "Norm.vglob_aux(2)"
else if isArrayType fi.ftype then
begin
Cil_datatype.Fieldinfo.Hashtbl.replace field_to_array_type fi fi.ftype;
if not !flatten_multi_dim_array then
fi.ftype <- reference_of_array fi.ftype
else
(* if array_size fi.ftype > 0L then *)
let size = constant_expr (array_size fi.ftype) in
fi.ftype <- mkTRefArray(element_type fi.ftype,size,[])
(* else *)
(* (\* Array of zero size, e.g. in struct array hack. *\) *)
(* fi.ftype <- TPtr(element_type fi.ftype,[]) *)
end
in
List.iter field compinfo.cfields;
SkipChildren
| GFun _ | GAnnot _ | GVar _ | GVarDecl _ -> DoChildren
| GType _ | GCompTagDecl _ | GEnumTagDecl _
| GEnumTag _ | GAsm _ | GPragma _ | GText _ -> SkipChildren
method vlval lv =
ChangeDoChildrenPost (lv, postaction_lval)
method vterm_lval =
do_on_term_lval (None,Some postaction_lval)
method vexpr e =
ChangeDoChildrenPost(e, postaction_expr)
method vterm =
do_on_term (None,Some postaction_expr)
end
let retype_fields file =
let visitor = new retypeFields in visitFramacFile visitor file
(*****************************************************************************)
(* Retype type tags. *)
(*****************************************************************************)
class retypeTypeTags =
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vterm t = match t.term_node with
| Ttype ty -> ChangeTo ({ t with term_node = Ttype(TPtr(ty,[])) })
| _ -> DoChildren
end
let retype_type_tags file =
let visitor = new retypeTypeTags in visitFramacFile visitor file
(*****************************************************************************)
(* Retype pointers to base types. *)
(*****************************************************************************)
let debugtab = Hashtbl.create 0
(* Retype pointer to base type T to pointer to struct S with:
* - if T is [TVoid], no field in S
* - otherwise, a single field of type T in S
*)
class retypeBasePointer =
(* Correspondance between a base type and its wrapper structure type *)
let type_wrappers : typ Typ.Hashtbl.t = Typ.Hashtbl.create 17 in
(* Store which types are wrapper types *)
let auto_type_wrappers = ref Typ.Set.empty in
let is_wrapper_type ty = Typ.Set.mem ty !auto_type_wrappers in
let new_wrapper_for_type_no_sharing ty =
(* Choose name t_P for the wrapper and t_M for the field *)
let name = type_name ty in
let wrapper_name = name ^ "P" in
let field_name = name ^ "M" in
let compinfo =
if isVoidType ty then mkStructEmpty wrapper_name
else mkStructSingleton wrapper_name field_name ty
in
let tdef = GCompTag(compinfo,Cil_datatype.Location.unknown) in
let tdecl = TComp(compinfo,empty_size_cache () ,[]) in
attach_global tdef;
tdef, tdecl
in
object(self)
(* Helper methods called on the [self] object *)
method new_wrapper_for_type ty =
(* Currently, do not make any difference between a pointer to const T
* or volatile T and a pointer to T.
*)
let ty = typeRemoveAttributes ["const";"volatile"] (unrollType ty) in
try
Typ.Hashtbl.find type_wrappers ty
with Not_found ->
(* Construct a new wrapper for this type *)
let wrapper_def,wrapper_type = new_wrapper_for_type_no_sharing ty in
Typ.Hashtbl.replace type_wrappers ty wrapper_type;
auto_type_wrappers := Typ.Set.add wrapper_type !auto_type_wrappers;
(* Treat newly constructed type *)
let store_current_global = !currentGlobal in
ignore (visitFramacGlobal (self:>frama_c_visitor) wrapper_def);
currentGlobal := store_current_global;
(* Return the wrapper type *)
wrapper_type
(* Performs the necessary in-place modifications to [ty] so that
* the translation to Jessie is easy.
* Returns [Some newty] if the modified type imposes adding a field
* access to a dereference on an object of type [ty].
* Returns [None] in all other cases, in particular for non-wrapper
* types that are allowed as either type of variable or type of field.
*)
method private wrap_type_if_needed ty =
match ty with
| TPtr(_elemty,attr) ->
(* Do not use [_elemty] directly but rather [pointed_type ty] in order
* to get to the array element in references, i.e. pointers to arrays.
*)
let elemty = pointed_type ty in
if is_wrapper_type elemty then
Some ty
else if isStructOrUnionType elemty then
None (* Already in a suitable form for Jessie translation. *)
else if is_array_reference_type ty then
(* Do not lose the information that this type is a reference *)
let size = constant_expr (My_bigint.of_int64 (reference_size ty)) in
assert (not (!flatten_multi_dim_array && is_reference_type elemty));
Some(mkTRefArray(self#new_wrapper_for_type elemty,size,[]))
else if is_reference_type ty then
(* Do not lose the information that this type is a reference *)
Some(mkTRef(self#new_wrapper_for_type elemty)"Norm.private wrap_type_if_needed")
else
(* Here is the case where a transformation is needed *)
Some(TPtr(self#new_wrapper_for_type elemty,attr))
| TArray (_,len,size,attr) ->
(*[VP-20100826] Can happen in case of logic term translation *)
let elemty = element_type ty in
if is_wrapper_type elemty then Some ty
else if isStructOrUnionType elemty then None
else Some (TArray(self#new_wrapper_for_type elemty,len,size,attr))
| TFun _ -> None
| TNamed(typeinfo,_attr) ->
begin match self#wrap_type_if_needed typeinfo.ttype with
| Some newtyp ->
typeinfo.ttype <- newtyp;
Some ty
| None -> None
end
| TComp(compinfo,_,_) ->
let field fi =
match self#wrap_type_if_needed fi.ftype with
| Some newtyp ->
fi.ftype <- newtyp
| None -> ()
in
List.iter field compinfo.cfields;
None
| TVoid _ | TInt _ | TFloat _ | TEnum _ | TBuiltin_va_list _ -> None
method private postaction_lval lv =
match lv with
| Var _, NoOffset -> lv
| Var _, _ ->
unsupported "cannot handle this lvalue"
| Mem e, NoOffset ->
begin match self#wrap_type_if_needed (typeOf e) with
| Some newtyp ->
let newfi = get_unique_field (pointed_type newtyp) in
let newlv = Mem e, Field (newfi, NoOffset) in
(* Check new left-value is well-typed. *)
(* begin try ignore (typeOfLval newlv) with _ -> assert false end; *)
newlv
| None -> lv
end
| Mem e, (Index(ie,_) as off) ->
if is_last_offset off then
match self#wrap_type_if_needed (typeOf e) with
| Some newtyp ->
let newfi = get_unique_field (pointed_type newtyp) in
let newlv =
if is_array_reference_type newtyp then
lv
else
(Mem
(new_exp ~loc:e.eloc
(BinOp(PlusPI,e,ie,newtyp))),
NoOffset)
in
let newlv = addOffsetLval (Field (newfi, NoOffset)) newlv in
newlv
| None -> lv
else lv
| Mem _, Field _ -> lv
(* Usual methods in visitor interface. *)
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vfile _ =
Common.struct_type_for_void := self#new_wrapper_for_type voidType;
DoChildren
method vtype ty =
let ty = match self#wrap_type_if_needed ty with
| Some newty -> newty
| None -> ty
in
if isFunctionType ty then
(* Applies changes in particular to parameter types in function types. *)
ChangeDoChildrenPost (ty, fun x -> x)
else
ChangeTo ty
method vglob_aux =
let retype_return v =
let retyp = getReturnType v.vtype in
let newtyp = visitFramacType (self:>frama_c_visitor) retyp in
if newtyp != retyp then setReturnTypeVI v newtyp
in
function
| GType (typeinfo, _) ->
ignore (self#wrap_type_if_needed (TNamed (typeinfo, [])));
SkipChildren
| GCompTag (compinfo, _) ->
ignore (self#wrap_type_if_needed (TComp (compinfo, empty_size_cache (), [])));
SkipChildren
| GFun (f, _) ->
retype_return f.svar;
DoChildren
| GVarDecl (_, v, _) ->
if isFunctionType v.vtype && not v.vdefined then
retype_return v;
DoChildren
| GVar _
| GAnnot _ -> DoChildren
| GCompTagDecl _ | GEnumTag _ | GEnumTagDecl _
| GAsm _ | GPragma _ | GText _ -> SkipChildren
method vlval lv =
ChangeDoChildrenPost (lv, self#postaction_lval)
method vterm_lval =
do_on_term_lval (None,Some self#postaction_lval)
end
let retype_base_pointer file =
let visitor = new retypeBasePointer in
visit_and_update_globals (visitor :> frama_c_visitor) file
(*****************************************************************************)
(* Remove useless casts. *)
(*****************************************************************************)
class removeUselessCasts =
let preaction_expr etop =
match (stripInfo etop).enode with
| CastE(ty,e) ->
let ety = typeOf e in
if isPointerType ty && isPointerType ety then
(* Ignore type qualifiers *)
let tysig =
typeSig (typeRemoveAttributes ["const";"volatile"]
(unrollType (pointed_type ty)))
in
let etysig =
typeSig (typeRemoveAttributes ["const";"volatile"]
(unrollType (pointed_type ety)))
in
if Cilutil.equals tysig etysig then e else etop
else etop
| _ -> etop
in
let preaction_term term =
match term.term_node with
| TCastE(ty,t) ->
if isPointerType ty && Logic_utils.isLogicPointer t then
(* Ignore type qualifiers *)
let tysig =
Logic_utils.type_sig_logic (unrollType (pointed_type ty))
in
let ttysig =
match t.term_type with
Ctype tty ->
if isPointerType tty then
Logic_utils.type_sig_logic (unrollType (pointed_type tty))
else
Logic_utils.type_sig_logic (unrollType (element_type tty))
| ty -> fatal "Not a pointer type '%a'" d_logic_type ty
in
if Cilutil.equals tysig ttysig then
if Logic_utils.isLogicPointerType t.term_type then t
else
(match t.term_node with
| TLval lv -> Logic_const.term (TStartOf lv) (Ctype ty)
| TStartOf _ -> t
| _ ->
fatal
"Unexpected array expression casted into pointer: %a"
d_term t
)
else term
else term
| _ -> term
in
object
inherit Visitor.frama_c_inplace
method vexpr e = ChangeDoChildrenPost (preaction_expr e, fun x -> x)
method vterm t = ChangeDoChildrenPost (preaction_term t, fun x -> x)
end
let remove_useless_casts file =
let visitor = new removeUselessCasts in visitFramacFile visitor file
(*****************************************************************************)
(* Translate union fields into structures *)
(*****************************************************************************)
let generated_union_types = Typ.Hashtbl.create 0
class translateUnions =
let field_to_equiv_type : typ Cil_datatype.Fieldinfo.Hashtbl.t
= Cil_datatype.Fieldinfo.Hashtbl.create 0
in
let new_field_type fi =
let tname = unique_name (fi.fname ^ "P") in
let fname = unique_name (fi.fname ^ "M") in
let padding = the fi.fpadding_in_bits in
let mcomp =
mkStructSingleton ~padding tname fname fi.ftype in
let tdef = GCompTag (mcomp, CurrentLoc.get ()) in
let tdecl = TComp (mcomp, empty_size_cache (), []) in
Typ.Hashtbl.add generated_union_types tdecl ();
Cil_datatype.Fieldinfo.Hashtbl.add field_to_equiv_type fi tdecl;
fi.ftype <- tdecl;
tdef
in
let postaction_offset = function
| Field(fi,off) as off' ->
begin try
let ty = Cil_datatype.Fieldinfo.Hashtbl.find field_to_equiv_type fi in
let newfi = get_unique_field ty in
Field(fi,Field(newfi,off))
with Not_found -> off' end
| off -> off
in
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vglob_aux = function
| GCompTag (compinfo,_) as g when not compinfo.cstruct ->
let fields = compinfo.cfields in
let field fi = new_field_type fi in
let fty = List.map field fields in
ChangeTo (g::fty)
| GFun _ | GAnnot _ | GVar _ | GVarDecl _ -> DoChildren
| GCompTag _ | GType _ | GCompTagDecl _ | GEnumTagDecl _
| GEnumTag _ | GAsm _ | GPragma _ | GText _ -> SkipChildren
method voffs off =
ChangeDoChildrenPost(off,postaction_offset)
method vterm_offset =
do_on_term_offset (None, Some postaction_offset)
end
let translate_unions file =
let visitor = new translateUnions in visitFramacFile visitor file
(*****************************************************************************)
(* Remove array address. *)
(*****************************************************************************)
class removeArrayAddress =
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vexpr e =
let preaction e = match e.enode with
| AddrOf(Mem ptre,Index(ie,NoOffset)) ->
let ptrty = typeOf e in
new_exp ~loc:e.eloc (BinOp (PlusPI, ptre, ie, ptrty))
| _ -> e
in
ChangeDoChildrenPost (preaction e, fun x -> x)
method vterm t =
let preaction t = match t.term_node with
| TAddrOf(TMem ptrt,TIndex(it,TNoOffset)) ->
{ t with term_node = TBinOp (PlusPI, ptrt, it); }
| _ -> t
in
ChangeDoChildrenPost (preaction t, fun x -> x)
(* TODO: translate to add tsets easily *)
end
let remove_array_address file =
let visitor = new removeArrayAddress in
visitFramacFile visitor file
(*****************************************************************************)
(* Normalize the C file for Jessie translation. *)
(*****************************************************************************)
open Pervasives
let normalize file =
if checking then check_types file;
(* Retype variables of array type. *)
(* order: before [expand_struct_assign] and any other pass which calls
[typeOf], because "t[i]" with [StartOf] if type of "t" is "int t[a][b]"
is not typed correctly by Cil (raises error StartOf on non-array type).
See, e.g., example array_addr.c. *)
Jessie_options.debug "Retype variables of array type";
retype_array_variables file;
if checking then check_types file;
(* Retype logic functions/predicates with structure parameters or return. *)
Jessie_options.debug "Retype logic functions/predicates";
retype_logic_functions file;
if checking then check_types file;
(* Expand structure copying through parameter, return or assignment. *)
(* order: before [retype_address_taken], before [retype_struct_variables] *)
Jessie_options.debug "Expand structure copying";
expand_struct_assign file;
if checking then check_types file;
(* Retype variables of structure type. *)
Jessie_options.debug "Retype variables of structure type";
retype_struct_variables file;
if checking then check_types file;
(* Retype variables and fields whose address is taken. *)
(* order: after [retype_struct_variables] *)
Jessie_options.debug "Retype variables and fields whose address is taken";
retype_address_taken file;
if checking then check_types file;
(* Expand structure copying through assignment. *)
(* Needed because sequence [expand_struct_assign; retype_struct_variables;
retype_address_taken] may recreate structure assignments. *)
(* order: after [retype_address_taken] *)
Jessie_options.debug "Expand structure copying through assignment";
expand_struct_assign file;
if checking then check_types file;
(* Translate union fields into structures. *)
Jessie_options.debug "Translate union fields into structures";
translate_unions file;
if checking then check_types file;
(* Retype fields of type structure and array. *)
(* order: after [expand_struct_assign] and [retype_address_taken]
* before [translate_unions] *)
Jessie_options.debug "Retype fields of type structure and array";
retype_fields file;
if checking then check_types file;
(* Retype fields of type structure and array. *)
(* order: after [translate_unions] *)
Jessie_options.debug "Retype fields of type structure and array";
retype_fields file;
if checking then check_types file;
(* Remove array address. *)
(* order: before [retype_base_pointer] *)
Jessie_options.debug "Remove array address";
remove_array_address file;
if checking then check_types file;
(* Retype type tags. *)
(* order: before [retype_base_pointer] *)
Jessie_options.debug "Retype type tags";
retype_type_tags file;
if checking then check_types file;
(* Retype pointers to base types. *)
(* order: after [retype_fields] *)
Jessie_options.debug "Retype pointers to base types";
retype_base_pointer file;
if checking then check_types file;
(* Remove useless casts. *)
Jessie_options.debug "Remove useless casts";
remove_useless_casts file;
if checking then check_types file;
(*
Local Variables:
compile-command: "make -C .."
End:
*)
|