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 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997
|
2010-03-30 Zoltan Varga <vargaz@gmail.com>
* ModuleBuilder.cs (DefinedType): Lookup inside the name_cache before creating
the TypeBuilder since the runtime code can't handle a duplicate type name.
2010-03-30 Zoltan Varga <vargaz@gmail.com>
* CustomAttributeBuilder.cs (IsValidType): Call Enum.GetUnderlyingType () for
dynamic enums to avoid crashes in the unmanaged code. Fixes #591800.
2010-02-09 Sebastien Pouliot <sebastien@ximian.com>
* ModuleBuilder.cs: Do not use reflection to create SymbolWriterImpl
for Moonlight since the code is bundled inside mscorlib.dll to avoid
having a non-platform assembly poking the internals of mscorlib.dll
[Backport r151176]
2009-10-30 Sebastien Pouliot <sebastien@ximian.com>
* MethodBuilder.cs: Add missing 'names' validations in
DefineGenericParameters
[Backport r145118]
2009-10-29 Sebastien Pouliot <sebastien@ximian.com>
* ModuleBuilder.cs: Add missing 'className' validations in GetType
* TypeBuilder.cs: Add missing 'names' validations in
DefineGenericParameters
[Backport r145013]
2009-10-24 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyBuilder.cs: For Silverlight only AssemblyBuilderAccess.Run
is supported (browser-side) but we still allow other values when
compiling (e.g. smcs) outside the browser (wo coreclr)
* TypeBuilder.cs (GetConstructor): Fix validations
[Backport r144791]
2009-09-18 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyBuilder.cs, ConstructorBuilder.cs, MethodBuilder.cs,
TypeBuilder.cs: Don't process PermissionSet under NET_2_1
2009-09-06 Rodrigo Kumpera <rkumpera@novell.com>
* ConstructorOnTypeBuilderInst.cs (GetParameters): Make it work for
finished types.
2009-09-02 Rodrigo Kumpera <rkumpera@novell.com>
* ILGenerator.cs (label_fixup): Check for unmarked labels.
Fixes #536243.
2009-08-06 Rodrigo Kumpera <rkumpera@novell.com>
* MethodBuilder.cs: Mark generic_params internal.
* MethodOnTypeBuilderInst.cs: Add fields to support
inflated generic methods. Implement generics related
methods.
2009-08-06 Marek Safar <marek.safar@gmail.com>
* ILGenerator.cs: Add 4.0 ILOffset.
2009-08-04 Rodrigo Kumpera <rkumpera@novell.com>
* DerivedTypes.cs (DerivedType): Implement ToString ().
2009-08-03 Rodrigo Kumpera <rkumpera@novell.com>
* EventBuilder.cs: Make some fields internal.
* TypeBuilder.cs: Make events field internal.
Remove some MonoTODOs that are already done.
* EventOnTypeBuilderInst.cs: New file which implements
the required functionality by compiler context.
2009-07-30 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (IsDefined): Throw if not
created and not in compiler context.
2009-07-30 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GetNestedTypes): Throw if not
created and not in compiler context.
2009-07-30 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GetEvents): Throw if not created
and not in compiler context.
* TypeBuilder.cs (GetNestedType): Don't rely on
MonoType implementation as it doesn't work if the
nested type is defined after the TypeBuilder is
created.
2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GetConstructors): Throw if
TypeBuilder is incomplete.
2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (DefineMethodOverride): Throw if
method body doesn't belong to the TypeBuilder.
2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GetInterfaces): Return the expanded
interface list if the type has been created.
2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GetGenericArguments): Returns null for
non generic TypeBuilders.
2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GenericParameterAttributes): Return none.
2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GetElementType): Throw always.
2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GetGenericTypeDefinition): Either
throw or return itself.
2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GenericParameterPosition): Return 0
instead of throwing.
2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (DeclaringMethod): Return null
instead of throwing.
2009-07-28 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (CreateType): Throw if concrete
type has abstract method.
2009-07-28 Rodrigo Kumpera <rkumpera@novell.com>
* GenericTypeParameterBuilder.cs: SetBaseTypeConstraint with
null argument is the same as passing typeof (object).
2009-07-28 Rodrigo Kumpera <rkumpera@novell.com>
* DerivedTypes.cs (ArrayType): Special case vector arrays using zero
as rank. This is required because we need to make the distinction
between a vector and a one dimension SZARRAY.
* EnumBuilder.cs: Create vectors as rank-zero ArrayType objects.
* TypeBuilder.cs: Same.
* GenericTypeParameterBuilder.cs: Same.
2009-07-28 Rodrigo Kumpera <rkumpera@novell.com>
DerivedTypes.cs: ByRef and Pointer types return Array as base
type.
2009-07-28 Marek Safar <marek.safar@gmail.com>
* DynamicMethod.cs: Pass skipVisibility.
2009-07-27 Rodrigo Kumpera <rkumpera@novell.com>
OpCode.cs: HashCode is meant to be calculated based on Name.
OpCodeNames.cs: Fix some names.
OpCodes.cs: Fix Stelem, Constrained and Readonly specs.
2009-07-26 Miguel de Icaza <miguel@novell.com>
* ILGenerator.cs: Fix the exception thrown when LocalBuilders are
mixed between ILGenerators.
2009-07-24 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs: Make the interfaces field internal.
2009-07-24 Rodrigo Kumpera <rkumpera@novell.com>
* FieldOnTypeBuilderInst.cs: Add a ToString() to help debugging.
Make fields internal.
* MethodOnTypeBuilderInst.cs: Build it under BOOTSTRAP_NET_2_0.
2009-07-23 Rodrigo Kumpera <rkumpera@novell.com>
* ConstructorBuilder.cs: Make parameters and pinfo fields internal.
* ConstructorOnTypeBuilderInst.cs: Build it under BOOTSTRAP_NET_2_0.
Properly implement GetParameters under compiler context.
* TypeBuilder.cs: Make ctors field internal.
2009-07-23 Rodrigo Kumpera <rkumpera@novell.com>
* FieldOnTypeBuilderInst.cs: Implement MetadataToken and FieldToken
for compiler context.
* TypeBuilder.cs: Make FieldBuilder related fields internal.
2009-07-23 Rodrigo Kumpera <rkumpera@novell.com>
* PropertyOnTypeBuilderInst.cs: Use TypeBuilder::GetMethod instead of
MonoGenericClass::GetCorrespondingInflatedMethod. This is possible
since the returned methods of MonoGenericClass::GetMethods have been
unified with TypeBuilder::GetMethod.
* TypeBuilder.cs: Make property related fields internal.
2009-07-22 Rodrigo Kumpera <rkumpera@novell.com>
* MethodOnTypeBuilderInst.cs: Implement ToString to help debugging.
* TypeBuilder.cs: Make the properties field internal.
* PropertyOnTypeBuilderInst.cs: New type implementing a property of an
inflated TypeBuilder.
2009-07-15 Rodrigo Kumpera <rkumpera@novell.com>
* EnumBuilder.cs: Use new derived types for array, pointer and byref.
2009-07-15 Rodrigo Kumpera <rkumpera@novell.com>
* GenericTypeParameterBuilder.cs (MakeByRefType): Return an instance
of PointerType instead of relying on the runtime for it.
2009-07-15 Rodrigo Kumpera <rkumpera@novell.com>
* GenericTypeParameterBuilder.cs (MakeByRefType): Return an instance
of ByRefType instead of relying on the runtime for it.
2009-07-14 Rodrigo Kumpera <rkumpera@novell.com>
* DerivedTypes.cs (DerivedType): Implement IsAssignableFrom
and ContainsGenericParameters
* DerivedTypes.cs (DerivedType::UnderlyingSystemType): Create
the unmanaged type before returning so the resulting object is
understood as a SystemType.
* DerivedTypes.cs (DerivedType::AssemblyQualifiedName): Return null
if element's FullName is null as well.
* DerivedTypes.cs (ArrayType::GetAttributeFlagsImpl): Return proper
array flags if under compiler context.
* DerivedTypes.cs (*::FormatName): Return null if elementName is.
* GenericTypeParameterBuilder.cs: Improve compatibility when not
under compler context.
* GenericTypeParameterBuilder.cs (MakeArrayType): Return an instance
of ArrayType instead of relying on the runtime for it.
* TypeBuilder.cs: Add error checking to MakeArrayType and remove some
MonoTODO.
2009-07-14 Zoltan Varga <vargaz@gmail.com>
* AssemblyBuilder.cs: Applied patch from <Dax@daxxfiles.net>. Save
the public key token to a field where the runtime can access it.
2009-07-08 Rodrigo Kumpera <rkumpera@novell.com>
* DerivedTypes.cs: Implemented PointerType.
* TypeBuilder.cs (MakePointerType): Return an
instance of PointerType.
2009-07-08 Rodrigo Kumpera <rkumpera@novell.com>
* DerivedTypes.cs: Implemented ByRefType.
* TypeBuilder.cs (MakeByRefType): Return an
instance of ByRefType.
2009-07-08 Rodrigo Kumpera <rkumpera@novell.com>
* DerivedTypes.cs: Refactor the types here to move
a lot of code to the base DerivedType in preparation
for upcomming ByRefType and PointerType puppies.
2009-07-07 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (IsArrayImpl): Return false always as a
typebuilder will never represent an array.
* TypeBuilder.cs (MakeArrayType): Return a new instance of
ArrayType instead of calling into MonoType machinery.
* DerivedTypes.cs: New file with all the internal types
used by SRE to represent derived types from TypeBuilder:
arrays, pointers and byrefs'.
2009-07-02 Rodrigo Kumpera <rkumpera@novell.com>
* AssemblyBuilder.cs: Add IsRun property that returns true if
any execute mode is enabled.
* ModuleBuilder.cs: Add set_wrappers_type icall to define which type
is to be bound to wrappers. Create a new abstract type and call it
when the assembly is build this way.
Replace explicit checks for global_type with calls to CreateGlobalType.
* TypeBuilder.cs: Internal ctor now takes an extra table_idx argument.
2009-06-25 Sylvain Dupont <duposyl@gmail.com>
* CustomAttributeBuilder.cs: Properly handle element type for safe
arrays (SafeArraySubType marshal attribute option).
Code is contributed under MIT/X11 license.
2009-06-12 Jb Evain <jbevain@novell.com>
* AssemblyBuilder.cs (Save): throw a NotImplementedException
when asked to emit a pe32+ binary for a AMD64 or IA64
specific assembly.
2009-06-05 Jb Evain <jbevain@novell.com>
* ModuleBuilder.cs (DefineManifestResource): expose during
BOOTSTRAP_NET_2_0 as well.
2009-06-02 Rodrigo Kumpera <rkumpera@novell.com>
* ILGenerator.cs (EmitCall): Under 2.0 profile ignore optional
arguments if the method call conv is not vararg.
2009-05-22 Zoltan Varga <vargaz@gmail.com>
* AssemblyBuilder.cs (.ctor): Error out if the not yet supported
RunAndCollect flag was given.
* AssemblyBuilderAccess.cs: Add RunAndCollect flag for net 4.0.
2009-03-20 Sebastien Pouliot <sebastien@ximian.com>
* DynamicMethod.cs (Invoke): Wrap a MethodAccessException inside a
TargetInvocationException (required for Moonlight 2).
2009-03-18 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs (GetGenericTypeDefinition): Call the icall instead of
the base method which now throws an exception.
2009-02-23 Zoltan Varga <vargaz@gmail.com>
* ILGenerator.cs SignatureHelper.cs: Add checks for user types.
2008-02-21 Jb Evain <jbevain@novell.com>
* ModuleBuilder.cs: override GetModuleVersionId
so that we can get the module guid from Module.ModuleVersionId.
Part of the fix for #471302.
2009-01-24 Zoltan Varga <vargaz@gmail.com>
* SignatureHelper.cs: Fix warnings.
* ILGenerator.cs: Fix warnings.
2008-11-23 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyBuilder.cs: When assembly is strongnamed, then explicitly
set PublicKey flag. Do not allow AssemblyFlagsAttribute to overwrite
flags value, and ignore PublicKey flag if assembly is not strongnamed.
Fixes bug #432423.
2008-11-11 Rodrigo Kumpera <rkumpera@novell.com>
* ConstructorOnTypeBuilderInst.cs (MetadataToken): Make this property
work under compiler context. Same hack as the one applied to
MethodOnTypeBuilderInst.
Fixes #442610.
2008-09-23 Marek Safar <marek.safar@gmail.com>
* ModuleBuilder.cs: Fixed NRE when default symbol writer cannot be
loaded.
2008-09-16 Jb Evain <jbevain@novell.com>
* AssemblyBuilder.cs (AddTypeForwarder): correctly grow the
type_forwarders array, to make that work for more than one
type forwarder. Managed part of the fix for #422929.
2008-09-04 Marek Safar <marek.safar@gmail.com>
* TypeBuilder.cs: Add mcs specific SetCharSet method.
2008-08-12 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs (CreateType): Avoid creating a default ctor if the
type has a constructor defined using DefineMethod. Fixes #416632.
2008-07-25 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GetMethod): Allow created TypeBuilders
to be used.
2008-07-23 Marek Safar <marek.safar@gmail.com>
Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (GetMethod): A fix for #408933
2008-07-22 Rodrigo Kumpera <rkumpera@novell.com>
* MethodOnTypeBuilderInst.cs: Change visibility of the parent
MethodBuilder to internal.
2008-07-22 Zoltan Varga <vargaz@gmail.com>
* CustomAttributeBuilder.cs (get_umarshal): Add support for all
MarshalAsAttribute fields to fix the build.
* CustomAttributeBuilder.cs (get_umarshal): Decode enums properly.
2008-07-21 Marek Safar <marek.safar@gmail.com>
* ParameterBuilder.cs, CustomAttributeBuilder.cs: Check for
UnmanagedType.ByValArray to be used only on fields.
2008-07-16 Rodrigo Kumpera <rkumpera@novell.com>
* MethodOnTypeBuilderInst.cs: Special case all methods
under compiler context as needed by mcs.
* MethodBuilder.cs: Change the visibility of some fields
to internal so MethodOnTypeBuilderInst can use it.
2008-07-11 Marek Safar <marek.safar@gmail.com>
* ModuleBuilder.cs: Couple of micro optimizations.
2008-07-03 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* SignatureHelper.cs: Fix parameter names
* ModuleBuilder.cs: Fix parameter names
2008-06-18 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (IsAssignableTo): Fixed check for interfaces
defined on parent. Based on Geoff's Norton patch.
Fixes #349194.
2008-06-12 Marek Safar <marek.safar@gmail.com>
* MethodBuilder.cs: Removed SetGenericMethodSignature.
2008-06-06 Jb Evain <jbevain@novell.com>
* OpCodes.cs: OpCode constrained. is of type InlineType.
2008-05-18 Gert Driesen <drieseng@users.sourceforge.net>
* TypeBuilder.cs (IsAssignableTo): When an interface is passed as
argument and the TypeBuilder has been created, also check if parent
can be assigned to type.
2008-05-15 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs (.ctor): Convert a null parent to typeof (object) here, not just
in CreateType (). Fixes #389171.
2008-05-11 Gert Driesen <drieseng@users.sourceforge.net>
* FieldBuilder.cs: Added null check for type.
* TypeBuilder.cs: For enums, construct UnderlyingSystemType when
first instance field is defined instead of having to lookup it up on
demand. Avoid cast in IsCompilerContext.
2008-05-11 Gert Driesen <drieseng@users.sourceforge.net>
* TypeBuilder.cs: Use Assembly.FullName instead of AssemblyName.
In UnderlyingSystemType, return UnderlyingSystemType of created type
when available. For an enum, UnderlyingSystemType is the type of the
first instance field. If no instance field is available, throw an
InvalidOperationException. Retain original behavior when operating in
compiler context.
* ConstructorBuilder.cs: Moved implementation of GetParameters to
GetParametersInternal to allow it to be used internally when type is
not yet created.
* CustomAttributeBuilder.cs: Added GetParameters method that uses
GetParametersInternal on ConstructorBuilder, and use it where
necessary.
2008-05-03 Zoltan Varga <vargaz@gmail.com>
* ConstructorBuilder.cs: Revert the throw not_created () change as it causes
vbnc bootstrap to fail. Fixes #386419.
2008-05-01 Gert Driesen <drieseng@users.sourceforge.net>
* ConstructorBuilder.cs: Switch arguments for AORE.
2008-04-30 Gert Driesen <drieseng@users.sourceforge.net>
* ModuleBuilder.cs (DefineType): Do not perform lookup of in cache if
name is null to allow correct exception to be thrown (in TypeBuilder
ctor).
* TypeBuilder: Moved name argument check to TypeBuilder ctor. Modified
ArgumentException parameter names to match MS. Removed duplicate check
for data length from DefineInitializedData. Modified check_name to
only throw when first character is null char.
* ConstructorBuilder.cs (GetParameters): Throw NotSupportedException
(2.0) or InvalidOperationException (1.0) when type is not yet created
and we're not in compiler context. Return empty array when no
parameters are defined.
(MethodHandle): Always throw NotSupportedException.
(DefineParameter): Prevent NRE when parameters is null.
(GetCustomAttributes): When not in compiler context, always throw
NotSupportedException.
* ConstructorOnTypeBuilderInst.cs: Delegate to ConstructorBuilder
where possible. Fixed ContainsGenericParameters and IsGenericMethod
to always return false. In MethodBase.Invoke, throw an
InvalidOperationException instead of NIE.
2008-04-26 Gert Driesen <drieseng@users.sourceforge.net>
* MethodOnTypeBuilderInst.cs: Added overrides for ReturnType and
GetGenericMethodDefinition. Implement GetGenericArgument,
IsGenericMethod(Definition). Throw NotSupportedException instead of
NotImplementedException.
2008-04-26 Jb Evain <jbevain@novell.com>
* ILGenerator.cs, AssemblyBuilder.cs, TypeBuilder.cs:
replace usages of new Type [0] by Type.EmptyTypes.
Found with Gendarme.
2008-04-22 Zoltan Varga <vargaz@gmail.com>
* MethodOnTypeBuilderInst.cs ConstructorOnTypeBuilderInst: New files.
2008-03-29 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyBuilder.cs: Added enum that determines the type of the
native (version) resource. Added fields for holding the native
resource type and the version culture. The versioninfo_culture was
introduced to hold the original culture of the assembly, since
the AssemblyCultureAttribute should only affect the language of the
versioninfo block when not used in compiler context. Move constructin
of native version info to DefineVersionInfoResourceImpl to allow
attributes to affect the versioninfo after DefineVersionInfoResource
has been invoked. Allow ArgumentException for invalid culture string
to bubble up. In compiler context, use FileVersion as default value
for ProductionVersion.
2008-03-14 Zoltan Varga <vargaz@gmail.com>
* FieldOnTypeBuilderInst.cs: New file.
2008-03-11 Marek Safar <marek.safar@gmail.com>
* MethodBuilder.cs (GetGenericArguments): Returns Type.EmptyType.
2008-03-06 Zoltan Varga <vargaz@gmail.com>
* AssemblyBuilder.cs: Define GetManifestModule () for net 2.0 bootstrap too.
* DynamicMethod.cs: Create a dynamic assembly to hold the anon hosted methods.
* DynamicMethod.cs: Add net 3.5 ctor overloads.
* ModuleBuilder.cs (RegisterToken): New icall.
* MethodBuilder.cs (ctor): Call ModuleBuilder.RegisterToken (), so the token gets
added to the internal hash table. Fixes #367668.
* ConstructorBuilder.cs: Ditto.
2008-03-06 Jb Evain <jbevain@novell.com>
* SignatureHelper.cs (GetMethodSigHelper): if returnType
is null, use typeof (void) instead. Fixes #367663.
2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
* MethodBuilder.cs (check_override): Added, verify if this method has explicit
override set and doesn't follow virtual settings of overriden method.
* TypeBuilder.cs (CreateType): Call MethodBuilder::check_override before
creating the type.
Fixes #361689.
2008-01-29 Zoltan Varga <vargaz@gmail.com>
* ModuleBuilder.cs: Fix build.
* AssemblyBuilder.cs (GetTypes): Implement this entirely in managed code.
* ModuleBuilder.cs (GetTypes): Replace TypeBuilders with their created types to
match MS.
* AssemblyBuilder.cs: Override GetModulesInternal () so we can return
ModuleBuilders.
2008-01-25 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs (GenerateDebugInfo): Emit debug info for nested types as well.
Fixes #356316.
2008-01-21 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyBuilder.cs: Introduce magic value for AssemblyBuilderAccess
to signal usage from a compiler. On 2.0 profile, perform argument
check for access. Use AssemblyFlags passed in through AssemblyName
arguments. Modified SetCustomAttribute to only use the Assembly*
attribute for constructing the assembly name when used in compiler
context. Fixes corlib part of bug #354970.
2008-01-17 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs (GetConstructorImpl): Add back the code removed by the last
patch since it is needed when building mscorlib.
2008-01-16 Gert Driesen <drieseng@users.sourceforge.net>
* TypeBuilder.cs (GetConstructorImpl): Use GetConstructor on created
type. Original implementation did not take into account the binding
flags and failed with a NotSupportedException if the default binder
checked if a ParamArrayAttribute was defined. It also does not make
sense to return a ConstructorBuilder once the type is emitted.
(GetConstructors): When the type is emitted, use GetConstructors
on the created type.
(GetFields): Removed duplicate code.
(GetMethodsByName): Fixed matching of methods in the parent class
depending on their accessibility:
- Private: never include private methods of parent
- Public: ignore if Public flag is not set
- Assembly: ignore if NonPublic is not set or when on the 1.0 profile
- Rest (Family, FamANDAssem, FamORAssem): ignore if NonPublic flag is
not set
Static methods of the parent are ignored unless the FlattenHierarchy
flag is set.
(GetProperties): When the type is emitted, use GetProperties on the
created type as the TypeBuilder implementation itself does not include
properties from the parent class.
2007-12-31 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyBuilder.cs (UnprotectedGetName): Set the public key token
as well.
2007-12-10 Zoltan Varga <vargaz@gmail.com>
* FieldBuilder.cs (GetToken): Use the MetadataToken property.
2007-11-20 Atsushi Enomoto <atsushi@ximian.com>
* GenericTypeParameterBuilder.cs : fixed regression.
GenericParameterAttributes also needs some special care.
2007-11-20 Atsushi Enomoto <atsushi@ximian.com>
* MethodBuilder.cs : implemented ContainsGenericParameters().
* GenericTypeParameterBuilder.cs : removed most of extra members
and added missing members for 2.0 API.
2007-11-18 Miguel de Icaza <miguel@novell.com>
* SignatureHelper.cs: Implement Equals and GetHashCode
2007-11-17 Miguel de Icaza <miguel@novell.com>
* SignatureHelper.cs: Preparational tasks to support the
AddArgument overloads that allow the specification of modopts and
modreqs.
Refactor code, add new parameters.
* SignatureHelper.cs (AddArguments): Add new 2.0 API, used by
new versions of the DLR. Currently does not have support for
modreq, modopts. Just a simple wrapper as consumed by the DLR.
2007-11-16 Atsushi Enomoto <atsushi@ximian.com>
* AssemblyBuilder.cs : added missing 2.0 member.
* DynamicMethod.cs : removed extra stuff.
* DynamicILInfo.cs : no public .ctor().
* ILGenerator.cs : fixed 2.0 member signatures.
2007-11-16 Atsushi Enomoto <atsushi@ximian.com>
* EnumBuilder.cs, TypeBuilder.cs : implemented missing 2.0
stuff, in harmless manner.
2007-11-16 Atsushi Enomoto <atsushi@ximian.com>
* ConstructorBuilder.cs : added CallingConvention.
2007-11-16 Atsushi Enomoto <atsushi@ximian.com>
* SignatureHelper.cs : Module can be null, and for non-
ModuleBuilder argument, throw ArgumentException.
Added missing 2.0 stuff.
2007-11-08 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs: Workaround for #82625 not needed anymore.
GetFields() returns the created type fields.
2007-10-15 Gert Driesen <drieseng@users.sourceforge.net>
* ILGenerator.cs: Added missing null checks. Removed extra tabs.
2007-09-23 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyBuilder.cs: Added missing paramname to ArgumentExceptions.
Use String.Length to check for zero-length string.
2007-09-23 Zoltan Varga <vargaz@gmail.com>
* AssemblyBuilder.cs (GetManifestModule): Return a ModuleBuilder here to
match MS.NET.
2007-09-22 Gert Driesen <drieseng@users.sourceforge.net>
* TypeBuilder.cs: Do not include static methods of base class in
GetMethod(s). Fixes bug #327482.
2007-09-14 Zoltan Varga <vargaz@gmail.com>
* AssemblyBuilder.cs (DefineVersionInfoResource): Allow the arguments to be
null. Fixes #82832.
2007-09-11 Jb Evain <jbevain@novell.com>
* DynamicMethod.cs: store the owner of the DynamicMethod.
2007-09-09 Zoltan Varga <vargaz@gmail.com>
* AssemblyBuilder.cs (DefineUnmanagedResource): Open file read-only. Fixes
#72764.
2007-09-02 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs: Add a workaround for #82625 to make nemerle work again.
2007-08-29 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyBuilder.cs: In DefineIconResource, open icon in read-only
mode. Fixes bug #82617.
2007-08-17 Rolf Bjarne Kvinge <RKvinge@novell.com>
* ILGenerator.cs: Change BeginCatchBlock to end the current filter block if called with a null exceptionType. Added ILExceptionBlock.FILTER_START to be able to track if we're in a filter block or not. Renamed PatchLastClauseStart to PatchFilterClause to match better what it does, and make it update the handler's type to FILTER. Fixes #81431.
2007-08-10 Zoltan Varga <vargaz@gmail.com>
* DynamicILInfo.cs: New file.
* DynamicMethod.cs (GetDynamicILInfo): New 2.0 method.
2007-07-11 Rodrigo Kumpera <rkumpera@novell.com>
* TypeBuilder.cs (CreateType): method did not check for enum type with defined methods and fixed compatibility issue in case of calling CreateType again after the first one failed, it now returns null as well.
2007-07-10 Zoltan Varga <vargaz@gmail.com>
* OpCodeType.cs EventToken.cs FieldToken.cs SignatureToken.cs PackingSize.cs
StringToken.cs AssemblyBuilderAccess.cs FlowControl.cs MethodToken.cs
ParameterToken.cs TypeToken.cs PropertyToken.cs OperandType.cs PEFileKinds.cs
StackBehaviour.cs: 2.0 updates.
2007-07-07 Gert Driesen <drieseng@users.sourceforge.net>
* MethodBuilder.cs: Code formatting. Spaces to tabs.
* TypeBuilder.cs: Same.
2007-07-06 Gert Driesen <drieseng@users.sourceforge.net>
* TypeBuilder.cs: Throw InvalidOperationException when attempting to
construct non-abstract interface without base type. Modified SetParent
to match MS: in 2.0 profile, throw InvalidOperationException when
parent is null and TypeBuilder is non-abstract interface. When
parent is null and TypeBuilder is not an interface, then set object
as parent. In 1.0 profile, throw ArgumentNullException when parent is
null.
2007-07-06 Gert Driesen <drieseng@users.sourceforge.net>
* TypeBuilder.cs: Implemented IsCOMObjectImpl.
2007-07-04 Atsushi Enomoto <atsushi@ximian.com>
* DynamicMethod.cs : 2.0 API fix.
2007-06-21 Zoltan Varga <vargaz@gmail.com>
* DynamicMethod.cs: Applied patch from Robert Jordan (robertj@gmx.net). Add
a destructor which frees the runtime data for the method.
2007-05-21 Gert Driesen <drieseng@users.sourceforge.net>
* TypeBuilder.cs: Changed HasElementTypeImpl to return false on 2.0
profile when type is not baked.
2007-05-21 Jb Evain <jb@nurv.fr>
* TypeBuilder.cs
MethodBuilder.cs:
Tag methods and types as HasSecurity when adding a
SuppressUnmanagedCodeSecurityAttribute on them.
Makes peverify happy.
2007-05-16 Gert Driesen <drieseng@users.sourceforge.net>
* TypeBuilder.cs (GetField): Return MonoField instance if the type is
already created. Fixed other part of bug #81368.
2007-05-16 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs (GetFields): Return MonoField objects if the type is already
created.
* FieldBuilder.cs (SetValue): Make this not supported again.
* FieldBuilder.cs: Support calling SetValue (). Fixes #81638.
2007-05-06 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs (CreateType): Fix build.
* TypeBuilder.cs (.ctor): Convert null parent to typeof (object). Fixes #81530.
* TypeBuilder.cs (UnderlyingSystemType): Remove commented out code.
2007-04-15 Alp Toker <alp@atoker.com>
* ConstructorBuilder.cs: Make use of
ConstructorInfo.TypeConstructorName/ConstructorName.
2007-04-09 Alp Toker <alp@atoker.com>
* ConstructorBuilder.cs: Remove redundant overrides.
2007-04-03 Marek Safar <marek.safar@gmail.com>
* OpCodes.cs: Removed obsolete opcodes.
2007-04-03 Alp Toker <alp@atoker.com>
* GenericTypeParameterBuilder.cs: SetInterfaceConstraints(Type[]) is
params.
* MethodBuilder.cs: MakeGenericMethod(Type[]) is params.
2007-03-19 Marek Safar <marek.safar@gmail.com>
* MethodBuilder.cs: MethodImplAttribute cannot be destructive and overwrite
existing flags.
2007-03-17 Marek Safar <marek.safar@gmail.com>
* MethodBuilder.cs: Implemented conversion of PreserveSigAttribute pseudo
attribute.
2007-03-17 Zoltan Varga <vargaz@gmail.com>
* ILGenerator.cs (Emit): Disallow ldtoken on a DynamicMethod as well.
* ILGenerator.cs (Emit): Do not allow ldftn on a DynamicMethod to be
compatible with MS.NET. Fixes #81157.
2007-03-13 Miguel de Icaza <miguel@novell.com>
* OpCode.cs: Add a couple of operators for jsc.sf.net
2007-03-12 Zoltan Varga <vargaz@gmail.com>
* DynamicMethod.cs: Add a field used by unmanaged code.
2007-03-06 Rolf Bjarne Kvinge <RKvinge@novell.com>
* MonoArrayMethod.cs: Use 'void' as return type in ToString when
the return type is null. Fixes #80435.
2007-03-06 Gert Driesen <drieseng@users.sourceforge.net>
* EnumBuilder.cs: On 2.0 profile, using current EnumBuilder as
field type in DefinedLiteral. Fixes bug #81007.
2007-02-25 Marek Safar <marek.safar@gmail.com>
* MethodBuilder.cs: Empty string is not allowed for DllImport name.
2007-02-13 Marek Safar <marek.safar@gmail.com>
* ModuleBuilder.cs: Add GetRegisteredType to expose name_cache for internal
usage.
* TypeBuilder.cs: Optimized generation of unmanaged data helpers.
An unmanaged data class helper can be re-used when its size matches to
size of requested class.
2007-01-25 Radek Doulik <rodo@novell.com>
* ModuleBuilder.cs: return created type from GetType in case the
type builder type was already created. Added test-555.cs as
regression test.
Tue Jan 23 17:45:07 CET 2007 Paolo Molaro <lupus@ximian.com>
* ModuleBuilder.cs, AssemblyBuilder.cs: mark the GC-tracked field
with UIntPtr.
2007-01-16 Rolf Bjarne Kvinge <RKvinge@novell.com>
* EnumBuilder.cs: value__ must have RTSpecialName flag set.
Fixes #80396
Fri Dec 22 19:42:56 CET 2006 Paolo Molaro <lupus@ximian.com>
* ModuleBuilder.cs: associate a resource writer with its
actual resource (bug #80339).
2006-10-06 Miguel de Icaza <miguel@novell.com>
* AssemblyBuilder.cs: Am doing a try/catch for pulling the LCID
from the AssemblyCulture that is provided, as Microsoft allows
arbitrary locales (even non-existing ones) to be specified.
The .locale information is actually pulled from the AssemblyName,
not from this lcid. But this LCID is used to encode the
resource. In my exploration of this, we are setting this field,
even if CSC never sets the field itself (its always zero).
Maybe we should completely remove this.
2006-09-12 Mart Roosma <roosma@gmail.com>
* DynamicMethod.cs: Allow empty name and null return type.
Fixes bug #79367.
2006-09-05 Miguel de Icaza <miguel@novell.com>
* TypeBuilder.cs (SetParent): Null parent is allowed for
interfaces.
2006-09-02 Zoltan Varga <vargaz@gmail.com>
* DynamicMethod.cs: Fix a warning.
* TypeBuilder.cs: Allow static methods on interfaces. Fixes #79249.
2006-08-18 Zoltan Varga <vargaz@gmail.com>
* *.cs: Use String.Empty instead of "" in a lot of places.
2006-07-14 Zoltan Varga <vargaz@gmail.com>
* ConstructorBuilder.cs (GetILGenerator): Avoid creating a new ILGenerator each time
this is called. Fixes #78859.
2006-07-11 Zoltan Varga <vargaz@gmail.com>
* MethodBuilder.cs (SetCustomAttribute): Fix handling of SpecialNameAttribute.
2006-07-09 Gert Driesen <drieseng@users.sourceforge.net>
* DynamicMethod.cs: Fix check for empty method body, avoids SIGSEV.
2006-07-08 Zoltan Varga <vargaz@gmail.com>
* DynamicMethod.cs: Create all other DynamicMethod's referenced by
this method as well. Check for an empty method body.
* ILGenerator.cs (Emit): Handle DynamicMethod's which might not have a
declaring type.
2006-05-15 Zoltan Varga <vargaz@gmail.com>
* AssemblyBuilder.cs (MonoResource): Add a 'stream' field.
* ModuleBuilder.cs (DefineManifestResource): Add new net 2.0 method.
2006-04-26 Miguel de Icaza <miguel@novell.com>
* MethodBuilder.cs: better error messages when we close the
method.
2006-03-28 Marek Safar <marek.safar@seznam.cz>
* ILGenerator.cs: Delayed the exception stack creation. It saves ~1.5 MB
for corlib compilation.
2006-03-27 Marek Safar <marek.safar@seznam.cz>
* ILGenerator.cs: Tune up label defaults, switched to double resizing.
2006-03-15 Zoltan Varga <vargaz@gmail.com>
* AssemblyBuilder.cs (AddTypeForwarder): New internal method for
adding type forwarders to an assembly.
2006-02-27 Gert Driesen <drieseng@users.sourceforge.net>
* ConstructorBuilder.cs: In AddDeclarativeSecurity, throw an
ArgumentOutOfRangeException instead of an ArgumentException if action
is a Request* action. Fixes bug #77640.
* MethodBuilder.cs: Same.
* TypeBuilder.cs: Same.
Mon Feb 27 17:12:40 CET 2006 Paolo Molaro <lupus@ximian.com>
* ModuleBuilder.cs: unlink the file before saving
otherwise we might overwrite a file mmapped by the runtime.
2006-02-17 Zoltan Varga <vargaz@gmail.com>
* DynamicMethod.cs: Implement DefineParameter ().
* ParameterBuilder.cs: Add support for DynamicMethod parents.
2006-02-15 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.DefineMethod): Also enable the
2-argument version in the `BOOTSTRAP_NET_2_0' profile.
(TypeBuilder.DefineGenericMethod): Removed.
2006-02-14 Martin Baulig <martin@ximian.com>
* ConstructorBuilder.cs
(ConstructorBuilder.IsGenericMethod): Override this and return
false; the MS runtime doesn't throw an exception here.
(ConstructorBuilder.IsGenericMethodDefinition): Likewise.
* MethodBuilder.cs
(MethodBuilder.IsGenericMethod): Implement this.
(MethodBuilder.IsGenericMethodDefinition): Likewise.
2006-02-03 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs (CreateType): Add a check for Sealed parents.
2006-02-01 Zoltan Varga <vargaz@gmail.com>
* OpCodes.cs: Readonly is a net 2.0 only field.
Tue Jan 31 13:37:02 CET 2006 Paolo Molaro <lupus@ximian.com>
* OpCodes.cs: Added Readonly field.
2006-01-29 Raja R Harinath <harinath@gmail.com>
* GenericTypeParameterBuilder.cs (DeclaringType): Return the
declaring type of a generic method.
2005-12-15 Raja R Harinath <rharinath@novell.com>
* TypeBuilder.cs (IsGenericType): Implement override.
2005-12-07 Martin Baulig <martin@ximian.com>
* GenericTypeParameterBuilder.cs: Add support for custom attributes.
(GenericTypeParameterBuilder.cattrs): New field.
(GenericTypeParameterBuilder.SetCustomAttribute): Implement this.
Mon Dec 5 15:13:26 CET 2005 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: fixed emitting doubles on ARM.
2005-12-02 Alp Toker <alp@atoker.com>
* GenericTypeParameterBuilder.cs:
* TypeBuilder.cs: DeclaringMethod should return MethodBase, not MethodInfo
2005-11-19 Zoltan Varga <vargaz@gmail.com>
* AssemblyBuilder.cs: Add support for setting FileVersion unmanaged
resource. Fixes #64427.
2005-11-18 Zoltan Varga <vargaz@gmail.com>
* ParameterBuilder.cs (SetCustomAttribute): Handle DefaultParameterValueAttribute as well.
* CustomAttributeBuilder.cs: Add support for decoding more types of
constructor parameters.
2005-11-11 Zoltan Varga <vargaz@gmail.com>
* TypeBuilder.cs (SetCustomAttribute): Handle ComImportAttribute as well.
2005-11-11 Marek Safar <marek.safar@seznam.cz>
* EnumBuilder.cs, GenericTypeParameterBuilder.cs: Reflect Type changes.
2005-11-06 Zoltan Varga <vargaz@freemail.hu>
* Label.cs: Add == and != operators.
2005-10-30 Zoltan Varga <vargaz@freemail.hu>
* FieldBuilder.cs: Add implementation of new UMarshal property.
2005-10-27 Zoltan Varga <vargaz@gmail.com>
* FieldBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Add support for
returing custom attributes in created types. MS.NET supports this by
returning non-builder objects from GetMethod/GetField etc., but we return
builder objects in this case. Fixes #76521.
2005-10-24 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.IsGenericTypeDefinition): Override this.
2005-10-03 Atsushi Enomoto <atsushi@ximian.com>
* CustomAttributeBuilder.cs : internal attributes should be allowed.
Fixed bug #75723.
2005-09-26 Marek Safar <marek.safar@seznam.cz>
* PropertyBuilder.cs: Throw NotSupportedException for unsupported
methods.
2005-09-14 Martin Baulig <martin@ximian.com>
* LocalBuilder.cs
(LocalBuilder.Mono_GetLocalIndex): New static internal method;
same as the .NET 2.0 property `LocalIndex'.
Mon Sep 5 18:08:09 CEST 2005 Paolo Molaro <lupus@ximian.com>
* EventBuilder.cs, FieldBuilder.cs, MethodBuilder.cs, TypeBuilder.cs,
PropertyBuilder.cs: take care of the SpecialName attribute (bug #75768).
2005-09-01 Raja R Harinath <rharinath@novell.com>
* CustomAttributeBuilder.cs (get_umarshal): Don't cause a nullref
exception when passed a custom marshaller type that belongs to the
assembly being built. When user specifies MarshalType rather than
MarshalTypeRef, don't attempt to resolve the type.
2005-08-31 Raja R Harinath <rharinath@novell.com>
* CustomAttributeBuilder.cs (get_umarshal): Fix typo. The name of
the field is "SizeParamIndex", not "SizeSizeParamIndex".
* ParameterBuilder.cs (SetCustomAttribute) [MarshalAsAttribute]:
Set ParameterAttributes.HasFieldMarshal flag.
2005-08-19 Zoltan Varga <vargaz@freemail.hu>
* DynamicMethod.cs (CreateDelegate): Don't cache the delegate since it
needs to be different for each target.
* DynamicMethod.cs (CreateDynMethod): Call ilgen.label_fixup ().
* DynamicMethod.cs (AddRef): Reserve every second ref slot for use by the
runtime.
2005-08-05 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyBuilder.cs: Implement _AssemblyBuilder, CA fixes to
correspond with MS.NET
* ConstructorBuilder.cs: Implement _ConstructorBuilder, CA fixes to
correspond with MS.NET
* CustomAttributeBuilder.cs: Implement _CustomAttributeBuilder, CA
fixes to correspond with MS.NET
* EnumBuilder.cs: Implement _EnumBuilder, CA fixes to correspond with
MS.NET
* EventBuilder.cs: Implement _EventBuilder, CA fixes to correspond
with MS.NET
* FieldBuilder.cs: Implement _FieldBuilder, CA fixes to correspond
with MS.NET
* LocalBuilder.cs: Implement _LocalBuilder, CA fixes to correspond
with MS.NET
* MethodBuilder.cs: Implement _MethodBuilder, CA fixes to correspond
with MS.NET
* MethodRental.cs: CA fixes to correspond with MS.NET, implemented
_MethodRental.
* ModuleBuilder.cs: Implement _ModuleBuilder, CA fixes to correspond
with MS.NET
* ILGenerator.cs: Implement _ILGenerator, CA fixes to correspond
with MS.NET
* ParameterBuilder.cs Implement _ParameterBuilder, CA fixes to
correspond with MS.NET
* PropertyBuilder.cs: Implement _PropertyBuilder, CA fixes to
correspond with MS.NET
* SignatureHelper.cs: Implement _SignatureHelper, CA fixes to
correspond with MS.NET
* TypeBuilder.cs: Implement _TypeBuilder, CA fixes to correspond
with MS.NET
2005-07-21 Jb Evain <jbevain@gmail.com>
* ILGenerator.cs: Implement filter blocks support.
Fixes bug #75010.
2005-07-21 Zoltan Varga <vargaz@freemail.hu>
* ILGenerator.cs (BeginFaultBlock): Call InternalEndClause () here
too. Reported by Jeroen Frijters.
2005-07-11 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.CreateType): Call
create_generic_class() here as well; fixes #75454.
2005-06-27 Marek Safar <marek.safar@seznam.cz>
* TypeBuilder.cs (check_name): Wrong exception argument order.
2005-06-14 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyBuilder.cs: Override UnprotectedGetName to set the public
key (if available).
2005-06-12 Gert Driesen <drieseng@users.sourceforge.net>
* MethodBuilder.cs: In CreateMethodBody, throw
ArgumentOutOfRangeException instead of ArgumentException when count
is not within range of array. Do not allow zero length method body
to be emitted when using 2.0 profile. Fixes bug #75236.
2005-06-12 Gert Driesen <drieseng@users.sourceforge.net>
* FieldBuilder.cs: FieldBuilder.FieldHandle should throw
NotSupportedException to match MS.NET (both 1.x and 2.x).
Fixes regression introduced in r45750.
* MethodBuilder.cs: MethodBuilder.MethodHandle should throw
NotSupportedException to match MS.NET (both 1.x and 2.x).
Fixes regression introduced in r45750.
2005-06-09 Kamil Skalski <nazgul@nemerle.org>
* ConstructorBuilder.cs FieldBuilders.cs MethodBuilder.cs: Return
RuntimeHandles when requested
* TypeBuilder.cs: Add static Get{Method,Constructor,Field} methods
from .NET 2.0 beta 2 API for obtaining instanciated *Info objects
from non-instanciated counterparts
2005-06-08 Zoltan Varga <vargaz@freemail.hu>
* ConstructorBuilder.cs FieldBuilder.cs MethodBuilder.cs PropertyBuilder.cs:
Add 2.0 Module property.
* *.cs: Updates for net 2.0 beta 2.
2005-06-07 Zoltan Varga <vargaz@freemail.hu>
* *Token.cs: Add net 2.0 Equals methods.
* *.cs: Updates for net 2.0 beta 2.
* *.cs: Updates for net 2.0 beta 2.
2005-06-06 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: Update after PortableExecutableKinds name change.
2005-06-03 Zoltan Varga <vargaz@freemail.hu>
* MethodBuilder.cs CustomAttributeBuilder.cs: Rework DllImportAttribute
decoding to improve compatibility with MS.NET.
* MethodBuilder.cs (SetCustomAttribute): Set PinvokeImpl attribute if
a DllImportAttribute is present.
2005-06-02 Zoltan Varga <vargaz@freemail.hu>
* MethodBuilder.cs (SetCustomAttribute): Handle the case when the
calling convention inside the DllImportAttribute is empty.
2005-06-01 Zoltan Varga <vargaz@freemail.hu>
* MethodBuilder.cs (SetCustomAttribute): Handle DllImportAttribute
as well.
* CustomAttributeBuilder.cs: Add a decode_cattr helper method.
2005-05-27 Vladimir Vukicevic <vladimir@pobox.com>
* MethodBuilder.cs: Add extra_flags field to encode P/Invoke
bits that can't be specified via MethodBuilder directly; fixes
#75060.
2005-05-25 Zoltan Varga <vargaz@freemail.hu>
* GenericTypeParameterBuilder.cs: Return this in UnderlyingSystemType.
2005-05-25 Lluis Sanchez Gual <lluis@novell.com>
* ModuleBuilder.cs: Implemented DefineDocument(). Generate debug
info when saving the module.
* ILGenerator.cs: Keep marked sequence points in a list.
Added a GenerateDebugInfo method, which dumps the info collected
during code generation.
* TypeBuilder.cs:
* ConstructorBuilder.cs:
* MethodBuilder.cs: Added method for generating debug info.
* LocalBuilder.cs: Added StartOffset and EndOffset properties.
* CustomAttributeBuilder.cs: Use IsInstanceOfType instead of
IsAssignableFrom when possible.
2005-05-20 Miguel de Icaza <miguel@novell.com>
* TypeBuilder.cs (UnderlyingSystemType): should always return this
according to Zoltan. Old code left there, but should probably be removed.
2005-05-13 Zoltan Varga <vargaz@freemail.hu>
* MethodBuilder.cs (fixup): Take into account CreateMethodBody as
well.
* ConstructorBuilder.cs MethodBuilder.cs: Check that elements of
parameterTypes are not null. Fixes #74928.
2005-05-12 Zoltan Varga <vargaz@freemail.hu>
* ConstructorBuilder.cs MethodBuilder.cs (fixup): Fix this.
* ConstructorBuilder.cs MethodBuilder.cs (fixup): Throw an exception if a
method body is empty. Fixes #74906.
2005-04-13 Marek Safar <marek.safar@seznam.cz>
* TypeBuilder.cs (SetCustomAttribute): StructLayoutAttribute.CharSet
has to overwrite current settings.
2005-04-05 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyBuilder.cs: Don't call GetCurrentDirectory if building an
assembly that will never be serialized to disk (because CAS may not
allow disk access but still allow generating a in-memory assembly).
2005-03-24 Miguel de Icaza <miguel@novell.com>
* DynamicMethod.cs (CreateDelegate): Add second overload based on
the first one that allows for a `target' argument.
2005-03-24 Sebastien Pouliot <sebastien@ximian.com>
* MethodRental.cs: Added Demand for UnmanagedCode on SwapMethodBody
method.
2005-03-16 Zoltan Varga <vargaz@freemail.hu>
* MethodBuilder.cs: Add internal BestFitMapping and
ThrowOnUnmappableChar properties used by mcs.
2005-03-09 Marek Safar <marek.safar@seznam.cz>
* ILGenerator.cs (DeclareLocal): Throw an exception for null argument.
2005-03-01 Zoltan Varga <vargaz@freemail.hu>
* CustomAttributeBuilder.cs UnmanagedMarshal.cs: Allow sizeConst and
sizeParamIndex to be -1, which means they are not given.
* CustomAttributeBuilder.cs (get_umarshal): Only call the internal
LPArray creation method if sizeConst of sizeParamIndex is given.
* UnmanagedMarshal.cs: Add has_size field.
2005-02-28 Zoltan Varga <vargaz@freemail.hu>
* CustomAttributeBuilder.cs (get_umarshal): Marshal sizeConst and
sizeParamIndex fields as well.
* UnmanagedMarshal.cs: Add param_num field and a new internal creation
method which sets it.
2005-02-11 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs (IsAssignableTo): New helper method. Fixes #70838.
* TypeBuilder.cs: Fix warning.
2005-01-21 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
* MethodBuilder.cs, TypeBuilder: missing 'params' in some method signature
patch by Kamil Skalski <nazgul@nemerle.org>
2005-01-18 Geoff Norton <gnorton@customerdna.com>
* ModuleBuilder.cs: Interfaces should have null BaseType.
Fixes #71301.
2005-01-18 Miguel de Icaza <miguel@ximian.com>
* TypeBuilder.cs: Add check for creation. Fix from Geoff.
2004-12-16 Zoltan Varga <vargaz@freemail.hu>
* CustomAttributeBuilder.cs: Fix a warning.
Wed Dec 15 11:34:13 CET 2004 Paolo Molaro <lupus@ximian.com>
* ModuleBuilder.cs, EnumBuilder.cs: actually add the enumbuilder
to the type list of the module (bug#70488).
2004-12-09 Martin Baulig <martin@ximian.com>
* GenericTypeParameterBuilder.cs
(GenericTypeParameterBuilder.IsValueType): Fixed the FIXME.
2004-12-08 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: Move corlib_internal field here from Assembly.
* AssemblyBuilder.cs: Add corlib_internal to the ctor parameters.
2004-12-06 Ben Maurer <bmaurer@ximian.com>
* TypeBuilder.cs (CreateType): Creating a type twice does not
throw in msft.
2004-11-22 Zoltan Varga <vargaz@freemail.hu>
* ModuleBuilder.cs: Check that all types inside the module are created.
Fixes #69780.
2004-11-13 Ben Maurer <bmaurer@ximian.com>
* ModuleBuilder.cs (Save): Use new WriteToFile icall.
2004-11-04 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs: Make some members work if the type is created since
MS does this.
2004-10-30 Zoltan Varga <vargaz@freemail.hu>
* CustomAttributeBuilder.cs: Check that arguments are not
multi-dimensional arrays.
2004-10-12 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.setup_generic_class): Renamed to
create_generic_class() and added a new setup_generic_class().
(TypeBuilder.DefineGenericParameters): Call setup_generic_class()
before creating the type parameters.
2004-10-11 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.generic_container): New private field.
* MethodBuilder.cs (MethodBuilder.generic_container): New private field.
* GenericTypeParameterBuilder.cs
(GenericTypeParameterBuilder.GetGenericTypeParameterConstraints):
Return `Type.EmptyTypes' instead of an array of `typeof (object)'.
2004-10-08 Zoltan Varga <vargaz@freemail.hu>
* ModuleBuilder.cs: Create global type after creation.
2004-10-06 Zoltan Varga <vargaz@freemail.hu>
* ModuleBuilder.cs (GetTypes): Fix length of returned array. Fixes
#65931.
2004-10-04 Zoltan Varga <vargaz@freemail.hu>
* ModuleBuilder.cs (DefineType): Check for duplicate type names. Fixes
#65988.
2004-10-03 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilderAccess.cs: Remove [Flags].
* PackingSize.cs: Add new 2.0 members. Remove [Flags].
* AssemblyBuilder.cs: Add net 2.0 Save method.
* LocalBuilder.cs: Make this inherit from LocalVariableInfo under
net 2.0. Reorganize fields so the layout visible to the runtime is the
same under 1.0 and 2.0. Add 2.0 properties.
2004-10-02 Gert Driesen <drieseng@users.sourceforge.net>
* TypeBuilder.cs: throw NotSupportedException when defining default
ctor if parent type does not have default ctor
2004-09-30 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs: Make 'created' field visible to the runtime.
2004-09-28 Martin Baulig <martin@ximian.com>
* GenericTypeParameterBuilder.cs
(GenericTypeParameterBuilder.ContainsGenericParameters): Return
true here; System.Type.ContainsGenericParameters returns true when
called on a type parameter, so let's do the same here.
2004-09-27 Zoltan Varga <vargaz@freemail.hu>
* ConstructorBuilder.cs: Add 2.0 GetILGenerator(size) method.
2004-09-26 Zoltan Varga <vargaz@freemail.hu>
* UnmanagedMarshal.cs: Add ToMarshalAsAttribute method.
2004-09-25 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs: Add IsCreated method.
2004-09-24 Zoltan Varga <vargaz@freemail.hu>
* FieldBuilder.cs: Add dummy GetFieldOffset method.
2004-09-24 Martin Baulig <martin@ximian.com>
* GenericTypeParameterBuilder.cs
(GenericTypeParameterBuilder.GetGenericParameterConstraints): Override.
2004-09-23 Zoltan Varga <vargaz@freemail.hu>
* DynamicMethod.cs: Add MetadataToken property and tweak Module property.
2004-09-23 Martin Baulig <martin@ximian.com>
* GenericTypeParameterBuilder.cs
(GenericTypeParameterBuilder.SetGenericParameterAttributes): New
public method, replaces the old Mono_* hacks.
2004-09-20 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyBuilder.cs: Fixed assembly-level permissions. I don't know
why I splitted them all into individual entries when only a single set
is accepted for each security action :(.
2004-09-17 Zoltan Varga <vargaz@freemail.hu>
* CustomAttributeBuilder.cs: Applied patch from Marcus Urban
(mathpup@mylinuxisp.com). Add support for defining custom
marshallers by calling SetCustomAttribute.
2004-09-16 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyBuilder.cs: Keep a copy of the 3 permission set as an array
of RefEmitPermissionSet. This will allow to reuse existing
functionalities already present in the runtime.
2004-09-12 Marek Safar <marek.safar@seznam.cz>
* TypeBuilder.cs: Do not create default constructor for
static classes.
2004-09-09 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs: Set the table_idx of the global type to 1.
* ModuleBuilder.cs: Save the main module of the assembly even if it is
transient.
2004-09-02 Ben Maurer <bmaurer@users.sourceforge.net>
* LocalBuilder.cs: another s.ioe
2004-09-02 Ben Maurer <bmaurer@users.sourceforge.net>
* ModuleBuilder.cs: dont throw an S.IOE for debugging stuff.
makes sre apps work
2004-09-02 Martin Baulig <martin@ximian.com>
* MethodBuilder.cs (MethodBuilder.GetParameters): Throw a
NotSupportedException() until the type has been fully created.
2004-09-01 Martin Baulig <martin@ximian.com>
* IMonoSymbolWriter.cs: Removed.
* ModuleBuilder.cs, LocalBuilder.cs, ILGenerator.cs: Removed the
old debugging code.
2004-08-13 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyBuilder.cs: (Partly) Fix delay-signing issue (#56621) when
MCS is used on the MS runtime (other part of the fix is for MCS).
2004-08-11 Marek Safar <marek.safar@seznam.cz>
* AssemblyBuilder.cs: Added AddPermissionRequests method
used be mcs for SecurityPermissionAttribute handling.
2004-08-08 Zoltan Varga <vargaz@freemail.hu>
* EnumBuilder.cs: Call setup_enum_type () in the constructor. Fixes
#62237.
2004-08-07 Jackson Harper <jackson@ximian.com>
* AssemblyBuilder.cs: "neutral" culture is invariant culture
(String.Empty).
2004-08-07 Atsushi Enomoto <atsushi@ximian.com>
* OpCodes.cs : csc complains CS1034 Line cannot exceed 2046 characters.
2004-08-05 Duncan Mak <duncan@ximian.com>
* OpCodes.cs (TakesSingleByteArgument): Add this back.
2004-08-05 Duncan Mak <duncan@ximian.com>
This patch is based on an idea of Ben's to reduce the code size
in MCS.
* OpCodes.cs: Instead pushing the data onto the stack when each
OpCode is initialized, pack the data into 2 ints and store only
that. Furthermore, the names of each OpCode are stored in a
separate string array in the new OpCodeNames class.
* OpCodeNames.cs: The names of each OpCode are moved here to delay
the initialization of the strings, as they are not used frequently.
* OpCode.cs: Rewrote this to take in everything as 2 ints.
2004-07-29 Martin Baulig <martin@ximian.com>
* ILGenerator.cs (ILGenerator.Mono_GetCurrentOffset): New static
internal method.
* ModuleBuilder.cs (ModuleBuilder.Mono_GetGuid): New static
internal method.
2004-07-24 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.UnspecifiedTypeSize): Set this to 0
and initialize it to 0 everywhere.
2004-07-22 Martin Baulig <martin@ximian.com>
* ILGenerator.cs (ILGenerator.BeginFaultBlock): Implemented.
2004-07-07 Miguel de Icaza <miguel@ximian.com>
* LocalBuilder.cs: Remove MakePinned, we are now going to use
ILGenerator.DeclaraLocal that takes the `bool pinned' argument.
* ILGenerator.cs (DeclareLocal): Add `pinned' version of the
method on the 2.0 profile.
2004-07-02 Zoltan Varga <vargaz@freemail.hu>
* EnumBuilder.cs (CreateType): Call a new icall to set the internal
type field. Fixes #59833.
Thu Jun 24 15:33:04 CEST 2004 Paolo Molaro <lupus@ximian.com>
* ParameterBuilder.cs: implement SetConstant ().
Wed Jun 23 15:40:48 CEST 2004 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: handle properly the case when SetParent()
is called (requires an updated runtime, too bug#60474).
Wed Jun 23 14:20:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
* EnumBuilder.cs, TypeBuilder.cs: patch from Gert Driesen
to implement EnumBuilder (slightly tweaked).
2004-06-15 Gert Driesen <drieseng@users.sourceforge.net>
* MethodRental.cs: fixed value of JitOnDemand
2004-06-09 Gert Driesen <drieseng@users.sourceforge.net>
* FieldBuilder.cs: fixed implementation to match MS.NET,
meaning throw InvalidOperationException for methods that
should not be allowed to execute when type has been
created, and throw NotSupportedException for methods and
properties that should not be called on FieldBuilder
2004-06-09 Gert Driesen <drieseng@users.sourceforge.net>
* MethodBuilder.cs: move check to see if type has already
been created up, to match MS.NET behaviour. Fix GetHashCode
(removed TODO)
2004-06-09 Gert Driesen <drieseng@users.sourceforge.net>
* MethodRental.cs: Added check for method size
2004-06-08 Martin Baulig <martin@ximian.com>
* ILGenerator.cs (TokenGenerator.GetToken): Added overloaded
version which takes a MethodInfo and a Type[].
(IlGenerator.EmitCall): When emitting a call to a varargs method,
use the new GetToken() to pass the optional argument types to the
runtime.
* ModuleBuilder.cs (ModuleBuilder.getMethodToken): New interncall.
2004-05-29 Gert Driesen (drieseng@users.sourceforge.net)
* AssemblyBuilder.cs: removed extra method, fixes public API
compatibility with MS.NET
* TypeBuilder.cs: removed extra method, fixes public API
compatibility with MS.NET
2004-05-28 Jackson Harper <jackson@ximian.com>
* CustomAttributeBuilder.cs: GetBlob now takes a ref to the
assembly so it can encode type names properly.
2004-05-25 Sebastien Pouliot <sebastien@ximian.com>
* MethodBuilder.cs: Now use FastNewGuidArray to create new random
Guids without using CryptoConfig. Speed up for MCS.
2004-05-14 Zoltan Varga <vargaz@freemail.hu>
* MethodBuilder.cs: Add Equals and GetHashCode.
* TypeBuilder.cs: Add IsSubclassOf.
2004-05-13 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: Make extra methods internal. mcs was changed
to handle this a long time ago.
* TypeBuilder.cs: Add IsAssignableFrom and IsInstanceOfType.
* TypeBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Implement
ToString ().
* TypeBuilder.cs (ToString): Make this consistent with MS.NET.
2004-05-11 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* OpCodes.cs: Refactored to avoid the static constructor
2004-05-10 Gert Driesen (drieseng@users.sourceforge.net)
* AssemblyBuilder.cs: fixed warning
* MethodRental.cs: added private default ctror to match MS.NET
2004-05-03 Lluis Sanches Gual <lluis@ximian.com>
* ModuleBuilder.cs: Use name const to load the debugger assembly.
2004-05-01 Todd Berman <tberman@sevenl.net>
* ModuleBuilder.cs: Load the proper assembly for a gac-only install.
2004-04-29 Ben Maurer <bmaurer@users.sourceforge.net>
* ILGenerator.cs, ModuleBuilder.cs: readonlyificate.
2004-04-28 Zoltan Varga <vargaz@freemail.hu>
* MethodRental.cs: New file.
2004-04-28 Raja R Harinath <rharinath@novell.com>
* TypeBuilder.cs (SetCustomAttribute): Handle the presence of the
full type name in the data stream. This is emitted for value
types by the Mono runtime.
2004-04-23 Atsushi Enomoto <atsushi@ximian.com>
* ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
OpCodes.cs, TypeBuilder.cs :
The fix should be easier ;)
2004-04-23 Atsushi Enomoto <atsushi@ximian.com>
* ConstructorBuilder.cs, DynamicMethod.cs, EnumBuilder.cs,
GenericTypeParameterBuilder.cs, MethodBuilder.cs, ModuleBuilder.cs,
OpCodes.cs, TypeBuilder.cs :
NET_2_0 related build fix.
2004-04-07 Martin Baulig <martin@ximian.com>
* GenericTypeParameterBuilder.cs
(Mono_SetReferenceTypeConstraint): New public method.
(Mono_SetValueTypeConstraint): New public method.
2004-04-07 Bernie Solomon <bernard@ugsolutions.com>
* MethodBuilder.cs, TypeBuilder.cs: always have
slot for generic_params for consistent offsets.
2004-04-07 Martin Baulig <martin@ximian.com>
* GenericTypeParameterBuilder.cs
(Mono_SetConstructorConstraint): New public method.
2004-04-07 Martin Baulig <martin@ximian.com>
* GenericTypeParameterBuilder.cs: New file.
* TypeBuilder.cs (TypeBuilder.DefineGenericParameters): New public
method. This is the new public API.
(TypeBuilder.DefineGenericParameter): Removed.
(TypeBuilder.SetGenericParameterConstraints): Removed.
* MethodBuilder.cs (MethodBuilder.DefineGenericParameters): New public
method. This is the new public API.
(MethodBuilder.DefineGenericParameter): Removed.
(MethodBuilder.SetGenericParameterConstraints): Removed.
2004-04-01 Martin Baulig <martin@ximian.com>
* OpCodes.cs (OpCodes.Constrained): New opcode.
2004-04-01 Ben Maurer <bmaurer@users.sourceforge.net>
* LocalBuilder.cs: Fix pinned support.
2004-03-30 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.SetGenericParameterConstraints):
Added `bool has_ctor_constraint' argument.
* MethodBuilder.cs (MethodBuilder.SetGenericParameterConstraints):
Added `bool has_ctor_constraint' argument.
2004-03-29 Ben Maurer <bmaurer@users.sourceforge.net>
* LocalBuilder.cs: pinned support.
2004-03-29 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.ContainsGenericParameters): Implemented.
2004-03-25 Sebastien Pouliot <sebastien@ximian.com>
* AssemblyBuilder.cs: Changed strongname support to match MS
implementation (i.e. attributes are used by the compiler - not by
AssemblyBuilder).
2004-03-24 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs (GetMethod): Implement.
* CustomAttributeBuilder.cs: Reenable argument checking with MS.NET
compatibility tweaks.
2004-03-23 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.GetEvents_internal): New internal
method; this is basically GetEvents(), but see the FIXME in that method.
2004-03-23 Zoltan Varga <vargaz@freemail.hu>
* CustomAttributeBuilder.cs: Disable argument checking since it causes
regressions.
2004-03-22 Zoltan Varga <vargaz@freemail.hu>
* CustomAttributeBuilder.cs (Initialize): Add more argument checking.
Fixes #55793.
2004-03-09 Jackson Harper <jackson@ximian.com>
* CustomAttributeBuilder.cs: Add some argument checking. Handle
default arguments properly.
2004-03-09 Sebastien Pouliot <spouliot@videotron.ca>
* AssemblyBuilder.cs: The strong name key file existance will now be
checked in the current compilation directory AND in the assembly
output directory. Fix bugzilla entry #55320.
2004-02-23 Martin Baulig <martin@ximian.com>
* MethodBuilder.cs (MethodBuilder.SetGenericMethodSignature):
Added MethodAttributes and CallingConventions arguments.
2004-02-02 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs: Implement DefineUninitializedData and
AddDeclarativeSecurity.
2004-01-27 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (SetCustomAttribute): Move the reading of the
keyfile to the Save () method.
2004-01-26 Sebastien Pouliot <spouliot@videotron.ca>
* AssemblyBuilder.cs: Save will now strongname the assembly is (a) a
StrongName is present and (b) the signature isn't delayed.
2004-01-24 David Sheldon <dave-mono@earth.li>
* AssemblyBuilder.cs: Added override for GetFiles() that throws
NotSupportedException.
2004-01-15 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (Save): Handle entry points with an int return
type as well.
* AssemblyBuilder.cs (Save): If the entry point is in a module, create
a new entry point which calls the real one, since the entry point must
be in the module which contains the manifest.
* ModuleBuilder.cs (Save): Create the global type automatically if not
already done.
2004-01-13 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (DefineVersionInfoResource): Set more
version info properties.
2004-01-08 Zoltan Varga <vargaz@freemail.hu>
* CustomAttributeBuilder.cs (string_arg): New helper method.
* AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
* AssemblyBuilder.cs (SetCustomAttribute): Use the new helper method.
* AssemblyBuilder.cs (DefineUnmanagedResource): Implement.
* AssemblyBuilder.cs (DefineIconResource): New internal method to
support mcs.
* TypeBuilder.cs (IsDefined): Implement this, since some corlib classes
make calls to IsDefined.
2004-01-06 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: Fix warning.
2004-01-05 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (DefineVersionInfoResource): Implement.
2003-12-29 Ben Maurer <bmaurer@users.sourceforge.net>
* MethodBuilder.cs, ConstructorBuilder.cs: Override GetParameterCount.
* ILGenerator.cs: Use GetParameterCount.
2003-12-20 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (AddModule): New internal method to support
/addmodule in mcs.
2003-12-19 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: New internal property to support /target:module in
mcs.
2003-12-18 Zoltan Varga <vargaz@freemail.hu>
* ILGenerator.cs: Applied patch from Ben Maurer
(bmaurer@users.sourceforge.net). Allocate arrays holding label data
lazily and reduce their size.
2003-12-17 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (MonoResource): New 'offset' field used by the
runtime.
* ModuleBuilder: Implement DefineResource.
2003-12-15 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (RefEmitPermissionSet): New helper structure.
* MethodBuilder.cs (AddDeclarativeSecurity): Implement.
* ConstructorBuilder.cs (AddDeclarativeSecurity): Ditto.
2003-12-10 Zoltan Varga <vargaz@freemail.hu>
* MethodBuilder.cs: Add stubs for missing methods.
* TypeBuilder.cs (GetEvents): Add new override.
* ModuleBuilder.cs: Implement some missing methods, add stubs for others.
* AssemblyBuilder.cs (GetFiles): Get rid of unneccessary override.
* AssemblyBuilder.cs (ImageRuntimeVersion): Add override to keep
signature compatibility with MS.NET.
* TypeBuilder.cs (MemberType): Get rid of unneccessary override.
2003-12-08 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.MonoGenericParam): Removed; use the
new `MonoGenericParam' class instead (in S.R/MonoGenericInst.cs).
2003-12-08 Zoltan Varga <vargaz@freemail.hu>
* ModuleBuilder.cs: Double the size of the types array during insertion
do avoid excessive memory allocation and copying. Track the number of
types in a separate variable.
* TypeBuilder.cs: Same for the 'fields' and 'methods' arrays.
2003-12-03 Zoltan Varga <vargaz@freemail.hu>
* ModuleBuilder.cs (DefinePInvokeMethod): Implement.
* ModuleBuilder.cs (DefineGlobalMethod): Implement the Net 1.2 variants.
2003-11-28 Dick Porter <dick@ximian.com>
* ModuleBuilder.cs: Do string compares with the Invariant culture.
2003-11-28 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (SetCustomAttribute): Implement automatic
generation of build and revision numbers. Fixes #46492.
2003-11-25 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs: Implement GetField.
2003-11-24 Zoltan Varga <vargaz@freemail.hu>
* DynamicMethod.cs: New class.
* ILGenerator.cs MethodBuilder.cs ConstructorBuilder.cs: Retrieve
tokens from a token generator object instead of from the ModuleBuilder,
to support the implementation of DynamicMethod. Also get rid of the
unused 'mbuilder' field.
* ModuleBuilder.cs: Create a token generator object which can be
passed to ILGenerator.
* LocalBuilder.cs ILGenerator.cs: Get rid of 'module' field, obtain
needed objects from the ilgen object instead.
2003-11-21 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs FieldBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Add support for custom modifiers from NET 1.2.
* ILGenerator.cs: Remove unused abuilder member.
2003-11-19 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* OpCodes.cs: Remove Boxval for v1.1+
2003-11-19 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* OpCodes.cs: Small rearrange to fix csc compiler warning about obsolete member used
2003-11-12 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilderAccess.cs PackingSize: Add [Flags].
* AssemblyBuilder.cs (DefineDynamicModule): Make internal method
private.
* AssemblyBuilder.cs (Save): Write out the main module at the end.
2003-11-06 Zoltan Varga <vargaz@freemail.hu>
* ConstructorBuilder.cs (.ctor): Automatically add RTSpecialName flag
as MS does.
2003-11-06 Martin Baulig <martin@ximian.com>
* ModuleBuilder.cs (ModuleBuilder.Save): Call `build_metadata'
before writing the symbol file.
2003-11-06 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (.ctor): Initialize the 'dir' field to something
sensible.
* AssemblyBuilder.cs (Save): Set 'created' flag.
* AssemblyBuilder.cs (get_next_table_index): Moved to ModuleBuilder,
since table indexes are per-module.
2003-11-03 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs (DefineDefaultConstructor): Pass an array instead of
null to DefineConstructor, to avoid NullReferenceExceptions in the
binder code.
* AssemblyBuilder.cs ModuleBuilder.cs ILGenerator.cs: Move getUSIndex
and getToken methods, and the associated icalls to ModuleBuilder,
since tokens are per-module.
* AssemblyBuilder.cs ModuleBuilder.cs: Partially revert the previous
patch, since having the 'is_main' field is useful in the unmanaged
code.
* AssemblyBuilder.cs ModuleBuilder.cs: Move the metadata creation and
file creation logic to ModuleBuilder:Save (), since this needs to be
done for every module. Also move the corresponding icalls to
ModuleBuilder.
2003-11-03 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs ModuleBuilder.cs: First steps toward a fix for
#48700 (proper module support in Ref.Emit). Remove is_main field from
ModuleBuilder and add a mainModule field to AssemblyBuilder instead.
This is neccesary, since the main module is determined during the
Save () call: the module with the same file name as the assembly is
the main module. Also create a default main module, if one is not
existing.
2003-11-03 Martin Baulig <martin@ximian.com>
* OpCodes.cs: Added Ldelem_Any, Stelem_Any and Unbox_Any from .NET 1.2.
2003-10-18 Sebastien Pouliot <spouliot@videotron.ca>
* AssemblyBuilder.cs (SetCustomAttribute): Changed PK extraction to
use Mono.Security.StrongName (#49785).
2003-10-18 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (SetCustomAttribute): Extract the public key from
the keyfile.
2003-10-17 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs (SetCustomAttribute): Ignore empty keyfile name.
* AssemblyBuilder.cs: Moved loading of the public key file into
managed code from reflection.c.
* AssemblyBuilder.cs: Set cultureInfo and version from the AssemblyName
passed to the constructor.
2003-10-13 Martin Baulig <martin@ximian.com>
* MethodBuilder.cs (MethodBuilder): Added
`TypeBuilder.MonoGenericParam[] generic_params' field.
(DefineGenericParameter, SetGenericMethodSignature): New public methods.
* TypeBuilder.cs (DefineGenericMethod): New public method.
2003-10-13 Zoltan Varga <vargaz@freemail.hu>
* OpCode.cs: Fix Value property. Fixes #49328.
2003-10-03 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs (CreateType): Fire TypeResolve events for unfinished
nested value types. Fixes #47022.
2003-09-29 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs: Really fix #48695.
Sat Sep 27 16:17:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: instance fields are loaded from this.
2003-09-26 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs (DefineDefaultConstructor): Make this work on types
without a parent. Fixes #48695.
2003-09-17 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.CreateType): Don't append the type
parameters to the type name; ie. use `Stack' instead of `Stack<T>'.
2003-09-06 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.IsUnboundGenericParameter): Implemented.
2003-09-04 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.MonoGenericParam): Make this nested
class internal, not protected.
2003-08-29 Martin Baulig <martin@ximian.com>
* TypeBuilder.cs (TypeBuilder.DefineGenericParameter): New public
method. We can now create generic types.
(TypeBuilder.GetGenericTypeDefinition): Override this; call the
`setup_internal_class' interncall before calling our base impl.
Sat Aug 2 13:04:55 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
* ILGenerator.cs: Emission of doubles now utilise the Double.AssertEndianity
icall to assert double word endianity on ARM.
2003-07-25 Duncan Mak <duncan@ximian.com>
* OpCodes.cs (Boxval): Marked with ObsoleteAttribute.
2003-07-24 Miguel de Icaza <miguel@ximian.com>
* TypeBuilder.cs: Added generics stubs.
* EnumBuilder.cs: Added generics stubs, changed bracing style for
routines.
2003-07-23 Duncan Mak <duncan@ximian.com>
* SignatureHelper.cs: This class does not have the
SerializableAttribute.
2003-07-11 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: Added argument checking to all methods according
to the MSDN docs. Also marked DefineUnmanagedResource and its friends
as not implemented.
* ModuleBuilder.cs: Added new property FileName used by AssemblyBuilder.
* ModuleBuilder.cs AssemblyBuilder.cs: Implemented IsTransient ().
2003-06-15 Zoltan Varga <vargaz@freemail.hu>
* EventBuilder.cs: Add argument checking to methods.
Thu Jun 5 20:18:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: implemented DefineResource ().
Thu Jun 5 12:36:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
* OpCode.cs: implemented Equals/GetHashCode.
Tue Jun 3 11:14:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs, OpCode.cs: optimize opcode space usage.
Tue Jun 3 11:13:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
* UnmanagedMarshal.cs: add ability to define custom attributes (the MS
runtime doesn't support this).
2003-05-30 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs: Implement DefineTypeInitializer.
2003-05-21 Zoltan Varga <vargaz@freemail.hu>
* ModuleBuilder.cs:
- Implement DefineInitializedData in terms of DefineUninitializedData
- Name the types of global fields $ArrayType$<len> to cut back on the
number of types created
- Add argument checking
2003-05-19 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: Implement GetDynamicModule. "Implement" various
methods not supported under MS.NET.
2003-05-18 Martin Baulig <martin@ximian.com>
* AssemblyBuilder.cs (corlib_void_type): New internal field.
(SetCorlibTypeBuilders): Added overloaded version which takes 4
arguments to set the `corlib_void_type'.
* TypeBuilder.cs: Use `pmodule.assemblyb.corlib_void_type' instead
of `typeof (void)' to make this work when compiling corlib.
Thu May 15 19:16:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
* MethodBuilder.cs: off by one in CreateMethodBody().
* TypeBuilder.cs: if the return type for a method is null, use void.
2003-04-28 Miguel de Icaza <miguel@ximian.com>
* MethodBuilder.cs: Mono allows the parameter position to be zero
to indicate the "returns:" attribute.
2003-04-20 Miguel de Icaza <miguel@ximian.com>
* ILGenerator.cs (EmitCall): Implement.
Flag a few unimplemented methods with MonoTODO, make coding style
for method definitions Mono consistent.
2003-04-17 Zoltan Varga <vargaz@freemail.hu>
* ILGenerator.cs: Implement EmitWriteLine methods.
* TypeBuilder.cs (CreateType): Avoid creating a default constructor
for the global type.
2003-04-15 Miguel de Icaza <miguel@ximian.com>
* TypeBuilder.cs (DefineDefaultConstructor): Make it generate code
by default for a default constructor. This is what the MS runtime
does. The PythonNet code expected this.
(TypeBuilder.GetConstructorImpl): Implement this.
(TypeBuilder.CreateType): If there are no constructors defined, we
create one.
Tue Apr 15 13:50:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
* ModuleBuilder.cs, TypeBuilder.cs: set nesting_type before
calling setup_internal_class ().
2003-03-27 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: Added 'access' member, which is needed by the
runtime.
2003-03-26 Zoltan Varga <vargaz@freemail.hu>
* ILGenerator.cs: Implemented ThrowException.
2003-03-10 Zoltan Varga <vargaz@freemail.hu>
* ILGenerator.cs: Propagate maxstack info along branches.
2003-03-06 Zoltan Varga <vargaz@freemail.hu>
* ILGenerator.cs (Emit): Do not pop the arguments off the stack for
ldftn etc. Fixes bug #39196.
2003-02-28 Zoltan Varga <vargaz@freemail.hu>
* ILGenerator.cs (Emit): Add fixup for already created methods and
fields. Do not add fixup for types since their table index do not
change any more.
2003-02-26 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs (DefineInitializedData): Removed unnecessary assignments.
* ModuleBuilder.cs (DefineInitializedData): Do not call
TypeBuilder::DefineInitializedData since that would mean defining a
nested type of the global type, which is wrong. Instead define a
new public type as MS does.
* ModuleBuilder.cs (DefineUninitializedData): Ditto.
Thu Feb 13 18:40:52 CET 2003 Paolo Molaro <lupus@ximian.com>
* ModuleBuilder.cs: add the basic initialization call.
2003-02-13 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: Added basic error checking to some methods
according to the MSDN docs.
2003-02-10 Zoltan Varga <vargaz@freemail.hu>
* ConstructorBuilder.cs:
- Added basic error checking to all methods according to the MSDN docs.
- modified a lot of methods to throw NotSupportedException, to comply
with MS.NET.
2003-02-09 Zoltan Varga <vargaz@freemail.hu>
* TypeBuilder.cs:
- Added basic error checking to all methods according to the MSDN docs.
- fixed AssemblyQualifiedName.
- implemented 'Size'.
- modified a lot of methods to throw NotSupportedException, to comply
with MS.NET.
- changes tested by running a full bootstrap.
2003-02-09 Martin Baulig <martin@ximian.com>
* AssemblyBuilder.cs (AssemblyBuilder.methods): Removed. This was
a hack for the symbol writer which is no longer needed.
2003-02-09 Martin Baulig <martin@ximian.com>
* IMonoSymbolWriter.cs (DefineNamespace, OpenMethod): New methods.
2003-02-09 Martin Baulig <martin@ximian.com>
* IMonoSymbolWriter.cs (MarkSequencePoint): New method which takes
just the required arguments as scalars, not arrays.
* ILGenerator.cs (ILGenerator.MarkSequencePoint): Use that new
interface method; unnecessarily creating such a large number of
arrays is both slow and too memory consuming.
2003-02-08 Zoltan Varga <vargaz@freemail.hu>
* MethodBuilder.cs: Added error checking to methods so they conform to
MSDN docs. Implemented 'GetModule' and 'CallingConvention' members.
Some other tweaks to improve compatibility with MS .NET.
* TypeBuilder.cs: Added 'is_created' property which will be used for
checking 'type is already created' errors.
2003-02-07 Martin Baulig <martin@ximian.com>
* ModuleBuilder.cs (.ctor): Added `bool IsMainModule' argument.
(Save): New internal method; creates the module's symbol file if
we're compiling with debugging information.
* AssemblyBuilder.cs (EmbedResource): Added internal overloaded
version of this method which takes a `byte[] blob' instead of a file.
(DefineDynamicMethod): If this is the first module, tell the
ModuleBuilder that this is the main module.
(Save): Call a new interncall `build_metadata' to create the final
metadata and save all the symbol files before creating the actual
output.
* IMonoSymbolWriter.cs: New public class; it is in the namespace
Mono.CSharp.Debugger. The Mono symbol writer implements this interface.
2003-02-04 Zoltan Varga <vargaz@freemail.hu>
* AssemblyBuilder.cs: added GetToken (SignatureHelper).
* ILGenerator.cs: implemented EmitCalli() methods
* SignatureHelper.cs: implemented GetMethoSigHelper() methods.
2003-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* MethodBuilder.cs: GetBaseDefinition () returns this.
Mon Jan 27 17:07:38 CET 2003 Paolo Molaro <lupus@ximian.com>
* CustomAttributeBuilder.cs, FieldBuilder.cs: applied
(reformatted) patch from "Jerome Laban" <jlaban@wanadoo.fr>
to fix ByValStr and ByValArray encodings.
2003-01-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* AssemblyBuilder.cs: fixed compilation with csc.
2003-01-26 Miguel de Icaza <miguel@ximian.com>
* AssemblyBuilder.cs (Save): Set the executable bit at the end.
This uses a non-official enumeration value to call SetFileAttributes.
2003-01-17 Zoltan Varga <vargaz@freemail.hu>
* MethodBuilder.cs ConstructorBuilder.cs: modify GetParameters() so it
returns information even when the app did not use DefineParameter() to
define the parameters.
* ConstructorBuilder.cs (ctor): allways define SpecialName attribute
for constructors as done by MS.
Mon Jan 13 11:37:14 CET 2003 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs, ModuleBuilder.cs: better type name cache.
2003-01-10 Zoltan Varga <vargaz@freemail.hu>
* ILGenerator.cs: Implemented EmitWriteLine(string).
* TypeBuilder.cs (DefineInitializedData): Call DefineNestedType()
instead of DefineType() so the auxiliary types do not pollute the
global namespace. This is consistent with the behaviour of MS .NET.
Fri Jan 10 16:03:30 CET 2003 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs, MethodBuilder.cs, TypeBuilder.cs,
ConstructorBuilder.cs: some tweaks to reduce memory usage.
Thu Jan 2 18:46:09 CET 2003 Paolo Molaro <lupus@ximian.com>
* ModuleBuilder.cs, TypeBuilder.cs: support global fields and methods.
Thu Dec 19 00:06:57 CET 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: remove duplicated user string entries.
2002-12-11 Zoltan Varga <vargaz@freemail.hu>
* FieldBuilder.cs: added 'handle' field which is needed by some new
code in reflection.c.
2002-12-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TypeBuilder.cs: implemented GetInterfaceMap () when the Type has been
created.
Fri Nov 8 14:53:03 CET 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: account for the exception object being passed to the
catch handler to calc max_stack.
2002-09-21 Martin Baulig <martin@gnome.org>
* ModuleBuilder.cs (ModuleBuilder.symbol_writer): Make this
field internal, not private.
(ModuleBuilder.SymWriter_DefineLocalVariable): Removed.
* LocalBuilder.cs (LocalBuilder.SetLocalSymInfo): Use the
ISymbolWriter's DefineLocalVariable() method instead of the
IMonoSymbolWriter hack.
Mon Sep 16 19:02:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.c: special case some custom attributes.
2002-09-12 Dick Porter <dick@ximian.com>
* TypeBuilder.cs: Say _which_ Type has already been created
2002-09-11 Miguel de Icaza <miguel@ximian.com>
* ModuleBuilder.cs (GetTypes): Implement.
Tue Sep 10 12:12:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
* ConstructorBuilder.cs: added a field to hold the handle.
Mon Sep 9 17:31:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: prepare for the real CreateType implementation.
Tue Aug 27 16:57:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: remove duplicate code and fix
named field reading in custom attr.
2002-08-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TypeBuilder.cs: UnspecifiedTypeSize is 0.
Wed Aug 14 17:38:41 CEST 2002 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: ReflectedType and CreateType fixes.
Thu Aug 8 10:25:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: added API to embed managed resources.
2002-08-03 Martin Baulig <martin@gnome.org>
* TypeBuilder.cs (TypeBuilder.DeclaringType): Implemented.
Thu Jul 25 13:57:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: support linking external resources.
2002-07-19 Martin Baulig <martin@gnome.org>
* ILGenerator.cs (Emit (OpCode, LocalBuilder)): Throw an exception
when trying to emit a local that was defined in a different ILGenerator.
* LocalBuilder.cs (LocalBuilder): Added `ILGenetator' argument to
the constructor.
Tue Jul 16 19:32:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: stack size check fix.
Sat Jul 13 17:30:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: add also the enum_type for compiling corlib.
* TypeBuilder.cs: complete IsValueType.
Sat Jul 13 15:08:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: better IsValueType.
2002-07-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* CustomAttributeBuilder.cs: removed compile warning.
Fri Jul 12 11:34:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: fixup typebuilder tokens as well.
Tue Jul 9 19:03:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: special case SerializarionAttribute.
Tweaks to get correct code in corlib.
2002-07-06 Miguel de Icaza <miguel@ximian.com>
* ILGenerator.cs (ILGenerator.Emit): For doubles and floats, swap
the bytes on big endian systems.
2002-07-03 Martin Baulig <martin@gnome.org>
* AssemblyBuilder.cs (corlib_object_type, corlib_value_type): Moved
these fields up after the last entry in MonoReflectionAssemblyBuilder
in reflection.h.
* TypeBuilder.cs (IsValueTypeImpl): Use the AssemblyBuilder's
`corlib_value_type' instead of `typeof (System.ValueType)'.
(DefineNestedType): Use the AssemblyBuilder's `corlib_object_type'
instead of `typeof (object)'.
2002-07-02 Martin Baulig <martin@gnome.org>
* AssemblyBuilder.cs (corlib_object_type, corlib_value_type): New
internal fields. When compiling corlib, they point to the newly
created System.Object and System.ValueType types.
(SetCorlibTypeBuilders): New public function. This will be
dynamically called from MCS when compiling corlib.
* TypeBuilder.cs (DefineInitializedData): Use the AssemblyBuilder's
`corlib_value_type' as parent type instead of `typeof (System.ValueType)'
to make it work when compiling corlib.
* ModuleBuilder.cs (assemblyb): Made this field internal, not private.
Tue Jul 2 18:34:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: implemented AssemblyQualifiedName.
* MethodBuilder.cs, ConstructorBuilder.cs: special case custom attr.
Mon Jul 1 16:17:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: implemented AddInterfaceImplementation().
2002-06-28 Martin Baulig <martin@gnome.org>
* MethodBuilder.cs (GetParameters): Return all parameters, not all
but the last one.
2002-06-27 Martin Baulig <martin@gnome.org>
* ConstructorBuilder.cs (GetParameters): Implemented.
Mon Jun 17 14:55:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
* ModuleBuilder.cs, TypeBuilder.cs: fixes for nested types handling.
Fri Jun 14 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
* CustomAttributeBuilder.cs: added custom attribute related internal
helper methods.
* FieldBuilder.cs, ParameterBuilder.cs: handle MarshalAs attribute.
* UnmanagedMarshal.cs: implemented.
Mon Jun 10 18:58:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
* PropertyBuilder.cs: implemented ReflectedType and DeclaringType
properties.
2002-06-07 Martin Baulig <martin@gnome.org>
* TypeBuilder.cs (TypeBuilder): Added `PackingSize packing_size' and
`int type_size' fields to the constructor.
(DefineNestedType): Pass packing_size and type_size to the constructor.
* ModuleBuilder.cs (DefineType): Pass the packing_size and type_size
fields to the TypeBuilder's constructor.
2002-06-07 Martin Baulig <martin@gnome.org>
* TypeBuilder.cs (DefineNestedType): There is no overload for this
method which takes 5 args in the specs, removed it.
Fri Jun 7 17:04:06 CEST 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: updates for PE/COFF rewrite.
2002-05-30 Martin Baulig <martin@gnome.org>
* AssemblyBuilder.cs (methods): Made this internal and don't
initialize it. It will be initialized by the ModuleBuilder's
GetSymbolWriter() method.
(get_next_table_index): Only store the method in the `methods'
array if it's not null.
* ModuleBuilder.cs (GetSymbolWriter): Initialize the AssemblyBuilder's
`methods' field if necessary and pass it as third argument to the
symbol writer's constructor.
2002-05-25 Martin Baulig <martin@gnome.org>
* TypeBuilder.cs (TypeToken): Implemented.
2002-05-24 Martin Baulig <martin@gnome.org>
* ModuleBuilder.cs (symwriter_define_local): New private variable.
(GetSymbolWriter): Look for a custom version of "DefineLocalVariable"
and store it in `symwriter_define_local'.
(SymWriter_DefineLocalVariable): New internal method to call the
symbol writer's custom DefineLocalVariable() method. It is safe to
call this method if there's no symbol writer.
* LocalBuilder.cs (SetLocalSymInfo): Use the MethodBuilder'snew
SymWriter_DefineLocalVariable().
* MethodBuilder.cs (GetParameters): Implemented.
2002-05-22 Martin Baulig <martin@gnome.org>
* ModuleBuilder.cs (GetSymbolWriter): Pass the this pointer to the
symbol writer's constructor.
2002-05-22 Martin Baulig <martin@gnome.org>
* AssemblyBuilder.cs (methods): New field.
(get_next_table_index): Record all methods and constructors
(table 0x06) in the `methods' array. This is read by the
Mono.CSharp.Debugger.MonoSymbolWriter::get_method interncall to
get the MethodBuilder / ConstructorBuilder back from the token.
* *Builder.cs (get_next_table_index): Added `object obj' argument.
(<constructors>): pass the this pointer to get_next_table_index ().
2002-05-20 Martin Baulig <martin@gnome.org>
* TypeBuilder.cs (DefineField): Call the new `create_internal_class'
interncall after adding the first field. This is used when creating
enum types to set `klass->enum_basetype'.
Thu May 16 16:09:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: complete special acse support for CharSet, Size and
Pack named args in StructLayout attribute.
Tue May 14 17:13:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
* MethodBuilder.cs: revert change in accessibility of
GetILGenerator(int).
Tue May 14 13:31:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
* FieldBuilder.cs, ParameterBuilder.cs: more special-casing of
attributes.
Fri May 10 20:57:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
* CustomAttributeBuilder.cs: expose internal data for use in
reflection.
* FieldBuilder.cs, TypeBuilder.cs: special case FieldOffset and
StructLayout attributes.
Fri May 10 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
* MethodBuilder.cs, ConstructorBuilder.cs: implemented InitLocals
property.
2002-04-26 Martin Baulig <martin@gnome.org>
* ModuleBuilder.cs (DefineDocument): Implemented.
Tue Apr 16 13:02:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: pad output file to file alignment.
* FieldBuilder.cs: ReflectedType.
* ModuleBuilder.cs: added guid generation and array method creation.
* MonoArrayMethod.cs: array method support code.
Wed Apr 10 12:57:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: use a stack to keep track of exception blocks.
Mon Apr 8 06:19:01 2002 Piers Haken <piersh@friskit.com>
* ILGenerator.cs: added LabelField.label_base to allow for
arbitrary offsets (for switch statement)
Fri Apr 5 15:41:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: simpler protocol wih the runtime to
get the assembly data.
Tue Mar 26 20:10:24 CET 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: use FileMode.Create.
* ILGenerator.cs: optimize localbuilder related opcodes.
Track parameters to adjust maxstack.
* LocalBuilder.cS: use unsigned for position.
2002-03-23 Miguel de Icaza <miguel@ximian.com>
* LocalBuilder.cs: Drop the symbol_writer as LocalBuilder fields.
Do this lazily in SetLocalSymInfo.
2002-03-24 Martin Baulig <martin@gnome.org>
* ModuleBuilder.cs (GetSymbolWriter): The MonoSymbolWriter's constructor
now takes a `string assembly_filename' argument, pass it our fully
qualified assembly name.
2002-03-24 Nick Drochak <ndrochak@gol.com>
* ILGenerator.cs: Use #if-#endif instead of if(false){} to disable
code. This way there is no compiler warning.
* TypeBuilder.cs: Removed the returns that came after the throws.
This removes a few more compiler warnings. Also marked with MonoTODO
all places where we throw NotImplemented exceptions.
2002-03-23 Martin Baulig <martin@gnome.org>
* SignatureHelper.cs (GetFieldSignatureHelper, GetLocalSignatureHelper):
Implemented.
* LocalBuilder.cs (LocalBuilder): This internal constructor now takes
a ModuleBuilder argument instead of a ISymbolWriter one.
(SetLocalSymInfo): Create and pass type signature to DefineLocalVariable.
2002-03-23 Martin Baulig <martin@gnome.org>
* ILGenerator.cs (BeginScope, EndScope): Implemented.
2002-03-20 Martin Baulig <martin@gnome.org>
* ModuleBuilder.cs (GetSymbolWriter): New internal function. Dynamically
loads the default symbol writer, catch all possible exceptions and return
null on failure.
(ModuleBuilder): Added `bool emitSymbolInfo' argument to this internal
constructor; if set, call GetSymbolWriter ().
(GetSymWriter): Implemented.
* LocalBuilder.cs (LocalBuilder): Added ISymbolWriter argument to this
internal method.
(SetLocalSymInfo): Implemented, call ISymbolWriter.DefineLocalVariable ()
if the symbol writer is not null.
* ILGenerator.cs (ILGenerator): Call ModuleBuilder.GetSymWriter () to get
and store the symbol writer.
(DeclareLocal): Pass the symbol writer to LocalBuilder's constructor.
(MarkSequencePoint): Implemented, call ISymbolWriter.DefineSequencePoints ()
if the symbol writer is not null.
* AssemblyBuilder.cs (DefineDynamicModule): Pass the `bool emitSymbolInfo'
to ModuleBuilder's constructor.
Sat Mar 16 19:11:47 CET 2002 Paolo Molaro <lupus@ximian.com>
* ModuleBuilder.cs: handle modified types correctly.
Thu Mar 7 17:10:42 CET 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: allow saving bigger assemblies.
* ILGenerator.cs: add fixup table for fields and methods, since
at the end of the compile they may end up with a different table
index.
* ModuleBuilder.cs: add cache for type names to speed up the type
lookups from the compiler.
* TypeBuilder.cs: GetInterfaces () returns only interfaces in the
current type, not in parents (the docs are wrong).
Tue Mar 5 18:09:34 CET 2002 Paolo Molaro <lupus@ximian.com>
* EventBuilder.cs: implemented.
* TypeBuilder.cs: implemented DefineEvent() method and UnderlyingSystemType
property.
Mon Mar 4 20:34:52 CET 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: make enough room in the byte array for string
tokens.
* TypeBuilder.cs: fixed GetInterfaces().
Mon Mar 4 11:30:40 CET 2002 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: implemented GetConstructors(), GetFields(),
GetMethods(), GetProperties().
Thu Feb 28 19:15:10 CET 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: call into the runtime to init some basic
assembly stuff. Reserve slot 1 of typedef table for .<Module>.
* ModuleBuilder.cs: call into the runtime if we need to create a
modief type, such as arrays, byref etc.
* TypeBuilder.cs: call into the runtime to create the MonoClass
representation for the type. Throw exceptions with not implemented
stuff.
Wed Feb 27 18:48:47 CET 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: fix nested exception blocks.
Wed Feb 20 22:30:49 CET 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: upped compiled assembly size limit.
Implemented SetCustomAttribute () methods.
* CustomAttributeBuilder.cs: implemented the needed constructor
stuff.
* Cosntructorbuilder.cs, EnumBuilder.cs, FieldBuilder.cs,
MethodBuilder.cs, ModuleBuilder.cs, ParameterBuilder.cs,
PropertyBuilder.cs, TypeBuilder.cs: Implemented SetCustomAttribute () methods.
Wed Feb 20 14:54:01 CET 2002 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: add SetCustomAttribute () to keep the compiler
going.
Fri Feb 15 18:15:04 CET 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: finally block support and fixes.
Thu Feb 14 18:55:52 CET 2002 Paolo Molaro <lupus@ximian.com>
* FieldBuilder.cs: Add SetRVAData().
* ILGenerator.cs: speed up code array growth.
* TypeBuilder.cs: fix IsValueTypeImpl(). Add class_size member.
Implement DefineInitializedData().
Tue Jan 22 23:01:11 CET 2002 Paolo Molaro <lupus@ximian.com>
* EnumBuilder.cs, TypeBuilder.cs: updates for changes in Type.cs.
* ModuleBuilder.cs: fix lookup of nested types.
Tue Jan 15 22:46:21 CET 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: implement some of the exception support methods.
Mon Jan 14 17:07:32 CET 2002 Paolo Molaro <lupus@ximian.com>
* ModulerBuilder.cs: search also for subtypes in GetTypes().
* TypeBuilder.cs: bugfix in FullName. Implemented DefineNestedType().
Fri Jan 11 19:00:29 CET 2002 Paolo Molaro <lupus@ximian.com>
* MethodBuilder.cs, ConstructorBuilder.cs: save parameter info.
Thu Jan 10 21:07:54 CET 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: handle type tokens (used for box opcode).
Wed Jan 9 19:37:55 CET 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: emit float and doubles.
* ModuleBuilder.cs: off-by-one error fix and GetType()
implementations.
* TypeBuilder.cs: AttributesImpl added.
* UnmanagedMarshal.cs: stubbed out class.
Sat Jan 5 15:59:05 CET 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: fix emission of two-bytes opcodes.
Missing slot for locals array. Throw exceptions on unimplemented
methods.
* OpCode.cs: add a comment: the Value property is useless.
* OpCodes.cs: fix name of tail opcode (Tail -> Tailcall).
2002-01-05 Ravi Pratap <ravi@ximian.com>
* ConstructorBuilder.cs : Use the MonoTODO attribute.
* ILGenerator.cs, Label.cs, MethodBuilder.cs, ModuleBuilder.cs,
ParameterBuilder.cs, TypeBuilder.cs : Ditto.
Thu Jan 3 23:26:15 CET 2002 Paolo Molaro <lupus@ximian.com>
* ILGenerator.cs: typo fix.
Mon Dec 24 17:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs: added DefineMethodOverride().
* MethodBuilder.cs: add override_method member and setter.
Mon Nov 19 13:58:01 CET 2001 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: add method to register a string in the "#US"
stream.
* EnumBuilder.cs, SignatureHelper.cs: added stubs.
* ILGenerator.cs: more stuff implemented.
* LocalBuilder.cs: keep track of local var index.
Thu Nov 15 18:11:23 CET 2001 Paolo Molaro <lupus@ximian.com>
* ConstructorBuilder.cs: implement the interesting methods.
* ILGenerator.cs: adapt for use with both a MethodBuilder and a
ConstructorBuilder.
* MethodBuilder.cs: add ImplAttributes.
* ParameterBuilder.cs: adapt for ConstructorBuilder.
* TypeBuilder.cs: add constructors handling.
Wed Nov 14 17:01:45 CET 2001 Paolo Molaro <lupus@ximian.com>
* ConstructorBuilder.cs: added missing stubs and some implementation.
* CustomAttributeBuilder.cs: added.
* EventBuilder.cs: added.
* FieldBuilder.cs: updates.
* MethodBuilder.cs: stuff to implement P/Invoke methods.
* ModuleBuilder.cs: added GetArrayMethod() stub.
* ParameterBuilder.cs, PropertyBuilder.cs: updates.
* TypeBuilder.cs: updates and stubs.
2001-11-10 Sean MacIsaac <macisaac@ximian.com>
* TypeBuilder.cs: Added implementation for TypeHandle.
Tue Nov 6 09:13:45 CET 2001 Paolo Molaro <lupus@ximian.com>
* AssemblyBuilder.cs: define an internal constructor.
2001-10-07 Miguel de Icaza <miguel@ximian.com>
* AssemblyBuilder.cs: Reformatted.
Added override keywords to those that needed them.
Removed methods that we do not override, but just inherit
Tue Sep 25 16:53:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
* TypeBuilder.cs, ConstructorBuilder.cs, ModuleBuilder.cs: added.
|