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
|
/*
* dtest-app.cs:
*
* Application program used by the debugger tests.
*/
using System;
using System.Runtime.CompilerServices;
using System.Reflection;
using System.Reflection.Emit;
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Collections.Concurrent;
using System.Collections;
#if !MOBILE
using MonoTests.Helpers;
#endif
public class TestsBase
{
#pragma warning disable 0414
#pragma warning disable 0169
public int base_field_i;
public string base_field_s;
static int base_static_i = 57;
static string base_static_s = "C";
#pragma warning restore 0414
#pragma warning restore 0169
public virtual string virtual_method () {
return "V1";
}
}
public enum AnEnum {
A = 0,
B= 1
}
public sealed class Tests3 {
public static void M1 () {
}
static void M2 () {
}
public void M3 () {
}
void M4 () {
}
}
public static class Tests4 {
static Tests4 () {
}
}
public class AAttribute : Attribute {
public int afield;
}
public class BAttribute : AAttribute {
public int bfield;
}
[DebuggerDisplay ("Tests", Name="FOO", Target=typeof (int))]
[DebuggerTypeProxy (typeof (Tests))]
[BAttribute (afield = 1, bfield = 2)]
public class Tests2 {
[DebuggerBrowsableAttribute (DebuggerBrowsableState.Collapsed)]
public int field_j;
public static int static_field_j;
[DebuggerBrowsableAttribute (DebuggerBrowsableState.Collapsed)]
public int AProperty {
get {
return 0;
}
}
public void invoke () {
}
}
public struct TestEnumeratorInsideGenericStruct<TKey, TValue>
{
private KeyValuePair<TKey, TValue> _bucket;
private Position _currentPosition;
internal TestEnumeratorInsideGenericStruct(KeyValuePair<TKey, TValue> bucket)
{
_bucket = bucket;
_currentPosition = Position.BeforeFirst;
}
public KeyValuePair<TKey, TValue> Current
{
get
{
if (_currentPosition == Position.BeforeFirst)
return _bucket;
return _bucket;
}
}
private enum Position
{
BeforeFirst
}
}
public struct AStruct : ITest2 {
public int i;
public string s;
public byte k;
public IntPtr j;
public int l;
/*
public AStruct () {
i = 0;
s = null;
k = 0;
j = IntPtr.Zero;
l = 0;
}
*/
public AStruct (int arg) {
i = arg;
s = null;
k = 0;
j = IntPtr.Zero;
l = 0;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public int foo (int val) {
return val;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int static_foo (int val) {
return val;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public int invoke_return_int () {
return i;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int invoke_static () {
return 5;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public IntPtr invoke_return_intptr () {
return j;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void invoke_mutate () {
l = 5;
}
public int invoke_iface () {
return i;
}
public override string ToString () {
return i.ToString ();
}
}
public struct int4
{
public int w, x, y, z;
public int4(int w, int x, int y, int z)
{
this.w = w;
this.x = x;
this.y = y;
this.z = z;
}
}
public struct char4
{
public int w, x, y, z;
public char4(char w, char x, char y, char z)
{
this.w = w;
this.x = x;
this.y = y;
this.z = z;
}
}
public unsafe struct NodeTestFixedArray
{
private fixed short buffer[4];
private fixed char buffer2[4];
public int4 Buffer
{
set
{
fixed (NodeTestFixedArray* p = &this) {
p->buffer[0] = (short)value.w;
p->buffer[1] = (short)value.x;
p->buffer[2] = (short)value.y;
p->buffer[3] = (short)value.z;
}
}
}
public char4 Buffer2
{
set
{
fixed (NodeTestFixedArray* p = &this) {
p->buffer2[0] = (char)value.w;
p->buffer2[1] = (char)value.x;
p->buffer2[2] = (char)value.y;
p->buffer2[3] = (char)value.z;
}
}
}
public String getBuffer0() {
fixed (NodeTestFixedArray* p = &this)
return Convert.ToString(p->buffer[0]);
}
public String getBuffer1() {
fixed (NodeTestFixedArray* p = &this)
return Convert.ToString(p->buffer[1]);
}
public String getBuffer2() {
fixed (NodeTestFixedArray* p = &this)
return Convert.ToString(p->buffer[2]);
}
public String getBuffer3() {
fixed (NodeTestFixedArray* p = &this)
return Convert.ToString(p->buffer[3]);
}
public String getBuffer2_0() {
fixed (NodeTestFixedArray* p = &this)
return Char.ToString(p->buffer2[0]);
}
public String getBuffer2_1() {
fixed (NodeTestFixedArray* p = &this)
return Char.ToString(p->buffer2[1]);
}
public String getBuffer2_2() {
fixed (NodeTestFixedArray* p = &this)
return Char.ToString(p->buffer2[2]);
}
public String getBuffer2_3() {
fixed (NodeTestFixedArray* p = &this)
return Char.ToString(p->buffer2[3]);
}
}
public struct BlittableStruct {
public int i;
public double d;
}
public class GClass<T> {
public T field;
public static T static_field;
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public GClass () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void bp<T2> () {
}
}
public struct MySpan<T> {
internal class Pinnable<J> {
public J Data;
}
Pinnable<T> _pinnable;
public MySpan(T[] array) {
_pinnable = Unsafe.As<Pinnable<T>>(array);
}
public override string ToString() {
return "abc";
}
}
public struct GStruct<T> {
public T i;
public int j;
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public int invoke_return_int () {
return j;
}
}
public struct NestedStruct {
NestedInner nested1, nested2;
}
public struct NestedInner {
}
public interface IRecStruct {
void foo (object o);
}
struct RecStruct : IRecStruct {
public object o;
public void foo (object o) {
this.o = o;
}
}
interface ITest
{
void Foo ();
void Bar ();
}
interface ITest<T>
{
void Foo ();
void Bar ();
}
class TestIfaces : ITest
{
void ITest.Foo () {
}
void ITest.Bar () {
}
TestIfaces<int> Baz () {
return null;
}
}
public class RuntimeInvokeWithThrowClass
{
public RuntimeInvokeWithThrowClass()
{
}
public void RuntimeInvokeThrowMethod()
{
throw new Exception("thays");
}
}
public sealed class DebuggerTaskScheduler : TaskScheduler, IDisposable
{
private readonly BlockingCollection<Task> _tasks = new BlockingCollection<Task>();
private readonly List<Thread> _threads;
private readonly Thread mainThread = null;
public DebuggerTaskScheduler(int countThreads)
{
_threads = Enumerable.Range(0, countThreads).Select(i =>
{
Thread t = new Thread(() =>
{
foreach (var task in _tasks.GetConsumingEnumerable())
{
TryExecuteTask(task);
}
});
//the new task will be executed by a foreground thread ensuring that it will be executed ultil the end.
t.IsBackground = false;
t.Start();
return t;
}).ToList();
}
/// <inheritdoc />
protected override void QueueTask(Task task)
{
_tasks.Add(task);
}
/// <inheritdoc />
public override int MaximumConcurrencyLevel
{
get
{
return _threads.Count;
}
}
/// <inheritdoc />
public void Dispose()
{
// Indicate that no new tasks will be coming in
_tasks.CompleteAdding();
}
/// <inheritdoc />
protected override bool TryExecuteTaskInline(Task task, bool taskWasPreviouslyQueued)
{
return false;
}
/// <inheritdoc />
protected override IEnumerable<Task> GetScheduledTasks()
{
return _tasks;
}
}
class TestIfaces<T> : ITest<T>
{
void ITest<T>.Foo () {
}
void ITest<T>.Bar () {
}
}
public interface ITest2
{
int invoke_iface ();
}
public class Tests : TestsBase, ITest2
{
#pragma warning disable 0414
int field_i;
string field_s;
AnEnum field_enum;
bool field_bool1, field_bool2;
char field_char;
byte field_byte;
sbyte field_sbyte;
short field_short;
ushort field_ushort;
long field_long;
ulong field_ulong;
float field_float;
double field_double;
Thread field_class;
IntPtr field_intptr;
int? field_nullable;
static int static_i = 55;
static string static_s = "A";
public const int literal_i = 56;
public const string literal_s = "B";
public object child;
public AStruct field_struct;
public object field_boxed_struct;
public GStruct<int> generic_field_struct;
public KeyValuePair<int, object> boxed_struct_field;
[ThreadStatic]
public static int tls_i;
public static bool is_attached = Debugger.IsAttached;
public NestedStruct nested_struct;
static string arg;
#pragma warning restore 0414
public class NestedClass {
}
public int IntProperty {
get {
return field_i;
}
set {
field_i = value;
}
}
public int ReadOnlyProperty {
get {
return field_i;
}
}
public int this [int index] {
get {
return field_i;
}
}
public static void wait_one ()
{
ManualResetEvent evt = new ManualResetEvent (false);
evt.WaitOne ();
}
public static int Main (String[] args) {
if (args.Length == 0)
args = new String [] { Tests.arg };
tls_i = 42;
if (args.Length > 0 && args [0] == "suspend-test")
/* This contains an infinite loop, so execute it conditionally */
suspend ();
if (args.Length >0 && args [0] == "unhandled-exception") {
unhandled_exception ();
return 0;
}
if (args.Length >0 && args [0] == "unhandled-exception-wrapper") {
unhandled_exception_wrapper ();
return 0;
}
if (args.Length >0 && args [0] == "unhandled-exception-perform-wait-callback") {
unhandled_exception_perform_wait_callback ();
return 0;
}
if (args.Length >0 && args [0] == "unhandled-exception-endinvoke") {
unhandled_exception_endinvoke ();
return 0;
}
if (args.Length >0 && args [0] == "crash-vm") {
crash ();
return 0;
}
if (args.Length >0 && args [0] == "unhandled-exception-user") {
unhandled_exception_user ();
return 0;
}
if (args.Length >0 && args [0] == "wait-one") {
wait_one ();
return 0;
}
if (args.Length >0 && args [0] == "threadpool-io") {
#if !MOBILE
threadpool_io ();
#else
throw new Exception ("Can't run threadpool-io test on mobile");
#endif
return 0;
}
if (args.Length > 0 && args [0] == "attach") {
new Tests ().attach ();
return 0;
}
if (args.Length > 0 && args [0] == "step-out-void-async") {
run_step_out_void_async();
return 0;
}
if (args.Length > 0 && args [0] == "runtime_invoke_hybrid_exceptions") {
runtime_invoke_hybrid_exceptions();
return 0;
}
assembly_load ();
breakpoints ();
single_stepping ();
arguments ();
objects ();
objrefs ();
vtypes ();
locals ();
line_numbers ();
type_info ();
invoke ();
exceptions ();
exception_filter ();
threads ();
dynamic_methods ();
user ();
#if !MOBILE
type_load ();
#endif
regress ();
gc_suspend ();
set_ip ();
step_filters ();
pointers ();
ref_return ();
if (args.Length > 0 && args [0] == "local-reflect")
local_reflect ();
if (args.Length > 0 && args [0] == "domain-test")
/* This takes a lot of time, so execute it conditionally */
domains ();
if (args.Length > 0 && args [0] == "ref-emit-test")
ref_emit ();
if (args.Length > 0 && args [0] == "frames-in-native")
frames_in_native ();
if (args.Length > 0 && args [0] == "invoke-single-threaded")
new Tests ().invoke_single_threaded ();
if (args.Length > 0 && args [0] == "invoke-abort")
new Tests ().invoke_abort ();
new Tests ().evaluate_method ();
Bug59649 ();
elapsed_time();
field_with_unsafe_cast_value();
inspect_enumerator_in_generic_struct();
if_property_stepping();
fixed_size_array();
test_new_exception_filter();
test_async_debug_generics();
return 3;
}
private class TestClass {
private string oneLineProperty = "";
public string OneLineProperty {
get { return oneLineProperty; }
set { oneLineProperty = value; }
}
}
public class MyException : Exception {
public MyException(string message) : base(message) {
}
}
public static void if_property_stepping() {
var test = new TestClass();
if (test.OneLineProperty == "someInvalidValue6049e709-7271-41a1-bc0a-f1f1b80d4125")
return;
Console.Write("");
}
public static void local_reflect () {
//Breakpoint line below, and reflect someField via ObjectMirror;
LocalReflectClass.RunMe ();
}
public static void breakpoints () {
/* Call these early so it is JITted by the time a breakpoint is placed on it */
bp3 ();
bp7<int> ();
bp7<string> ();
bp1 ();
bp2 ();
bp3 ();
bp4 ();
bp4 ();
bp4 ();
bp5 ();
bp6<string> (new GClass <int> ());
bp7<int> ();
bp7<string> ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void bp1 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void bp2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void bp3 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void bp4 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void bp5 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void bp6<T> (GClass<int> gc) {
gc.bp<int> ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void bp7<T> () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void single_stepping () {
bool b = true;
ss1 ();
ss2 ();
ss3 ();
ss3_2 ();
ss4 ();
ss5 (new int [] { 1, 2, 3 }, new Func<int, bool> (is_even));
try {
ss6 (b);
} catch {
}
ss7 ();
ss_nested ();
ss_nested_with_two_args_wrapper ();
ss_regress_654694 ();
ss_step_through ();
ss_non_user_code ();
ss_recursive (1);
ss_recursive2 (1);
ss_recursive2 (1);
ss_recursive_chaotic ();
ss_fp_clobber ();
ss_no_frames ();
ss_await ();
ss_nested_with_three_args_wrapper();
ss_nested_twice_with_two_args_wrapper();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss1 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int ss3 () {
int sum = 0;
for (int i = 0; i < 10; ++i)
sum += i;
return sum;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss3_2 () {
ss3_2_2 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss3_2_2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int ss4 () {
ss1 (); ss1 ();
ss2 ();
return 0;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss5 (int[] arr, Func<int, bool> selector) {
// Call into linq which calls back into this assembly
arr.Count (selector);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss6 (bool b) {
if (b) {
ss6_2 ();
throw new Exception ();
}
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss6_2 () {
}
[MethodImplAttribute(MethodImplOptions.NoInlining)]
public static void ss7 ()
{
ss7_2();//Used to test stepout inside ss7_2, which may not go to catch
ss7_2();//Used to test stepout inside ss7_2_1, which must go to catch
ss7_2();//Used to test stepover inside ss7_2, which must go to catch
ss7_2();//Used to test stepover inside ss7_2_1, which must go to catch
ss7_3();//Used to test stepin inside ss7_3, which must go to catch
ss7_2();//Used to test stepin inside ss7_2_1, which must go to catch
}
[MethodImplAttribute(MethodImplOptions.NoInlining)]
public static void ss7_2_1 ()
{
throw new Exception ();
}
[MethodImplAttribute(MethodImplOptions.NoInlining)]
public static void ss7_2_2 ()
{
ss7_2_1();
}
[MethodImplAttribute(MethodImplOptions.NoInlining)]
public static void ss7_2 ()
{
try {
ss7_2_2();
}
catch
{
}
}
[MethodImplAttribute(MethodImplOptions.NoInlining)]
public static void ss7_3 ()
{
try {
throw new Exception ();
}
catch
{
}
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void field_with_unsafe_cast_value() {
var arr = new char[3];
arr[0] = 'a';
arr[1] = 'b';
arr[2] = 'c';
MySpan<char> bytes = new MySpan<char>(arr);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_nested () {
ss_nested_1 (ss_nested_2 ());
ss_nested_1 (ss_nested_2 ());
ss_nested_3 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_nested_with_two_args_wrapper () {
ss_nested_with_two_args(ss_nested_arg (), ss_nested_arg ());
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_nested_with_three_args_wrapper () {
ss_nested_with_three_args(ss_nested_arg1 (), ss_nested_arg2 (), ss_nested_arg3 ());
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_nested_twice_with_two_args_wrapper () {
ss_nested_with_two_args(ss_nested_arg1 (), ss_nested_with_two_args(ss_nested_arg2 (), ss_nested_arg3 ()));
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void elapsed_time () {
Thread.Sleep(200);
Thread.Sleep(00);
Thread.Sleep(100);
Thread.Sleep(300);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void fixed_size_array () {
var n = new NodeTestFixedArray();
n.Buffer = new int4(1, 2, 3, 4);
n.Buffer2 = new char4('a', 'b', 'c', 'd');
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void test_new_exception_filter () {
test_new_exception_filter1();
test_new_exception_filter2();
test_new_exception_filter3();
test_new_exception_filter4();
}
public static void test_new_exception_filter1 () {
try {
throw new Exception("excp");
}
catch (Exception e) {
}
}
public static void test_new_exception_filter2 () {
try {
throw new MyException("excp");
}
catch (Exception e) {
}
}
public static void test_new_exception_filter3 () {
try {
throw new ArgumentException();
}
catch (Exception e) {
}
try {
throw new Exception("excp");
}
catch (Exception e) {
}
}
public static void test_new_exception_filter4 () {
try {
throw new ArgumentException();
}
catch (Exception e) {
}
try {
throw new Exception("excp");
}
catch (Exception e) {
}
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void test_async_debug_generics () {
ExecuteAsync_Broken<object>().Wait ();
}
async static Task<T> ExecuteAsync_Broken<T>()
{
await Task.Delay(2);
return default;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void inspect_enumerator_in_generic_struct() {
TestEnumeratorInsideGenericStruct<String, String> generic_struct = new TestEnumeratorInsideGenericStruct<String, String>(new KeyValuePair<string, string>("0", "f1"));
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int ss_nested_with_two_args (int a1, int a2) {
return a1 + a2;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int ss_nested_with_three_args (int a1, int a2, int a3) {
return a1 + a2 + a3;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int ss_nested_arg () {
return 0;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int ss_nested_arg1 () {
return 0;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int ss_nested_arg2 () {
return 0;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int ss_nested_arg3 () {
return 0;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_nested_1 (int i) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int ss_nested_2 () {
return 0;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_nested_3 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_step_through () {
step_through_1 ();
StepThroughClass.step_through_2 ();
step_through_3 ();
}
[DebuggerStepThrough]
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void step_through_1 () {
}
[DebuggerStepThrough]
class StepThroughClass {
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void step_through_2 () {
}
}
[DebuggerStepThrough]
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void step_through_3 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_non_user_code () {
non_user_code_1 ();
StepNonUserCodeClass.non_user_code_2 ();
non_user_code_3 ();
}
[DebuggerNonUserCode]
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void non_user_code_1 () {
}
[DebuggerNonUserCode]
class StepNonUserCodeClass {
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void non_user_code_2 () {
}
}
[DebuggerNonUserCode]
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void non_user_code_3 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_recursive (int n) {
if (n == 10)
return;
ss_recursive (n + 1);
}
// Breakpoint will be placed here
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_recursive2_trap ()
{
}
public static void ss_recursive2_at (string s)
{
// Console.WriteLine (s);
}
// This method is used both for a step over and step out test.
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_recursive2 (int x)
{
ss_recursive2_at ( "ss_recursive2 in " + x);
if (x < 5) {
int next = x + 1;
ss_recursive2_at ("ss_recursive2 descend " + x);
ss_recursive2_trap ();
ss_recursive2 (next);
}
ss_recursive2_at ("ss_recursive2 out " + x);
}
// Breakpoint will be placed here
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_recursive_chaotic_trap ()
{
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_recursive_chaotic_at (bool exiting, string at, int n)
{
// string indent = "";
// for (int count = 5 - n; count > 0; count--)
// indent += "\t";
// Console.WriteLine (indent + (exiting ? "<--" : "-->") + " " + at + " " + n);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_recursive_chaotic_fizz (int n)
{
ss_recursive_chaotic_at (false, "fizz", n);
if (n > 0) {
int next = n - 1;
ss_recursive_chaotic_buzz (next);
ss_recursive_chaotic_fizzbuzz (next);
} else {
ss_recursive_chaotic_trap ();
}
ss_recursive_chaotic_at (true, "fizz", n);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_recursive_chaotic_buzz (int n)
{
ss_recursive_chaotic_at (false, "buzz", n);
if (n > 0) {
int next = n - 1;
ss_recursive_chaotic_fizz (next);
ss_recursive_chaotic_fizzbuzz (next);
}
ss_recursive_chaotic_at (true, "buzz", n);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_recursive_chaotic_fizzbuzz (int n)
{
ss_recursive_chaotic_at (false, "fizzbuzz", n);
if (n > 0) {
int next = n - 1;
ss_recursive_chaotic_fizz (next);
ss_recursive_chaotic_buzz (next);
ss_recursive_chaotic_fizzbuzz (next);
}
ss_recursive_chaotic_at (true, "fizzbuzz", n);
}
// Call a complex tree of recursive calls that has tripped up "step out" in the past.
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_recursive_chaotic ()
{
ss_recursive_chaotic_fizz (5);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_fp_clobber () {
double v = ss_fp_clobber_1 (5.0);
ss_fp_clobber_2 (v);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static double ss_fp_clobber_1 (double d) {
return d + 2.0;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_fp_clobber_2 (double d) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_no_frames () {
Action a = ss_no_frames_2;
var ar = a.BeginInvoke (null, null);
ar.AsyncWaitHandle.WaitOne ();
// Avoid waiting every time this runs
if (static_i == 56)
Thread.Sleep (200);
ss_no_frames_3 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_await ()
{
ss_await_1 ().Wait ();//in
ss_await_1 ().Wait ();//over
ss_await_1 ().Wait ();//out before
ss_await_1 ().Wait ();//out after
ss_await_1_exc (true, true).Wait ();//in
ss_await_1_exc (true, true).Wait ();//over
ss_await_1_exc (true, true).Wait ();//out
try {
ss_await_1_exc (true, false).Wait ();//in
} catch { }
try {
ss_await_1_exc (true, false).Wait ();//over
} catch { }
try {
ss_await_1_exc (true, false).Wait ();//out
} catch { }
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static async Task<int> ss_await_1 () {
var a = 1;
await Task.Delay (10);
return a + 2;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static async Task<int> ss_await_1_exc (bool exc, bool handled)
{
var a = 1;
await Task.Delay (10);
if (exc) {
if (handled) {
try {
throw new Exception ();
} catch {
}
} else {
throw new Exception ();
}
}
return a + 2;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_no_frames_2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_no_frames_3 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static bool is_even (int i) {
return i % 2 == 0;
}
/*
lock (static_s) {
Console.WriteLine ("HIT!");
}
return 0;
}
*/
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void arguments () {
arg1 (SByte.MaxValue - 5, Byte.MaxValue - 5, true, Int16.MaxValue - 5, UInt16.MaxValue - 5, 'F', Int32.MaxValue - 5, UInt32.MaxValue - 5, Int64.MaxValue - 5, UInt64.MaxValue - 5, 1.2345f, 6.78910, new IntPtr (Int32.MaxValue - 5), new UIntPtr (UInt32.MaxValue - 5));
int i = 42;
arg2 ("FOO", null, "BLA", ref i, new GClass <int> { field = 42 }, new object (), '\0'.ToString () + "A");
Tests t = new Tests () { field_i = 42, field_s = "S" };
t.arg3 ("BLA");
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static int arg1 (sbyte sb, byte b, bool bl, short s, ushort us, char c, int i, uint ui, long l, ulong ul, float f, double d, IntPtr ip, UIntPtr uip) {
return (int)(sb + b + (bl ? 0 : 1) + s + us + (int)c + i + ui + l + (long)ul + f + d + (int)ip + (int)uip);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static string arg2 (string s, string s3, object o, ref int i, GClass <int> gc, object o2, string s4) {
return s + (s3 != null ? "" : "") + o + i + gc.field + o2;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public object arg3 (string s) {
return s + s + s + s + this;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void objects () {
Tests t = new Tests () { field_i = 42, field_bool1 = true, field_bool2 = false, field_char = 'A', field_byte = 129, field_sbyte = -33, field_short = Int16.MaxValue - 5, field_ushort = UInt16.MaxValue - 5, field_long = Int64.MaxValue - 5, field_ulong = UInt64.MaxValue - 5, field_float = 3.14f, field_double = 3.14f, field_s = "S", base_field_i = 43, base_field_s = "T", field_enum = AnEnum.B, field_class = null, field_intptr = new IntPtr (Int32.MaxValue - 5), field_nullable = null };
t.o1 (new Tests2 () { field_j = 43 }, new GClass <int> { field = 42 }, new GClass <string> { field = "FOO" });
o2 (new string [] { "BAR", "BAZ" }, new int[] { 42, 43 }, new int [,] { { 1, 2 }, { 3, 4 }}, (int[,])Array.CreateInstance (typeof (int), new int [] { 2, 2}, new int [] { 1, 3}), new int[] { 0 });
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public object o1 (Tests2 t, GClass <int> gc1, GClass <string> gc2) {
if (t == null || gc1 == null || gc2 == null)
return null;
else
return this;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static string o2 (string[] s2, int[] s3, int[,] s4, int[,] s5, IList<int> s6) {
return s2 [0] + s3 [0] + s4 [0, 0] + s6 [0];
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void objrefs () {
Tests t = new Tests () {};
set_child (t);
t.objrefs1 ();
t.child = null;
GC.Collect ();
objrefs2 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void set_child (Tests t) {
t.child = new Tests ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void objrefs1 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void objrefs2 () {
}
public static void vtypes () {
Tests t = new Tests () { field_struct = new AStruct () { i = 42, s = "S", k = 43 }, generic_field_struct = new GStruct<int> () { i = 42 }, field_boxed_struct = new AStruct () { i = 42 }, boxed_struct_field = new KeyValuePair<int, object> (1, (long)42 ) };
AStruct s = new AStruct { i = 44, s = "T", k = 45 };
AStruct[] arr = new AStruct[] {
new AStruct () { i = 1, s = "S1" },
new AStruct () { i = 2, s = "S2" } };
TypedReference typedref = __makeref (s);
t.vtypes1 (s, arr, typedref);
vtypes2 (s);
vtypes3 (s);
vtypes4 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public object vtypes1 (AStruct s, AStruct[] arr, TypedReference typedref) {
if (arr != null)
return this;
else
return null;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void vtypes2 (AStruct s) {
s.foo (5);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void vtypes3 (AStruct s) {
AStruct.static_foo (5);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void vtypes4_2 (IRecStruct o) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void vtypes4 () {
IRecStruct s = new RecStruct ();
s.foo (s);
vtypes4_2 (s);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals () {
string s = null;
var astruct = new AStruct () { i = 42 };
locals1 (null);
locals2<string> (null, 5, "ABC", ref s, ref astruct);
locals3 ();
locals6 ();
locals7<int> (22);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void locals11 (double a, ref double b) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals1 (string[] args) {
long foo = 42;
double ri = 1;
locals11 (b: ref ri, a: ri);
for (int j = 0; j < 10; ++j) {
foo ++;
}
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
[StateMachine (typeof (int))]
public static void locals2<T> (string[] args, int arg, T t, ref string rs, ref AStruct astruct) {
long i = 42;
string s = "AB";
for (int j = 0; j < 10; ++j) {
if (s != null)
i ++;
if (t != null)
i ++;
astruct = new AStruct ();
}
rs = "A";
List<int> alist = new List<int> () { 12 };
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals3 () {
string s = "B";
s.ToString ();
{
long i = 42;
i ++;
locals4 ();
}
{
string i = "A";
i.ToString ();
locals5 ();
}
{
long j = 42;
j ++;
}
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals4 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals5 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals6 () {
int i = 0;
int j = 0;
for (i = 0; i < 10; ++i)
j ++;
sbyte sb = 0;
for (i = 0; i < 10; ++i)
sb ++;
locals6_1 ();
locals6_2 (j);
locals6_3 ();
locals6_4 (j);
locals6_5 ();
locals6_6 (sb);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals6_1 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals6_2 (int arg) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals6_3 () {
// Clobber all registers
int sum = 0, i, j, k, l, m;
for (i = 0; i < 100; ++i)
sum ++;
for (j = 0; j < 100; ++j)
sum ++;
for (k = 0; k < 100; ++k)
sum ++;
for (l = 0; l < 100; ++l)
sum ++;
for (m = 0; m < 100; ++m)
sum ++;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals6_4 (int arg) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals6_5 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals6_6 (int arg) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void locals7<T> (T arg) {
T t = arg;
T t2 = t;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void line_numbers () {
LineNumbers.ln1 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void suspend () {
long i = 5;
while (true) {
i ++;
}
}
struct TypedRefTest {
public int MaxValue;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void type_info () {
Tests t = new Tests () { field_i = 42, field_s = "S", base_field_i = 43, base_field_s = "T", field_enum = AnEnum.B };
t.ti1 (new Tests2 () { field_j = 43 }, new GClass <int> { field = 42 }, new GClass <string> { field = "FOO" });
int val = 0;
unsafe {
AStruct s = new AStruct () { i = 42, s = "S", k = 43 };
TypedRefTest reftest = new TypedRefTest () { MaxValue = 12 };
TypedReference typedref = __makeref (reftest);
ti2 (new string [] { "BAR", "BAZ" }, new int[] { 42, 43 }, new int [,] { { 1, 2 }, { 3, 4 }}, ref val, (int*)IntPtr.Zero, 5, s, new Tests (), new Tests2 (), new GClass <int> (), AnEnum.B, typedref);
}
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public object ti1 (Tests2 t, GClass <int> gc1, GClass <string> gc2) {
if (t == null || gc1 == null || gc2 == null)
return null;
else
return this;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static unsafe string ti2 (string[] s2, int[] s3, int[,] s4, ref int ri, int* ptr, int i, AStruct s, Tests t, Tests2 t2, GClass<int> g, AnEnum ae, TypedReference typedref) {
return s2 [0] + s3 [0] + s4 [0, 0];
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void assembly_load () {
assembly_load_2 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void assembly_load_2 () {
// This will load System.dll while holding the loader lock
new Foo ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void invoke () {
new Tests ().invoke1 (new Tests2 (), new AStruct () { i = 42, j = (IntPtr)43 }, new GStruct<int> { j = 42 });
new Tests ().invoke_ex ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void invoke1 (Tests2 t, AStruct s, GStruct<int> g) {
invoke2 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void invoke2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void invoke_ex () {
invoke_ex_inner ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void invoke_ex_inner () {
try {
throw new Exception ();
} catch {
}
}
int counter;
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void invoke_single_threaded () {
// Spawn a thread incrementing a counter
bool finished = false;
new Thread (delegate () {
while (!finished)
counter ++;
}).Start ();
Thread.Sleep (100);
invoke_single_threaded_2 ();
finished = true;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void invoke_single_threaded_2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void invoke_abort () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void invoke_abort_2 () {
Thread.Sleep (1000000);
}
public void invoke_return_void () {
}
public string invoke_return_ref () {
return "ABC";
}
public object invoke_return_null () {
return null;
}
public int invoke_return_primitive () {
return 42;
}
public int? invoke_return_nullable () {
return 42;
}
public int invoke_pass_nullable (int? i) {
return (int)i;
}
public int? invoke_return_nullable_null () {
return null;
}
public int invoke_pass_nullable_null (int? i) {
return i.HasValue ? 1 : 2;
}
public void invoke_type_load () {
new Class3 ();
}
class Class3 {
}
public long invoke_pass_primitive (byte ub, sbyte sb, short ss, ushort us, int i, uint ui, long l, ulong ul, char c, bool b, float f, double d) {
return ub + sb + ss + us + i + ui + l + (long)ul + (int)c + (b ? 1 : 0) + (int)f + (int)d;
}
public int invoke_pass_primitive2 (bool b) {
return b ? 1 : 0;
}
public string invoke_pass_ref (string s) {
return s;
}
public static string invoke_static_pass_ref (string s) {
return s;
}
public static void invoke_static_return_void () {
}
public static void invoke_throws () {
throw new Exception ();
}
public int invoke_iface () {
return 42;
}
public void invoke_out (out int foo, out int[] arr) {
foo = 5;
arr = new int [10];
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void exceptions () {
try {
throw new OverflowException ();
} catch (Exception) {
}
try {
throw new OverflowException ();
} catch (Exception) {
}
try {
throw new ArgumentException ();
} catch (Exception) {
}
try {
throw new OverflowException ();
} catch (Exception) {
}
// no subclasses
try {
throw new OverflowException ();
} catch (Exception) {
}
try {
throw new Exception ();
} catch (Exception) {
}
object o = null;
try {
o.GetType ();
} catch (Exception) {
}
try {
exceptions2 ();
} catch (Exception) {
}
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void unhandled_exception () {
ThreadPool.QueueUserWorkItem (delegate {
throw new InvalidOperationException ();
});
Thread.Sleep (10000);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void unhandled_exception_wrapper () {
throw new ArgumentException("test");
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void unhandled_exception_endinvoke_2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void unhandled_exception_perform_wait_callback () {
try
{
var results = ResolveAsync().GetAwaiter().GetResult();
}
catch (SocketException sockEx)
{
//Console.WriteLine("correctly handled");
}
}
public static async Task<List<string>> ResolveAsync()
{
var addresses = await System.Net.Dns.GetHostAddressesAsync("foo.bar.baz");
return new List<string>(addresses.Select(addr => addr.ToString()));
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void unhandled_exception_endinvoke () {
Action action = new Action (() =>
{
throw new Exception ("thrown");
});
action.BeginInvoke ((ar) => {
try {
action.EndInvoke (ar);
} catch (Exception ex) {
//Console.WriteLine (ex);
}
}, null);
Thread.Sleep (1000);
unhandled_exception_endinvoke_2 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void crash () {
unsafe { Console.WriteLine("{0}", *(int*) -1); }
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void unhandled_exception_user () {
System.Threading.Tasks.Task.Factory.StartNew (() => {
Throw ();
});
Thread.Sleep (10000);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void Throw () {
throw new Exception ();
}
internal static Delegate create_filter_delegate (Delegate dlg, MethodInfo filter_method)
{
if (dlg == null)
throw new ArgumentNullException ();
if (dlg.Target != null)
throw new ArgumentException ();
if (dlg.Method == null)
throw new ArgumentException ();
var ret_type = dlg.Method.ReturnType;
var param_types = dlg.Method.GetParameters ().Select (x => x.ParameterType).ToArray ();
var dynamic = new DynamicMethod (Guid.NewGuid ().ToString (), ret_type, param_types, typeof (object), true);
var ig = dynamic.GetILGenerator ();
LocalBuilder retval = null;
if (ret_type != typeof (void))
retval = ig.DeclareLocal (ret_type);
var label = ig.BeginExceptionBlock ();
for (int i = 0; i < param_types.Length; i++)
ig.Emit (OpCodes.Ldarg, i);
ig.Emit (OpCodes.Call, dlg.Method);
if (retval != null)
ig.Emit (OpCodes.Stloc, retval);
ig.Emit (OpCodes.Leave, label);
ig.BeginExceptFilterBlock ();
ig.Emit (OpCodes.Call, filter_method);
ig.BeginCatchBlock (null);
ig.Emit (OpCodes.Pop);
ig.EndExceptionBlock ();
if (retval != null)
ig.Emit (OpCodes.Ldloc, retval);
ig.Emit (OpCodes.Ret);
return dynamic.CreateDelegate (dlg.GetType ());
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void exception_filter_method () {
throw new InvalidOperationException ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static int exception_filter_filter (Exception exc) {
return 1;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void exception_filter () {
var method = typeof (Tests).GetMethod (
"exception_filter_method", BindingFlags.NonPublic | BindingFlags.Static);
var filter_method = typeof (Tests).GetMethod (
"exception_filter_filter", BindingFlags.NonPublic | BindingFlags.Static);
var dlg = Delegate.CreateDelegate (typeof (Action), method);
var wrapper = (Action) create_filter_delegate (dlg, filter_method);
wrapper ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static bool return_true () {
return true;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void exceptions2 () {
if (return_true ())
throw new Exception ();
Console.WriteLine ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void threads () {
Thread t = new Thread (delegate () {});
t.Start ();
t.Join ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void domains () {
AppDomain domain = AppDomain.CreateDomain ("domain");
CrossDomain o = (CrossDomain)domain.CreateInstanceAndUnwrap (
typeof (CrossDomain).Assembly.FullName, "CrossDomain");
domains_print_across (o);
domains_2 (o, new CrossDomain ());
o.invoke_2 ();
o.invoke ();
o.invoke_2 ();
o.assembly_load ();
AppDomain.Unload (domain);
domains_3 ();
typeof (Tests).GetMethod ("called_from_invoke").Invoke (null, null);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void called_from_invoke () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void domains_2 (object o, object o2) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void domains_print_across (object o) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void domains_3 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void invoke_in_domain () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void invoke_in_domain_2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void assembly_load_in_domain () {
Assembly.Load ("System.Transactions");
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void dynamic_methods () {
var m = new DynamicMethod ("dyn_method", typeof (void), new Type [] { typeof (int) }, typeof (object).Module);
var ig = m.GetILGenerator ();
ig.Emit (OpCodes.Ldstr, "FOO");
ig.Emit (OpCodes.Call, typeof (Tests).GetMethod ("dyn_call"));
ig.Emit (OpCodes.Ret);
var del = (Action<int>)m.CreateDelegate (typeof (Action<int>));
del (0);
}
public static void dyn_call (string s) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ref_emit () {
AssemblyName assemblyName = new AssemblyName ();
assemblyName.Name = "foo";
AssemblyBuilder assembly =
Thread.GetDomain ().DefineDynamicAssembly (
assemblyName, AssemblyBuilderAccess.RunAndSave);
ModuleBuilder module = assembly.DefineDynamicModule ("foo.dll");
TypeBuilder tb = module.DefineType ("foo", TypeAttributes.Public, typeof (object));
MethodBuilder mb = tb.DefineMethod ("ref_emit_method", MethodAttributes.Public|MethodAttributes.Static, CallingConventions.Standard, typeof (void), new Type [] { });
ILGenerator ig = mb.GetILGenerator ();
ig.Emit (OpCodes.Ldstr, "FOO");
ig.Emit (OpCodes.Call, typeof (Tests).GetMethod ("ref_emit_call"));
ig.Emit (OpCodes.Ret);
Type t = tb.CreateType ();
t.GetMethod ("ref_emit_method").Invoke (null, null);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ref_emit_call (string s) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void frames_in_native () {
Thread.Sleep (500);
var evt = new ManualResetEvent (false);
object mon = new object ();
ThreadPool.QueueUserWorkItem (delegate {
frames_in_native_2 ();
evt.Set ();
});
evt.WaitOne ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void frames_in_native_2 () {
frames_in_native_3 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void frames_in_native_3 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void string_call (string s) {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ss_regress_654694 () {
if (true) {
string h = "hi";
string_call (h);
}
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void user () {
Debugger.Break ();
Debugger.Log (5, Debugger.IsLogging () ? "A" : "", "B");
}
#if !MOBILE
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void type_load () {
type_load_2 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void type_load_2 () {
var c1 = new Dictionary<int, int> ();
c1.ToString ();
var c = new TypeLoadClass ();
c.ToString ();
var c2 = new TypeLoadClass2 ();
c2.ToString ();
}
#endif
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void regress () {
regress_2755 (DateTime.Now);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static unsafe void regress_2755 (DateTime d) {
int* buffer = stackalloc int [128];
regress_2755_2 ();
int sum = 0;
for (int i = 0; i < 128; ++i)
sum += buffer [i];
regress_2755_3 (sum);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void regress_2755_2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void regress_2755_3 (int sum) {
}
static object gc_suspend_field;
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static unsafe void set_gc_suspend_field () {
set_gc_suspend_field_2 ();
// Clear stack
int* buffer = stackalloc int [4096];
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void set_gc_suspend_field_2 () {
gc_suspend_field = new object ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void gc_suspend_1 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void gc_suspend_invoke () {
gc_suspend_field = null;
GC.Collect ();
GC.WaitForPendingFinalizers ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void gc_suspend () {
set_gc_suspend_field ();
gc_suspend_1 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void generic_method<T> () where T : class {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void evaluate_method_2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void evaluate_method () {
field_i = 42;
evaluate_method_2 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void set_ip_1 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void set_ip_2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void set_ip () {
int i = 0, j;
i ++;
i ++;
set_ip_1 ();
i ++;
j = 5;
set_ip_2 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void step_filters () {
ClassWithCctor.cctor_filter ();
}
class ClassWithCctor {
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static ClassWithCctor () {
int i = 1;
int j = 2;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void cctor_filter () {
}
}
public override string virtual_method () {
return "V2";
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void threadpool_bp () { }
#if !MOBILE
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void threadpool_io () {
// Start a threadpool task that blocks on I/O.
// Regression test for #42625
const int nbytes = 16;
var bsOut = new byte[nbytes];
for (int i = 0; i < nbytes; i++) {
bsOut[i] = (byte)i;
}
var endPoint = NetworkHelpers.LocalEphemeralEndPoint ();
var l = new TcpListener (endPoint);
l.Start ();
Task<byte[]> t = Task.Run (async () => {
var c = new TcpClient ();
await c.ConnectAsync (endPoint.Address, endPoint.Port);
var streamIn = c.GetStream ();
var bs = new byte[nbytes];
int nread = 0;
int nremain = nbytes;
while (nread < nbytes) {
int r = await streamIn.ReadAsync (bs, nread, nremain);
nread += r;
nremain -= r;
}
streamIn.Close ();
return bs;
});
var s = l.AcceptTcpClient ();
l.Stop ();
// write bytes in two groups so that the task blocks on the ReadAsync
var streamOut = s.GetStream ();
var nbytesFirst = nbytes / 2;
var nbytesRest = nbytes - nbytesFirst;
streamOut.Write (bsOut, 0, nbytesFirst);
threadpool_bp ();
streamOut.Write (bsOut, nbytesFirst, nbytesRest);
streamOut.Close ();
var bsIn = t.Result;
}
#endif
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void attach_break () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public void attach () {
AppDomain domain = AppDomain.CreateDomain ("domain");
CrossDomain o = (CrossDomain)domain.CreateInstanceAndUnwrap (
typeof (CrossDomain).Assembly.FullName, "CrossDomain");
o.assembly_load ();
o.type_load ();
// Wait for the client to attach
while (true) {
Thread.Sleep (200);
attach_break ();
}
}
public static void Bug59649 ()
{
UninitializedClass.Call();//Breakpoint here and step in
}
public static void run_step_out_void_async()
{
DebuggerTaskScheduler dts = new DebuggerTaskScheduler(2);
var wait = new ManualResetEvent (false);
step_out_void_async (wait);
wait.WaitOne ();//Don't exist until step_out_void_async is executed...
dts.Dispose();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static async void step_out_void_async (ManualResetEvent wait)
{
await Task.Yield ();
step_out_void_async_2 ();
wait.Set ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
static void step_out_void_async_2 ()
{
}
public static unsafe void pointer_arguments (int* a, BlittableStruct* s) {
*a = 0;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static unsafe void pointers () {
int[] a = new [] {1,2,3};
BlittableStruct s = new BlittableStruct () { i = 2, d = 3.0 };
fixed (int* pa = a)
pointer_arguments (pa, &s);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ref_return () {
}
static int ret_val = 1;
public static ref int get_ref_int() {
return ref ret_val;
}
static string ref_return_string = "byref";
public static ref string get_ref_string() {
return ref ref_return_string;
}
static BlittableStruct ref_return_struct = new BlittableStruct () { i = 1, d = 2.0 };
public static ref BlittableStruct get_ref_struct() {
return ref ref_return_struct;
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void runtime_invoke_hybrid_exceptions () {
Type rtType = Type.GetType("RuntimeInvokeWithThrowClass");
ConstructorInfo rtConstructor = rtType.GetConstructor(Type.EmptyTypes);
object rtObject = rtConstructor.Invoke(new object[] { });
MethodInfo rtMethod = rtType.GetMethod("RuntimeInvokeThrowMethod");
rtMethod.Invoke(rtObject, new object[] { });
}
}
public class SentinelClass : MarshalByRefObject {
}
public class CrossDomain : MarshalByRefObject
{
SentinelClass printMe = new SentinelClass ();
public void invoke () {
Tests.invoke_in_domain ();
}
public void invoke_2 () {
Tests.invoke_in_domain_2 ();
}
public int invoke_3 () {
return 42;
}
public void assembly_load () {
Tests.assembly_load_in_domain ();
}
public void type_load () {
//Activator.CreateInstance (typeof (int).Assembly.GetType ("Microsoft.Win32.RegistryOptions"));
var is_server = System.Runtime.GCSettings.IsServerGC;
}
}
public class Foo
{
public ProcessStartInfo info;
}
class LocalReflectClass
{
public static void RunMe ()
{
var reflectMe = new someClass ();
var temp = reflectMe; // Breakpoint location
reflectMe.someMethod ();
}
class someClass : ContextBoundObject
{
public object someField;
public void someMethod ()
{
}
}
}
// Class used for line number info testing, don't change its layout
public class LineNumbers
{
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ln1 () {
// Column 3
ln2 ();
ln3 ();
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ln2 () {
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void ln3 () {
#pragma warning disable 0219
int i = 5;
#pragma warning restore 0219
#line 55 "FOO"
}
}
class UninitializedClass
{
static string DummyCall()
{
//Should NOT step into this method
//if StepFilter.StaticCtor is set
//because this is part of static class initilization
return String.Empty;
}
static string staticField = DummyCall();
public static void Call()
{
//Should step into this method
//Console.WriteLine ("Call called");
}
}
|