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
|
//------------------------------------------------------------------------------
// <copyright file="GenerateHelper.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">Microsoft</owner>
//------------------------------------------------------------------------------
using System;
using System.Globalization;
using System.Xml;
using System.Xml.XPath;
using System.Xml.Schema;
using System.Text;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.Emit;
using System.Security;
using System.Diagnostics;
using System.Diagnostics.SymbolStore;
using System.Xml.Xsl.Qil;
using System.Xml.Xsl.Runtime;
using System.Runtime.Versioning;
namespace System.Xml.Xsl.IlGen {
using Res = System.Xml.Utils.Res;
/// <summary>
/// List of all XmlIL runtime constructors.
/// </summary>
internal class XmlILStorageMethods {
// Aggregates
public MethodInfo AggAvg;
public MethodInfo AggAvgResult;
public MethodInfo AggCreate;
public MethodInfo AggIsEmpty;
public MethodInfo AggMax;
public MethodInfo AggMaxResult;
public MethodInfo AggMin;
public MethodInfo AggMinResult;
public MethodInfo AggSum;
public MethodInfo AggSumResult;
// Sequences
public Type SeqType;
public FieldInfo SeqEmpty;
public MethodInfo SeqReuse;
public MethodInfo SeqReuseSgl;
public MethodInfo SeqAdd;
public MethodInfo SeqSortByKeys;
// IList<>
public Type IListType;
public MethodInfo IListCount;
public MethodInfo IListItem;
// XPathItem
public MethodInfo ValueAs;
// ToAtomicValue
public MethodInfo ToAtomicValue;
public XmlILStorageMethods(Type storageType) {
// Aggregates
if (storageType == typeof(int) || storageType == typeof(long) ||
storageType == typeof(decimal) || storageType == typeof(double)) {
Type aggType = Type.GetType("System.Xml.Xsl.Runtime." + storageType.Name + "Aggregator");
AggAvg = XmlILMethods.GetMethod(aggType, "Average");
AggAvgResult = XmlILMethods.GetMethod(aggType, "get_AverageResult");
AggCreate = XmlILMethods.GetMethod(aggType, "Create");
AggIsEmpty = XmlILMethods.GetMethod(aggType, "get_IsEmpty");
AggMax = XmlILMethods.GetMethod(aggType, "Maximum");
AggMaxResult = XmlILMethods.GetMethod(aggType, "get_MaximumResult");
AggMin = XmlILMethods.GetMethod(aggType, "Minimum");
AggMinResult = XmlILMethods.GetMethod(aggType, "get_MinimumResult");
AggSum = XmlILMethods.GetMethod(aggType, "Sum");
AggSumResult = XmlILMethods.GetMethod(aggType, "get_SumResult");
}
// Sequences
if (storageType == typeof(XPathNavigator)) {
SeqType = typeof(XmlQueryNodeSequence);
SeqAdd = XmlILMethods.GetMethod(SeqType, "AddClone");
}
else if (storageType == typeof(XPathItem)) {
SeqType = typeof(XmlQueryItemSequence);
SeqAdd = XmlILMethods.GetMethod(SeqType, "AddClone");
}
else {
SeqType = typeof(XmlQuerySequence<>).MakeGenericType(storageType);
SeqAdd = XmlILMethods.GetMethod(SeqType, "Add");
}
SeqEmpty = SeqType.GetField("Empty");
SeqReuse = XmlILMethods.GetMethod(SeqType, "CreateOrReuse", SeqType);
SeqReuseSgl = XmlILMethods.GetMethod(SeqType, "CreateOrReuse", SeqType, storageType);
SeqSortByKeys = XmlILMethods.GetMethod(SeqType, "SortByKeys");
// IList<>
IListType = typeof(IList<>).MakeGenericType(storageType);
IListItem = XmlILMethods.GetMethod(IListType, "get_Item");
IListCount = XmlILMethods.GetMethod(typeof(ICollection<>).MakeGenericType(storageType), "get_Count");
// XPathItem.ValueAsXXX
if (storageType == typeof(string))
ValueAs = XmlILMethods.GetMethod(typeof(XPathItem), "get_Value");
else if (storageType == typeof(int))
ValueAs = XmlILMethods.GetMethod(typeof(XPathItem), "get_ValueAsInt");
else if (storageType == typeof(long))
ValueAs = XmlILMethods.GetMethod(typeof(XPathItem), "get_ValueAsLong");
else if (storageType == typeof(DateTime))
ValueAs = XmlILMethods.GetMethod(typeof(XPathItem), "get_ValueAsDateTime");
else if (storageType == typeof(double))
ValueAs = XmlILMethods.GetMethod(typeof(XPathItem), "get_ValueAsDouble");
else if (storageType == typeof(bool))
ValueAs = XmlILMethods.GetMethod(typeof(XPathItem), "get_ValueAsBoolean");
// XmlILStorageConverter.XXXToAtomicValue
if (storageType == typeof(byte[]))
ToAtomicValue = XmlILMethods.GetMethod(typeof(XmlILStorageConverter), "BytesToAtomicValue");
else if (storageType != typeof(XPathItem) && storageType != typeof(XPathNavigator))
ToAtomicValue = XmlILMethods.GetMethod(typeof(XmlILStorageConverter), storageType.Name + "ToAtomicValue");
}
}
/// <summary>
/// List of all XmlIL runtime constructors.
/// </summary>
internal static class XmlILConstructors {
public static readonly ConstructorInfo DecFromParts = GetConstructor(typeof(decimal), typeof(int), typeof(int), typeof(int), typeof(bool), typeof(byte));
public static readonly ConstructorInfo DecFromInt32 = GetConstructor(typeof(decimal), typeof(int));
public static readonly ConstructorInfo DecFromInt64 = GetConstructor(typeof(decimal), typeof(long));
public static readonly ConstructorInfo Debuggable = GetConstructor(typeof(DebuggableAttribute), typeof(DebuggableAttribute.DebuggingModes));
public static readonly ConstructorInfo NonUserCode = GetConstructor(typeof(DebuggerNonUserCodeAttribute));
public static readonly ConstructorInfo QName = GetConstructor(typeof(XmlQualifiedName), typeof(string), typeof(string));
public static readonly ConstructorInfo StepThrough = GetConstructor(typeof(DebuggerStepThroughAttribute));
public static readonly ConstructorInfo Transparent = GetConstructor(typeof(SecurityTransparentAttribute));
private static ConstructorInfo GetConstructor(Type className) {
ConstructorInfo constrInfo = className.GetConstructor(new Type[] {});
Debug.Assert(constrInfo != null, "Constructor " + className + " cannot be null.");
return constrInfo;
}
private static ConstructorInfo GetConstructor(Type className, params Type[] args) {
ConstructorInfo constrInfo = className.GetConstructor(args);
Debug.Assert(constrInfo != null, "Constructor " + className + " cannot be null.");
return constrInfo;
}
}
/// <summary>
/// List of all XmlIL runtime methods.
/// </summary>
internal static class XmlILMethods {
// Iterators
public static readonly MethodInfo AncCreate = GetMethod(typeof(AncestorIterator), "Create");
public static readonly MethodInfo AncNext = GetMethod(typeof(AncestorIterator), "MoveNext");
public static readonly MethodInfo AncDOCreate = GetMethod(typeof(AncestorDocOrderIterator), "Create");
public static readonly MethodInfo AncDONext = GetMethod(typeof(AncestorDocOrderIterator), "MoveNext");
public static readonly MethodInfo AttrContentCreate = GetMethod(typeof(AttributeContentIterator), "Create");
public static readonly MethodInfo AttrContentNext = GetMethod(typeof(AttributeContentIterator), "MoveNext");
public static readonly MethodInfo AttrCreate = GetMethod(typeof(AttributeIterator), "Create");
public static readonly MethodInfo AttrNext = GetMethod(typeof(AttributeIterator), "MoveNext");
public static readonly MethodInfo ContentCreate = GetMethod(typeof(ContentIterator), "Create");
public static readonly MethodInfo ContentNext = GetMethod(typeof(ContentIterator), "MoveNext");
public static readonly MethodInfo ContentMergeCreate = GetMethod(typeof(ContentMergeIterator), "Create");
public static readonly MethodInfo ContentMergeNext = GetMethod(typeof(ContentMergeIterator), "MoveNext");
public static readonly MethodInfo DescCreate = GetMethod(typeof(DescendantIterator), "Create");
public static readonly MethodInfo DescNext = GetMethod(typeof(DescendantIterator), "MoveNext");
public static readonly MethodInfo DescMergeCreate = GetMethod(typeof(DescendantMergeIterator), "Create");
public static readonly MethodInfo DescMergeNext = GetMethod(typeof(DescendantMergeIterator), "MoveNext");
public static readonly MethodInfo DiffCreate = GetMethod(typeof(DifferenceIterator), "Create");
public static readonly MethodInfo DiffNext = GetMethod(typeof(DifferenceIterator), "MoveNext");
public static readonly MethodInfo DodMergeCreate = GetMethod(typeof(DodSequenceMerge), "Create");
public static readonly MethodInfo DodMergeAdd = GetMethod(typeof(DodSequenceMerge), "AddSequence");
public static readonly MethodInfo DodMergeSeq = GetMethod(typeof(DodSequenceMerge), "MergeSequences");
public static readonly MethodInfo ElemContentCreate = GetMethod(typeof(ElementContentIterator), "Create");
public static readonly MethodInfo ElemContentNext = GetMethod(typeof(ElementContentIterator), "MoveNext");
public static readonly MethodInfo FollSibCreate = GetMethod(typeof(FollowingSiblingIterator), "Create");
public static readonly MethodInfo FollSibNext = GetMethod(typeof(FollowingSiblingIterator), "MoveNext");
public static readonly MethodInfo FollSibMergeCreate = GetMethod(typeof(FollowingSiblingMergeIterator), "Create");
public static readonly MethodInfo FollSibMergeNext = GetMethod(typeof(FollowingSiblingMergeIterator), "MoveNext");
public static readonly MethodInfo IdCreate = GetMethod(typeof(IdIterator), "Create");
public static readonly MethodInfo IdNext = GetMethod(typeof(IdIterator), "MoveNext");
public static readonly MethodInfo InterCreate = GetMethod(typeof(IntersectIterator), "Create");
public static readonly MethodInfo InterNext = GetMethod(typeof(IntersectIterator), "MoveNext");
public static readonly MethodInfo KindContentCreate = GetMethod(typeof(NodeKindContentIterator), "Create");
public static readonly MethodInfo KindContentNext = GetMethod(typeof(NodeKindContentIterator), "MoveNext");
public static readonly MethodInfo NmspCreate = GetMethod(typeof(NamespaceIterator), "Create");
public static readonly MethodInfo NmspNext = GetMethod(typeof(NamespaceIterator), "MoveNext");
public static readonly MethodInfo NodeRangeCreate = GetMethod(typeof(NodeRangeIterator), "Create");
public static readonly MethodInfo NodeRangeNext = GetMethod(typeof(NodeRangeIterator), "MoveNext");
public static readonly MethodInfo ParentCreate = GetMethod(typeof(ParentIterator), "Create");
public static readonly MethodInfo ParentNext = GetMethod(typeof(ParentIterator), "MoveNext");
public static readonly MethodInfo PrecCreate = GetMethod(typeof(PrecedingIterator), "Create");
public static readonly MethodInfo PrecNext = GetMethod(typeof(PrecedingIterator), "MoveNext");
public static readonly MethodInfo PreSibCreate = GetMethod(typeof(PrecedingSiblingIterator), "Create");
public static readonly MethodInfo PreSibNext = GetMethod(typeof(PrecedingSiblingIterator), "MoveNext");
public static readonly MethodInfo PreSibDOCreate = GetMethod(typeof(PrecedingSiblingDocOrderIterator), "Create");
public static readonly MethodInfo PreSibDONext = GetMethod(typeof(PrecedingSiblingDocOrderIterator), "MoveNext");
public static readonly MethodInfo SortKeyCreate = GetMethod(typeof(XmlSortKeyAccumulator), "Create");
public static readonly MethodInfo SortKeyDateTime = GetMethod(typeof(XmlSortKeyAccumulator), "AddDateTimeSortKey");
public static readonly MethodInfo SortKeyDecimal = GetMethod(typeof(XmlSortKeyAccumulator), "AddDecimalSortKey");
public static readonly MethodInfo SortKeyDouble = GetMethod(typeof(XmlSortKeyAccumulator), "AddDoubleSortKey");
public static readonly MethodInfo SortKeyEmpty = GetMethod(typeof(XmlSortKeyAccumulator), "AddEmptySortKey");
public static readonly MethodInfo SortKeyFinish = GetMethod(typeof(XmlSortKeyAccumulator), "FinishSortKeys");
public static readonly MethodInfo SortKeyInt = GetMethod(typeof(XmlSortKeyAccumulator), "AddIntSortKey");
public static readonly MethodInfo SortKeyInteger = GetMethod(typeof(XmlSortKeyAccumulator), "AddIntegerSortKey");
public static readonly MethodInfo SortKeyKeys = GetMethod(typeof(XmlSortKeyAccumulator), "get_Keys");
public static readonly MethodInfo SortKeyString = GetMethod(typeof(XmlSortKeyAccumulator), "AddStringSortKey");
public static readonly MethodInfo UnionCreate = GetMethod(typeof(UnionIterator), "Create");
public static readonly MethodInfo UnionNext = GetMethod(typeof(UnionIterator), "MoveNext");
public static readonly MethodInfo XPFollCreate = GetMethod(typeof(XPathFollowingIterator), "Create");
public static readonly MethodInfo XPFollNext = GetMethod(typeof(XPathFollowingIterator), "MoveNext");
public static readonly MethodInfo XPFollMergeCreate = GetMethod(typeof(XPathFollowingMergeIterator), "Create");
public static readonly MethodInfo XPFollMergeNext = GetMethod(typeof(XPathFollowingMergeIterator), "MoveNext");
public static readonly MethodInfo XPPrecCreate = GetMethod(typeof(XPathPrecedingIterator), "Create");
public static readonly MethodInfo XPPrecNext = GetMethod(typeof(XPathPrecedingIterator), "MoveNext");
public static readonly MethodInfo XPPrecDOCreate = GetMethod(typeof(XPathPrecedingDocOrderIterator), "Create");
public static readonly MethodInfo XPPrecDONext = GetMethod(typeof(XPathPrecedingDocOrderIterator), "MoveNext");
public static readonly MethodInfo XPPrecMergeCreate = GetMethod(typeof(XPathPrecedingMergeIterator), "Create");
public static readonly MethodInfo XPPrecMergeNext = GetMethod(typeof(XPathPrecedingMergeIterator), "MoveNext");
// XmlQueryRuntime
public static readonly MethodInfo AddNewIndex = GetMethod(typeof(XmlQueryRuntime), "AddNewIndex");
public static readonly MethodInfo ChangeTypeXsltArg = GetMethod(typeof(XmlQueryRuntime), "ChangeTypeXsltArgument", typeof(int), typeof(object), typeof(Type));
public static readonly MethodInfo ChangeTypeXsltResult = GetMethod(typeof(XmlQueryRuntime), "ChangeTypeXsltResult");
public static readonly MethodInfo CompPos = GetMethod(typeof(XmlQueryRuntime), "ComparePosition");
public static readonly MethodInfo Context = GetMethod(typeof(XmlQueryRuntime), "get_ExternalContext");
public static readonly MethodInfo CreateCollation = GetMethod(typeof(XmlQueryRuntime), "CreateCollation");
public static readonly MethodInfo DocOrder = GetMethod(typeof(XmlQueryRuntime), "DocOrderDistinct");
public static readonly MethodInfo EndRtfConstr = GetMethod(typeof(XmlQueryRuntime), "EndRtfConstruction");
public static readonly MethodInfo EndSeqConstr = GetMethod(typeof(XmlQueryRuntime), "EndSequenceConstruction");
public static readonly MethodInfo FindIndex = GetMethod(typeof(XmlQueryRuntime), "FindIndex");
public static readonly MethodInfo GenId = GetMethod(typeof(XmlQueryRuntime), "GenerateId");
public static readonly MethodInfo GetAtomizedName = GetMethod(typeof(XmlQueryRuntime), "GetAtomizedName");
public static readonly MethodInfo GetCollation = GetMethod(typeof(XmlQueryRuntime), "GetCollation");
public static readonly MethodInfo GetEarly = GetMethod(typeof(XmlQueryRuntime), "GetEarlyBoundObject");
public static readonly MethodInfo GetNameFilter = GetMethod(typeof(XmlQueryRuntime), "GetNameFilter");
public static readonly MethodInfo GetOutput = GetMethod(typeof(XmlQueryRuntime), "get_Output");
public static readonly MethodInfo GetGlobalValue = GetMethod(typeof(XmlQueryRuntime), "GetGlobalValue");
public static readonly MethodInfo GetTypeFilter = GetMethod(typeof(XmlQueryRuntime), "GetTypeFilter");
public static readonly MethodInfo GlobalComputed = GetMethod(typeof(XmlQueryRuntime), "IsGlobalComputed");
public static readonly MethodInfo ItemMatchesCode = GetMethod(typeof(XmlQueryRuntime), "MatchesXmlType", typeof(XPathItem), typeof(XmlTypeCode));
public static readonly MethodInfo ItemMatchesType = GetMethod(typeof(XmlQueryRuntime), "MatchesXmlType", typeof(XPathItem), typeof(int));
public static readonly MethodInfo QNameEqualLit = GetMethod(typeof(XmlQueryRuntime), "IsQNameEqual", typeof(XPathNavigator), typeof(int), typeof(int));
public static readonly MethodInfo QNameEqualNav = GetMethod(typeof(XmlQueryRuntime), "IsQNameEqual", typeof(XPathNavigator), typeof(XPathNavigator));
public static readonly MethodInfo RtfConstr = GetMethod(typeof(XmlQueryRuntime), "TextRtfConstruction");
public static readonly MethodInfo SendMessage = GetMethod(typeof(XmlQueryRuntime), "SendMessage");
public static readonly MethodInfo SeqMatchesCode = GetMethod(typeof(XmlQueryRuntime), "MatchesXmlType", typeof(IList<XPathItem>), typeof(XmlTypeCode));
public static readonly MethodInfo SeqMatchesType = GetMethod(typeof(XmlQueryRuntime), "MatchesXmlType", typeof(IList<XPathItem>), typeof(int));
public static readonly MethodInfo SetGlobalValue = GetMethod(typeof(XmlQueryRuntime), "SetGlobalValue");
public static readonly MethodInfo StartRtfConstr = GetMethod(typeof(XmlQueryRuntime), "StartRtfConstruction");
public static readonly MethodInfo StartSeqConstr = GetMethod(typeof(XmlQueryRuntime), "StartSequenceConstruction");
public static readonly MethodInfo TagAndMappings = GetMethod(typeof(XmlQueryRuntime), "ParseTagName", typeof(string), typeof(int));
public static readonly MethodInfo TagAndNamespace = GetMethod(typeof(XmlQueryRuntime), "ParseTagName", typeof(string), typeof(string));
public static readonly MethodInfo ThrowException = GetMethod(typeof(XmlQueryRuntime), "ThrowException");
public static readonly MethodInfo XsltLib = GetMethod(typeof(XmlQueryRuntime), "get_XsltFunctions");
// XmlQueryContext
public static readonly MethodInfo GetDataSource = GetMethod(typeof(XmlQueryContext), "GetDataSource");
public static readonly MethodInfo GetDefaultDataSource = GetMethod(typeof(XmlQueryContext), "get_DefaultDataSource");
public static readonly MethodInfo GetParam = GetMethod(typeof(XmlQueryContext), "GetParameter");
public static readonly MethodInfo InvokeXsltLate = GetMethod(typeof(XmlQueryContext), "InvokeXsltLateBoundFunction");
// XmlILIndex
public static readonly MethodInfo IndexAdd = GetMethod(typeof(XmlILIndex), "Add");
public static readonly MethodInfo IndexLookup = GetMethod(typeof(XmlILIndex), "Lookup");
// XPathItem
public static readonly MethodInfo ItemIsNode = GetMethod(typeof(XPathItem), "get_IsNode");
public static readonly MethodInfo Value = GetMethod(typeof(XPathItem), "get_Value");
public static readonly MethodInfo ValueAsAny = GetMethod(typeof(XPathItem), "ValueAs", typeof(Type), typeof(IXmlNamespaceResolver));
// XPathNavigator
public static readonly MethodInfo NavClone = GetMethod(typeof(XPathNavigator), "Clone");
public static readonly MethodInfo NavLocalName = GetMethod(typeof(XPathNavigator), "get_LocalName");
public static readonly MethodInfo NavMoveAttr = GetMethod(typeof(XPathNavigator), "MoveToAttribute", typeof(string), typeof(string));
public static readonly MethodInfo NavMoveId = GetMethod(typeof(XPathNavigator), "MoveToId");
public static readonly MethodInfo NavMoveParent = GetMethod(typeof(XPathNavigator), "MoveToParent");
public static readonly MethodInfo NavMoveRoot = GetMethod(typeof(XPathNavigator), "MoveToRoot");
public static readonly MethodInfo NavMoveTo = GetMethod(typeof(XPathNavigator), "MoveTo");
public static readonly MethodInfo NavNmsp = GetMethod(typeof(XPathNavigator), "get_NamespaceURI");
public static readonly MethodInfo NavPrefix = GetMethod(typeof(XPathNavigator), "get_Prefix");
public static readonly MethodInfo NavSamePos = GetMethod(typeof(XPathNavigator), "IsSamePosition");
public static readonly MethodInfo NavType = GetMethod(typeof(XPathNavigator), "get_NodeType");
// XmlQueryOutput methods
public static readonly MethodInfo StartElemLitName = GetMethod(typeof(XmlQueryOutput), "WriteStartElement", typeof(string), typeof(string), typeof(string));
public static readonly MethodInfo StartElemLocName = GetMethod(typeof(XmlQueryOutput), "WriteStartElementLocalName", typeof(string));
public static readonly MethodInfo EndElemStackName = GetMethod(typeof(XmlQueryOutput), "WriteEndElement");
public static readonly MethodInfo StartAttrLitName = GetMethod(typeof(XmlQueryOutput), "WriteStartAttribute", typeof(string), typeof(string), typeof(string));
public static readonly MethodInfo StartAttrLocName = GetMethod(typeof(XmlQueryOutput), "WriteStartAttributeLocalName", typeof(string));
public static readonly MethodInfo EndAttr = GetMethod(typeof(XmlQueryOutput), "WriteEndAttribute");
public static readonly MethodInfo Text = GetMethod(typeof(XmlQueryOutput), "WriteString");
public static readonly MethodInfo NoEntText = GetMethod(typeof(XmlQueryOutput), "WriteRaw", typeof(string));
public static readonly MethodInfo StartTree = GetMethod(typeof(XmlQueryOutput), "StartTree");
public static readonly MethodInfo EndTree = GetMethod(typeof(XmlQueryOutput), "EndTree");
public static readonly MethodInfo StartElemLitNameUn = GetMethod(typeof(XmlQueryOutput), "WriteStartElementUnchecked", typeof(string), typeof(string), typeof(string));
public static readonly MethodInfo StartElemLocNameUn = GetMethod(typeof(XmlQueryOutput), "WriteStartElementUnchecked", typeof(string));
public static readonly MethodInfo StartContentUn = GetMethod(typeof(XmlQueryOutput), "StartElementContentUnchecked");
public static readonly MethodInfo EndElemLitNameUn = GetMethod(typeof(XmlQueryOutput), "WriteEndElementUnchecked", typeof(string), typeof(string), typeof(string));
public static readonly MethodInfo EndElemLocNameUn = GetMethod(typeof(XmlQueryOutput), "WriteEndElementUnchecked", typeof(string));
public static readonly MethodInfo StartAttrLitNameUn = GetMethod(typeof(XmlQueryOutput), "WriteStartAttributeUnchecked", typeof(string), typeof(string), typeof(string));
public static readonly MethodInfo StartAttrLocNameUn = GetMethod(typeof(XmlQueryOutput), "WriteStartAttributeUnchecked", typeof(string));
public static readonly MethodInfo EndAttrUn = GetMethod(typeof(XmlQueryOutput), "WriteEndAttributeUnchecked");
public static readonly MethodInfo NamespaceDeclUn = GetMethod(typeof(XmlQueryOutput), "WriteNamespaceDeclarationUnchecked");
public static readonly MethodInfo TextUn = GetMethod(typeof(XmlQueryOutput), "WriteStringUnchecked");
public static readonly MethodInfo NoEntTextUn = GetMethod(typeof(XmlQueryOutput), "WriteRawUnchecked");
public static readonly MethodInfo StartRoot = GetMethod(typeof(XmlQueryOutput), "WriteStartRoot");
public static readonly MethodInfo EndRoot = GetMethod(typeof(XmlQueryOutput), "WriteEndRoot");
public static readonly MethodInfo StartElemCopyName = GetMethod(typeof(XmlQueryOutput), "WriteStartElementComputed", typeof(XPathNavigator));
public static readonly MethodInfo StartElemMapName = GetMethod(typeof(XmlQueryOutput), "WriteStartElementComputed", typeof(string), typeof(int));
public static readonly MethodInfo StartElemNmspName = GetMethod(typeof(XmlQueryOutput), "WriteStartElementComputed", typeof(string), typeof(string));
public static readonly MethodInfo StartElemQName = GetMethod(typeof(XmlQueryOutput), "WriteStartElementComputed", typeof(XmlQualifiedName));
public static readonly MethodInfo StartAttrCopyName = GetMethod(typeof(XmlQueryOutput), "WriteStartAttributeComputed", typeof(XPathNavigator));
public static readonly MethodInfo StartAttrMapName = GetMethod(typeof(XmlQueryOutput), "WriteStartAttributeComputed", typeof(string), typeof(int));
public static readonly MethodInfo StartAttrNmspName = GetMethod(typeof(XmlQueryOutput), "WriteStartAttributeComputed", typeof(string), typeof(string));
public static readonly MethodInfo StartAttrQName = GetMethod(typeof(XmlQueryOutput), "WriteStartAttributeComputed", typeof(XmlQualifiedName));
public static readonly MethodInfo NamespaceDecl = GetMethod(typeof(XmlQueryOutput), "WriteNamespaceDeclaration");
public static readonly MethodInfo StartComment = GetMethod(typeof(XmlQueryOutput), "WriteStartComment");
public static readonly MethodInfo CommentText = GetMethod(typeof(XmlQueryOutput), "WriteCommentString");
public static readonly MethodInfo EndComment = GetMethod(typeof(XmlQueryOutput), "WriteEndComment");
public static readonly MethodInfo StartPI = GetMethod(typeof(XmlQueryOutput), "WriteStartProcessingInstruction");
public static readonly MethodInfo PIText = GetMethod(typeof(XmlQueryOutput), "WriteProcessingInstructionString");
public static readonly MethodInfo EndPI = GetMethod(typeof(XmlQueryOutput), "WriteEndProcessingInstruction");
public static readonly MethodInfo WriteItem = GetMethod(typeof(XmlQueryOutput), "WriteItem");
public static readonly MethodInfo CopyOf = GetMethod(typeof(XmlQueryOutput), "XsltCopyOf");
public static readonly MethodInfo StartCopy = GetMethod(typeof(XmlQueryOutput), "StartCopy");
public static readonly MethodInfo EndCopy = GetMethod(typeof(XmlQueryOutput), "EndCopy");
// Datatypes
public static readonly MethodInfo DecAdd = GetMethod(typeof(decimal), "Add");
public static readonly MethodInfo DecCmp = GetMethod(typeof(decimal), "Compare", typeof(decimal), typeof(decimal));
public static readonly MethodInfo DecEq = GetMethod(typeof(decimal), "Equals", typeof(decimal), typeof(decimal));
public static readonly MethodInfo DecSub = GetMethod(typeof(decimal), "Subtract");
public static readonly MethodInfo DecMul = GetMethod(typeof(decimal), "Multiply");
public static readonly MethodInfo DecDiv = GetMethod(typeof(decimal), "Divide");
public static readonly MethodInfo DecRem = GetMethod(typeof(decimal), "Remainder");
public static readonly MethodInfo DecNeg = GetMethod(typeof(decimal), "Negate");
public static readonly MethodInfo QNameEq = GetMethod(typeof(XmlQualifiedName), "Equals");
public static readonly MethodInfo StrEq = GetMethod(typeof(string), "Equals", typeof(string), typeof(string));
public static readonly MethodInfo StrCat2 = GetMethod(typeof(string), "Concat", typeof(string), typeof(string));
public static readonly MethodInfo StrCat3 = GetMethod(typeof(string), "Concat", typeof(string), typeof(string), typeof(string));
public static readonly MethodInfo StrCat4 = GetMethod(typeof(string), "Concat", typeof(string), typeof(string), typeof(string), typeof(string));
public static readonly MethodInfo StrCmp = GetMethod(typeof(string), "CompareOrdinal", typeof(string), typeof(string));
public static readonly MethodInfo StrLen = GetMethod(typeof(string), "get_Length");
// XsltConvert
public static readonly MethodInfo DblToDec = GetMethod(typeof(XsltConvert), "ToDecimal", typeof(double));
public static readonly MethodInfo DblToInt = GetMethod(typeof(XsltConvert), "ToInt", typeof(double));
public static readonly MethodInfo DblToLng = GetMethod(typeof(XsltConvert), "ToLong", typeof(double));
public static readonly MethodInfo DblToStr = GetMethod(typeof(XsltConvert), "ToString", typeof(double));
public static readonly MethodInfo DecToDbl = GetMethod(typeof(XsltConvert), "ToDouble", typeof(decimal));
public static readonly MethodInfo DTToStr = GetMethod(typeof(XsltConvert), "ToString", typeof(DateTime));
public static readonly MethodInfo IntToDbl = GetMethod(typeof(XsltConvert), "ToDouble", typeof(int));
public static readonly MethodInfo LngToDbl = GetMethod(typeof(XsltConvert), "ToDouble", typeof(long));
public static readonly MethodInfo StrToDbl = GetMethod(typeof(XsltConvert), "ToDouble", typeof(string));
public static readonly MethodInfo StrToDT = GetMethod(typeof(XsltConvert), "ToDateTime", typeof(string));
public static readonly MethodInfo ItemToBool = GetMethod(typeof(XsltConvert), "ToBoolean", typeof(XPathItem));
public static readonly MethodInfo ItemToDbl = GetMethod(typeof(XsltConvert), "ToDouble", typeof(XPathItem));
public static readonly MethodInfo ItemToStr = GetMethod(typeof(XsltConvert), "ToString", typeof(XPathItem));
public static readonly MethodInfo ItemToNode = GetMethod(typeof(XsltConvert), "ToNode", typeof(XPathItem));
public static readonly MethodInfo ItemToNodes = GetMethod(typeof(XsltConvert), "ToNodeSet", typeof(XPathItem));
public static readonly MethodInfo ItemsToBool = GetMethod(typeof(XsltConvert), "ToBoolean", typeof(IList<XPathItem>));
public static readonly MethodInfo ItemsToDbl = GetMethod(typeof(XsltConvert), "ToDouble", typeof(IList<XPathItem>));
public static readonly MethodInfo ItemsToNode = GetMethod(typeof(XsltConvert), "ToNode", typeof(IList<XPathItem>));
public static readonly MethodInfo ItemsToNodes = GetMethod(typeof(XsltConvert), "ToNodeSet", typeof(IList<XPathItem>));
public static readonly MethodInfo ItemsToStr = GetMethod(typeof(XsltConvert), "ToString", typeof(IList<XPathItem>));
// StringConcat
public static readonly MethodInfo StrCatCat = GetMethod(typeof(StringConcat), "Concat");
public static readonly MethodInfo StrCatClear = GetMethod(typeof(StringConcat), "Clear");
public static readonly MethodInfo StrCatResult = GetMethod(typeof(StringConcat), "GetResult");
public static readonly MethodInfo StrCatDelim = GetMethod(typeof(StringConcat), "set_Delimiter");
// XmlILStorageConverter
public static readonly MethodInfo NavsToItems = GetMethod(typeof(XmlILStorageConverter), "NavigatorsToItems");
public static readonly MethodInfo ItemsToNavs = GetMethod(typeof(XmlILStorageConverter), "ItemsToNavigators");
// XmlQueryNodeSequence
public static readonly MethodInfo SetDod = GetMethod(typeof(XmlQueryNodeSequence), "set_IsDocOrderDistinct");
// Miscellaneous
public static readonly MethodInfo GetTypeFromHandle = GetMethod(typeof(Type), "GetTypeFromHandle");
public static readonly MethodInfo InitializeArray = GetMethod(typeof(System.Runtime.CompilerServices.RuntimeHelpers), "InitializeArray");
public static readonly Dictionary<Type, XmlILStorageMethods> StorageMethods;
static XmlILMethods() {
StorageMethods = new Dictionary<Type, XmlILStorageMethods>();
StorageMethods[typeof(string)] = new XmlILStorageMethods(typeof(string));
StorageMethods[typeof(bool)] = new XmlILStorageMethods(typeof(bool));
StorageMethods[typeof(int)] = new XmlILStorageMethods(typeof(int));
StorageMethods[typeof(long)] = new XmlILStorageMethods(typeof(long));
StorageMethods[typeof(decimal)] = new XmlILStorageMethods(typeof(decimal));
StorageMethods[typeof(double)] = new XmlILStorageMethods(typeof(double));
StorageMethods[typeof(float)] = new XmlILStorageMethods(typeof(float));
StorageMethods[typeof(DateTime)] = new XmlILStorageMethods(typeof(DateTime));
StorageMethods[typeof(byte[])] = new XmlILStorageMethods(typeof(byte[]));
StorageMethods[typeof(XmlQualifiedName)] = new XmlILStorageMethods(typeof(XmlQualifiedName));
StorageMethods[typeof(TimeSpan)] = new XmlILStorageMethods(typeof(TimeSpan));
StorageMethods[typeof(XPathItem)] = new XmlILStorageMethods(typeof(XPathItem));
StorageMethods[typeof(XPathNavigator)] = new XmlILStorageMethods(typeof(XPathNavigator));
}
public static MethodInfo GetMethod(Type className, string methName) {
MethodInfo methInfo = className.GetMethod(methName);
Debug.Assert(methInfo != null, "Method " + className.Name + "." + methName + " cannot be null.");
return methInfo;
}
public static MethodInfo GetMethod(Type className, string methName, params Type[] args) {
MethodInfo methInfo = className.GetMethod(methName, args);
Debug.Assert(methInfo != null, "Method " + methName + " cannot be null.");
return methInfo;
}
}
/// <summary>
/// When named nodes are constructed, there are several possible ways for their names to be created.
/// </summary>
internal enum GenerateNameType {
LiteralLocalName, // Local name is a literal string; namespace is null
LiteralName, // All parts of the name are literal strings
CopiedName, // Name should be copied from a navigator
TagNameAndMappings, // Tagname contains prefix:localName and prefix is mapped to a namespace
TagNameAndNamespace, // Tagname contains prefix:localName and namespace is provided
QName, // Name is computed QName (no prefix available)
StackName, // Element name has already been pushed onto XmlQueryOutput stack
}
/// <summary>
/// Contains helper methods used during the code generation phase.
/// </summary>
internal class GenerateHelper {
private MethodBase methInfo;
private ILGenerator ilgen;
private LocalBuilder locXOut;
private XmlILModule module;
private bool isDebug, initWriters;
private StaticDataManager staticData;
private ISourceLineInfo lastSourceInfo;
private MethodInfo methSyncToNav;
#if DEBUG
private int lblNum;
private Hashtable symbols;
private int numLocals;
private string sourceFile;
private TextWriter writerDump;
#endif
/// <summary>
/// Cache metadata used during code-generation phase.
/// </summary>
// SxS note: Using hardcoded "dump.il" is an SxS issue. Since we are doing this ONLY in debug builds
// and only for tracing purposes and MakeVersionSafeName does not seem to be able to handle file
// extensions correctly I decided to suppress the SxS message (as advised by SxS guys).
[ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)]
[ResourceExposure(ResourceScope.None)]
public GenerateHelper(XmlILModule module, bool isDebug) {
this.isDebug = isDebug;
this.module = module;
this.staticData = new StaticDataManager();
#if DEBUG
if (XmlILTrace.IsEnabled)
XmlILTrace.PrepareTraceWriter("dump.il");
#endif
}
/// <summary>
/// Begin generating code within a new method.
/// </summary>
// SxS note: Using hardcoded "dump.il" is an SxS issue. Since we are doing this ONLY in debug builds
// and only for tracing purposes and MakeVersionSafeName does not seem to be able to handle file
// extensions correctly I decided to suppress the SxS message (as advised by SxS guys).
[ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)]
[ResourceExposure(ResourceScope.None)]
public void MethodBegin(MethodBase methInfo, ISourceLineInfo sourceInfo, bool initWriters) {
this.methInfo = methInfo;
this.ilgen = XmlILModule.DefineMethodBody(methInfo);
this.lastSourceInfo = null;
#if DEBUG
if (XmlILTrace.IsEnabled) {
this.numLocals = 0;
this.symbols = new Hashtable();
this.lblNum = 0;
this.sourceFile = null;
this.writerDump = XmlILTrace.GetTraceWriter("dump.il");
this.writerDump.WriteLine(".method {0}()", methInfo.Name);
this.writerDump.WriteLine("{");
}
#endif
if (this.isDebug) {
DebugStartScope();
// DebugInfo: Sequence point just before generating code for this function
if (sourceInfo != null) {
// Don't call DebugSequencePoint, as it puts Nop *before* the sequence point. That is
// wrong in this case, because we need source line information to be emitted before any
// IL instruction so that stepping into this function won't end up in the assembly window.
// We still guarantee that:
// 1. Two sequence points are never adjacent, since this is the 1st sequence point
// 2. Stack depth is 0, since this is the very beginning of the method
MarkSequencePoint(sourceInfo);
Emit(OpCodes.Nop);
}
}
else if (this.module.EmitSymbols) {
// For a retail build, put source information on methods only
if (sourceInfo != null) {
MarkSequencePoint(sourceInfo);
// Set this.lastSourceInfo back to null to prevent generating additional sequence points
// in this method.
this.lastSourceInfo = null;
}
}
this.initWriters = false;
if (initWriters) {
EnsureWriter();
LoadQueryRuntime();
Call(XmlILMethods.GetOutput);
Emit(OpCodes.Stloc, this.locXOut);
}
}
/// <summary>
/// Generate "ret" instruction and branch fixup jump table.
/// </summary>
public void MethodEnd() {
Emit(OpCodes.Ret);
#if DEBUG
if (XmlILTrace.IsEnabled) {
this.writerDump.WriteLine("}");
this.writerDump.WriteLine("");
this.writerDump.Close();
}
#endif
if (this.isDebug)
DebugEndScope();
}
//-----------------------------------------------
// Helper Global Methods
//-----------------------------------------------
/// <summary>
/// Call a static method which attempts to reuse a navigator.
/// </summary>
public void CallSyncToNavigator() {
// Get helper method from module
if (this.methSyncToNav == null)
this.methSyncToNav = this.module.FindMethod("SyncToNavigator");
Call(this.methSyncToNav);
}
//-----------------------------------------------
// StaticDataManager
//-----------------------------------------------
/// <summary>
/// This internal class manages literal names, literal types, and storage for global variables.
/// </summary>
public StaticDataManager StaticData {
get { return this.staticData; }
}
//-----------------------------------------------
// Constants
//-----------------------------------------------
/// <summary>
/// Generate the optimal Ldc_I4 instruction based on intVal.
/// </summary>
public void LoadInteger(int intVal) {
OpCode opcode;
if (intVal >= -1 && intVal < 9) {
switch (intVal) {
case -1: opcode = OpCodes.Ldc_I4_M1; break;
case 0: opcode = OpCodes.Ldc_I4_0; break;
case 1: opcode = OpCodes.Ldc_I4_1; break;
case 2: opcode = OpCodes.Ldc_I4_2; break;
case 3: opcode = OpCodes.Ldc_I4_3; break;
case 4: opcode = OpCodes.Ldc_I4_4; break;
case 5: opcode = OpCodes.Ldc_I4_5; break;
case 6: opcode = OpCodes.Ldc_I4_6; break;
case 7: opcode = OpCodes.Ldc_I4_7; break;
case 8: opcode = OpCodes.Ldc_I4_8; break;
default: Debug.Assert(false); return;
}
Emit(opcode);
}
else if (intVal >= -128 && intVal <= 127)
Emit(OpCodes.Ldc_I4_S, (sbyte) intVal);
else
Emit(OpCodes.Ldc_I4, intVal);
}
public void LoadBoolean(bool boolVal) {
Emit(boolVal ? OpCodes.Ldc_I4_1 : OpCodes.Ldc_I4_0);
}
public void LoadType(Type clrTyp) {
Emit(OpCodes.Ldtoken, clrTyp);
Call(XmlILMethods.GetTypeFromHandle);
}
//-----------------------------------------------
// Local variables
//-----------------------------------------------
/// <summary>
/// Generate a new local variable. Add a numeric suffix to name that ensures that all
/// local variable names will be unique (for readability).
/// </summary>
public LocalBuilder DeclareLocal(string name, Type type) {
LocalBuilder locBldr = this.ilgen.DeclareLocal(type);
#if DEBUG
if (XmlILTrace.IsEnabled) {
// Set name for internal MS debugging. This is not the user-defined name--that will be set later
if (this.isDebug)
locBldr.SetLocalSymInfo(name + this.numLocals.ToString(CultureInfo.InvariantCulture));
this.symbols.Add(locBldr, name + this.numLocals.ToString(CultureInfo.InvariantCulture));
this.numLocals++;
}
#endif
return locBldr;
}
public void LoadQueryRuntime() {
Emit(OpCodes.Ldarg_0);
}
public void LoadQueryContext() {
Emit(OpCodes.Ldarg_0);
Call(XmlILMethods.Context);
}
public void LoadXsltLibrary() {
Emit(OpCodes.Ldarg_0);
Call(XmlILMethods.XsltLib);
}
public void LoadQueryOutput() {
Emit(OpCodes.Ldloc, this.locXOut);
}
//-----------------------------------------------
// Parameters
//-----------------------------------------------
public void LoadParameter(int paramPos) {
switch (paramPos) {
case 0: Emit(OpCodes.Ldarg_0); break;
case 1: Emit(OpCodes.Ldarg_1); break;
case 2: Emit(OpCodes.Ldarg_2); break;
case 3: Emit(OpCodes.Ldarg_3); break;
default:
if (paramPos <= 255) {
Emit(OpCodes.Ldarg_S, (byte) paramPos);
}
else if (paramPos <= ushort.MaxValue) {
Emit(OpCodes.Ldarg, paramPos);
}
else {
throw new XslTransformException(Res.XmlIl_TooManyParameters);
}
break;
}
}
public void SetParameter(object paramId) {
int paramPos = (int) paramId;
if (paramPos <= 255) {
Emit(OpCodes.Starg_S, (byte) paramPos);
}
else if (paramPos <= ushort.MaxValue) {
Emit(OpCodes.Starg, (int) paramPos);
}
else {
throw new XslTransformException(Res.XmlIl_TooManyParameters);
}
}
//-----------------------------------------------
// Labels
//-----------------------------------------------
/// <summary>
/// Branch to lblBranch and anchor lblMark. If lblBranch = lblMark, then no need
/// to generate a "br" to the next instruction.
/// </summary>
public void BranchAndMark(Label lblBranch, Label lblMark) {
if (!lblBranch.Equals(lblMark)) {
EmitUnconditionalBranch(OpCodes.Br, lblBranch);
}
MarkLabel(lblMark);
}
//-----------------------------------------------
// Comparison
//-----------------------------------------------
/// <summary>
/// Compare the top value on the stack with the specified i4 using the specified relational
/// comparison opcode, and branch to lblBranch if the result is true.
/// </summary>
public void TestAndBranch(int i4, Label lblBranch, OpCode opcodeBranch) {
switch (i4) {
case 0:
// Beq or Bne can be shortened to Brfalse or Brtrue if comparing to 0
if (opcodeBranch.Value == OpCodes.Beq.Value)
opcodeBranch = OpCodes.Brfalse;
else if (opcodeBranch.Value == OpCodes.Beq_S.Value)
opcodeBranch = OpCodes.Brfalse_S;
else if (opcodeBranch.Value == OpCodes.Bne_Un.Value)
opcodeBranch = OpCodes.Brtrue;
else if (opcodeBranch.Value == OpCodes.Bne_Un_S.Value)
opcodeBranch = OpCodes.Brtrue_S;
else
goto default;
break;
default:
// Cannot use shortcut, so push integer onto the stack
LoadInteger(i4);
break;
}
Emit(opcodeBranch, lblBranch);
}
/// <summary>
/// Assume a branch instruction has already been issued. If isTrueBranch is true, then the
/// true path is linked to lblBranch. Otherwise, the false path is linked to lblBranch.
/// Convert this "branching" boolean logic into an explicit push of 1 or 0 onto the stack.
/// </summary>
public void ConvBranchToBool(Label lblBranch, bool isTrueBranch) {
Label lblDone = DefineLabel();
Emit(isTrueBranch ? OpCodes.Ldc_I4_0 : OpCodes.Ldc_I4_1);
EmitUnconditionalBranch(OpCodes.Br_S, lblDone);
MarkLabel(lblBranch);
Emit(isTrueBranch ? OpCodes.Ldc_I4_1 : OpCodes.Ldc_I4_0);
MarkLabel(lblDone);
}
//-----------------------------------------------
// Frequently used method and function calls
//-----------------------------------------------
public void TailCall(MethodInfo meth) {
Emit(OpCodes.Tailcall);
Call(meth);
Emit(OpCodes.Ret);
}
[Conditional("DEBUG")]
private void TraceCall(OpCode opcode, MethodInfo meth) {
#if DEBUG
if (XmlILTrace.IsEnabled) {
StringBuilder strBldr = new StringBuilder();
bool isFirst = true;
string retType = "";
if (!(meth is MethodBuilder)) {
foreach (ParameterInfo paramInfo in meth.GetParameters()) {
if (isFirst)
isFirst = false;
else
strBldr.Append(", ");
strBldr.Append(paramInfo.ParameterType.Name);
}
retType = meth.ReturnType.Name;
}
this.writerDump.WriteLine(" {0, -10} {1} {2}({3})", new object[] {opcode.Name, retType, meth.Name, strBldr.ToString()});
}
#endif
}
public void Call(MethodInfo meth) {
OpCode opcode = meth.IsVirtual || meth.IsAbstract ? OpCodes.Callvirt : OpCodes.Call;
TraceCall(opcode, meth);
this.ilgen.Emit(opcode, meth);
if (this.lastSourceInfo != null) {
// Emit a "no source" sequence point, otherwise the debugger would return to the wrong line
// once the call has finished. We are guaranteed not to emit adjacent sequence points because
// the Call instruction precedes this sequence point, and a nop instruction precedes other
// sequence points.
MarkSequencePoint(SourceLineInfo.NoSource);
}
}
//
public void CallToken(MethodInfo meth) {
Debug.Assert(!(methInfo is ConstructorBuilder));
MethodBuilder methBldr = this.methInfo as MethodBuilder;
if (methBldr != null) {
// Using regular reflection emit, so get a token for the specified method.
// The token is only valid within scope of this method's body.
OpCode opcode = meth.IsVirtual || meth.IsAbstract ? OpCodes.Callvirt : OpCodes.Call;
TraceCall(opcode, meth);
this.ilgen.Emit(opcode, ((ModuleBuilder) methBldr.GetModule()).GetMethodToken(meth).Token);
if (this.lastSourceInfo != null) {
// Emit a "no source" sequence point, otherwise the debugger would return to the wrong line
// once the call has finished. We are guaranteed not to emit adjacent sequence points because
// the Call instruction precedes this sequence point, and a nop instruction precedes other
// sequence points.
MarkSequencePoint(SourceLineInfo.NoSource);
}
}
else {
// Using LCG, so no need to workaround
Call(meth);
}
}
public void Construct(ConstructorInfo constr) {
Emit(OpCodes.Newobj, constr);
}
public void CallConcatStrings(int cStrings) {
switch (cStrings) {
case 0:
Emit(OpCodes.Ldstr, "");
break;
case 1:
break;
case 2:
Call(XmlILMethods.StrCat2);
break;
case 3:
Call(XmlILMethods.StrCat3);
break;
case 4:
Call(XmlILMethods.StrCat4);
break;
default:
Debug.Assert(false, "Shouldn't be called");
break;
}
}
/// <summary>
/// Assume that an object reference is on the IL stack. Change the static Clr type from "clrTypeSrc" to "clrTypeDst"
/// </summary>
public void TreatAs(Type clrTypeSrc, Type clrTypeDst) {
// If source = destination, then no-op
if (clrTypeSrc == clrTypeDst)
return;
if (clrTypeSrc.IsValueType) {
// If source is a value type, then destination may only be typeof(object), so box
Debug.Assert(clrTypeDst == typeof(object), "Invalid cast, since value types do not allow inheritance.");
Emit(OpCodes.Box, clrTypeSrc);
}
else if (clrTypeDst.IsValueType) {
// If destination type is value type, then source may only be typeof(object), so unbox
Debug.Assert(clrTypeSrc == typeof(object), "Invalid cast, since value types do not allow inheritance.");
Emit(OpCodes.Unbox, clrTypeDst);
Emit(OpCodes.Ldobj, clrTypeDst);
}
else if (clrTypeDst != typeof(object)) {
// If source is not a value type, and destination type is typeof(object), then no-op
// Otherwise, use Castclass to change the static type
Debug.Assert(clrTypeSrc.IsAssignableFrom(clrTypeDst) || clrTypeDst.IsAssignableFrom(clrTypeSrc),
"Invalid cast, since source type and destination type are not in same inheritance hierarchy.");
Emit(OpCodes.Castclass, clrTypeDst);
}
}
//-----------------------------------------------
// Datatype methods
//-----------------------------------------------
public void ConstructLiteralDecimal(decimal dec) {
if (dec >= (decimal) int.MinValue && dec <= (decimal) int.MaxValue && decimal.Truncate(dec) == dec) {
// Decimal can be constructed from a 32-bit integer
LoadInteger((int) dec);
Construct(XmlILConstructors.DecFromInt32);
}
else {
int[] bits = Decimal.GetBits(dec);
LoadInteger(bits[0]);
LoadInteger(bits[1]);
LoadInteger(bits[2]);
LoadBoolean(bits[3] < 0);
LoadInteger(bits[3] >> 16);
Construct(XmlILConstructors.DecFromParts);
}
}
public void ConstructLiteralQName(string localName, string namespaceName) {
Emit(OpCodes.Ldstr, localName);
Emit(OpCodes.Ldstr, namespaceName);
Construct(XmlILConstructors.QName);
}
public void CallArithmeticOp(QilNodeType opType, XmlTypeCode code) {
MethodInfo meth = null;
switch (code) {
case XmlTypeCode.Int:
case XmlTypeCode.Integer:
case XmlTypeCode.Double:
case XmlTypeCode.Float:
switch (opType) {
case QilNodeType.Add: Emit(OpCodes.Add); break;
case QilNodeType.Subtract: Emit(OpCodes.Sub); break;
case QilNodeType.Multiply: Emit(OpCodes.Mul); break;
case QilNodeType.Divide: Emit(OpCodes.Div); break;
case QilNodeType.Modulo: Emit(OpCodes.Rem); break;
case QilNodeType.Negate: Emit(OpCodes.Neg); break;
default: Debug.Assert(false, opType + " must be an arithmetic operation."); break;
}
break;
case XmlTypeCode.Decimal:
switch (opType) {
case QilNodeType.Add: meth = XmlILMethods.DecAdd; break;
case QilNodeType.Subtract: meth = XmlILMethods.DecSub; break;
case QilNodeType.Multiply: meth = XmlILMethods.DecMul; break;
case QilNodeType.Divide: meth = XmlILMethods.DecDiv; break;
case QilNodeType.Modulo: meth = XmlILMethods.DecRem; break;
case QilNodeType.Negate: meth = XmlILMethods.DecNeg; break;
default: Debug.Assert(false, opType + " must be an arithmetic operation."); break;
}
Call(meth);
break;
default:
Debug.Assert(false, "The " + opType + " arithmetic operation cannot be performed on values of type " + code + ".");
break;
}
}
public void CallCompareEquals(XmlTypeCode code) {
MethodInfo meth = null;
switch (code) {
case XmlTypeCode.String: meth = XmlILMethods.StrEq; break;
case XmlTypeCode.QName: meth = XmlILMethods.QNameEq; break;
case XmlTypeCode.Decimal: meth = XmlILMethods.DecEq; break;
default:
Debug.Assert(false, "Type " + code + " does not support the equals operation.");
break;
}
Call(meth);
}
public void CallCompare(XmlTypeCode code) {
MethodInfo meth = null;
switch (code) {
case XmlTypeCode.String: meth = XmlILMethods.StrCmp; break;
case XmlTypeCode.Decimal: meth = XmlILMethods.DecCmp; break;
default:
Debug.Assert(false, "Type " + code + " does not support the equals operation.");
break;
}
Call(meth);
}
//-----------------------------------------------
// XmlQueryRuntime function calls
//-----------------------------------------------
public void CallStartRtfConstruction(string baseUri) {
EnsureWriter();
LoadQueryRuntime();
Emit(OpCodes.Ldstr, baseUri);
Emit(OpCodes.Ldloca, this.locXOut);
Call(XmlILMethods.StartRtfConstr);
}
public void CallEndRtfConstruction() {
LoadQueryRuntime();
Emit(OpCodes.Ldloca, this.locXOut);
Call(XmlILMethods.EndRtfConstr);
}
public void CallStartSequenceConstruction() {
EnsureWriter();
LoadQueryRuntime();
Emit(OpCodes.Ldloca, this.locXOut);
Call(XmlILMethods.StartSeqConstr);
}
public void CallEndSequenceConstruction() {
LoadQueryRuntime();
Emit(OpCodes.Ldloca, this.locXOut);
Call(XmlILMethods.EndSeqConstr);
}
public void CallGetEarlyBoundObject(int idxObj, Type clrType) {
LoadQueryRuntime();
LoadInteger(idxObj);
Call(XmlILMethods.GetEarly);
TreatAs(typeof(object), clrType);
}
public void CallGetAtomizedName(int idxName) {
LoadQueryRuntime();
LoadInteger(idxName);
Call(XmlILMethods.GetAtomizedName);
}
public void CallGetNameFilter(int idxFilter) {
LoadQueryRuntime();
LoadInteger(idxFilter);
Call(XmlILMethods.GetNameFilter);
}
public void CallGetTypeFilter(XPathNodeType nodeType) {
LoadQueryRuntime();
LoadInteger((int) nodeType);
Call(XmlILMethods.GetTypeFilter);
}
public void CallParseTagName(GenerateNameType nameType) {
if (nameType == GenerateNameType.TagNameAndMappings) {
Call(XmlILMethods.TagAndMappings);
}
else {
Debug.Assert(nameType == GenerateNameType.TagNameAndNamespace);
Call(XmlILMethods.TagAndNamespace);
}
}
public void CallGetGlobalValue(int idxValue, Type clrType) {
LoadQueryRuntime();
LoadInteger(idxValue);
Call(XmlILMethods.GetGlobalValue);
TreatAs(typeof(object), clrType);
}
public void CallSetGlobalValue(Type clrType) {
TreatAs(clrType, typeof(object));
Call(XmlILMethods.SetGlobalValue);
}
public void CallGetCollation(int idxName) {
LoadQueryRuntime();
LoadInteger(idxName);
Call(XmlILMethods.GetCollation);
}
private void EnsureWriter() {
// If write variable has not yet been initialized, do it now
if (!this.initWriters) {
this.locXOut = DeclareLocal("$$$xwrtChk", typeof(XmlQueryOutput));
this.initWriters = true;
}
}
//-----------------------------------------------
// XmlQueryContext function calls
//-----------------------------------------------
public void CallGetParameter(string localName, string namespaceUri) {
LoadQueryContext();
Emit(OpCodes.Ldstr, localName);
Emit(OpCodes.Ldstr, namespaceUri);
Call(XmlILMethods.GetParam);
}
//-----------------------------------------------
// XmlQueryOutput function calls
//-----------------------------------------------
public void CallStartTree(XPathNodeType rootType) {
LoadQueryOutput();
LoadInteger((int) rootType);
Call(XmlILMethods.StartTree);
}
public void CallEndTree() {
LoadQueryOutput();
Call(XmlILMethods.EndTree);
}
public void CallWriteStartRoot() {
// Call XmlQueryOutput.WriteStartRoot
LoadQueryOutput();
Call(XmlILMethods.StartRoot);
}
public void CallWriteEndRoot() {
// Call XmlQueryOutput.WriteEndRoot
LoadQueryOutput();
Call(XmlILMethods.EndRoot);
}
public void CallWriteStartElement(GenerateNameType nameType, bool callChk) {
MethodInfo meth = null;
// If runtime checks need to be made,
if (callChk) {
// Then call XmlQueryOutput.WriteStartElement
switch (nameType) {
case GenerateNameType.LiteralLocalName: meth = XmlILMethods.StartElemLocName; break;
case GenerateNameType.LiteralName: meth = XmlILMethods.StartElemLitName; break;
case GenerateNameType.CopiedName: meth = XmlILMethods.StartElemCopyName; break;
case GenerateNameType.TagNameAndMappings: meth = XmlILMethods.StartElemMapName; break;
case GenerateNameType.TagNameAndNamespace: meth = XmlILMethods.StartElemNmspName; break;
case GenerateNameType.QName: meth = XmlILMethods.StartElemQName; break;
default: Debug.Assert(false, nameType + " is invalid here."); break;
}
}
else {
// Else call XmlQueryOutput.WriteStartElementUnchecked
switch (nameType) {
case GenerateNameType.LiteralLocalName: meth = XmlILMethods.StartElemLocNameUn; break;
case GenerateNameType.LiteralName: meth = XmlILMethods.StartElemLitNameUn; break;
default: Debug.Assert(false, nameType + " is invalid here."); break;
}
}
Call(meth);
}
public void CallWriteEndElement(GenerateNameType nameType, bool callChk) {
MethodInfo meth = null;
// If runtime checks need to be made,
if (callChk) {
// Then call XmlQueryOutput.WriteEndElement
meth = XmlILMethods.EndElemStackName;
}
else {
// Else call XmlQueryOutput.WriteEndElementUnchecked
switch (nameType) {
case GenerateNameType.LiteralLocalName: meth = XmlILMethods.EndElemLocNameUn; break;
case GenerateNameType.LiteralName: meth = XmlILMethods.EndElemLitNameUn; break;
default: Debug.Assert(false, nameType + " is invalid here."); break;
}
}
Call(meth);
}
public void CallStartElementContent() {
LoadQueryOutput();
Call(XmlILMethods.StartContentUn);
}
public void CallWriteStartAttribute(GenerateNameType nameType, bool callChk) {
MethodInfo meth = null;
// If runtime checks need to be made,
if (callChk) {
// Then call XmlQueryOutput.WriteStartAttribute
switch (nameType) {
case GenerateNameType.LiteralLocalName: meth = XmlILMethods.StartAttrLocName; break;
case GenerateNameType.LiteralName: meth = XmlILMethods.StartAttrLitName; break;
case GenerateNameType.CopiedName: meth = XmlILMethods.StartAttrCopyName; break;
case GenerateNameType.TagNameAndMappings: meth = XmlILMethods.StartAttrMapName; break;
case GenerateNameType.TagNameAndNamespace: meth = XmlILMethods.StartAttrNmspName; break;
case GenerateNameType.QName: meth = XmlILMethods.StartAttrQName; break;
default: Debug.Assert(false, nameType + " is invalid here."); break;
}
}
else {
// Else call XmlQueryOutput.WriteStartAttributeUnchecked
switch (nameType) {
case GenerateNameType.LiteralLocalName: meth = XmlILMethods.StartAttrLocNameUn; break;
case GenerateNameType.LiteralName: meth = XmlILMethods.StartAttrLitNameUn; break;
default: Debug.Assert(false, nameType + " is invalid here."); break;
}
}
Call(meth);
}
public void CallWriteEndAttribute(bool callChk) {
LoadQueryOutput();
// If runtime checks need to be made,
if (callChk) {
// Then call XmlQueryOutput.WriteEndAttribute
Call(XmlILMethods.EndAttr);
}
else {
// Else call XmlQueryOutput.WriteEndAttributeUnchecked
Call(XmlILMethods.EndAttrUn);
}
}
public void CallWriteNamespaceDecl(bool callChk) {
// If runtime checks need to be made,
if (callChk) {
// Then call XmlQueryOutput.WriteNamespaceDeclaration
Call(XmlILMethods.NamespaceDecl);
}
else {
// Else call XmlQueryOutput.WriteNamespaceDeclarationUnchecked
Call(XmlILMethods.NamespaceDeclUn);
}
}
public void CallWriteString(bool disableOutputEscaping, bool callChk) {
// If runtime checks need to be made,
if (callChk) {
// Then call XmlQueryOutput.WriteString, or XmlQueryOutput.WriteRaw
if (disableOutputEscaping)
Call(XmlILMethods.NoEntText);
else
Call(XmlILMethods.Text);
}
else {
// Else call XmlQueryOutput.WriteStringUnchecked, or XmlQueryOutput.WriteRawUnchecked
if (disableOutputEscaping)
Call(XmlILMethods.NoEntTextUn);
else
Call(XmlILMethods.TextUn);
}
}
public void CallWriteStartPI() {
Call(XmlILMethods.StartPI);
}
public void CallWriteEndPI() {
LoadQueryOutput();
Call(XmlILMethods.EndPI);
}
public void CallWriteStartComment() {
LoadQueryOutput();
Call(XmlILMethods.StartComment);
}
public void CallWriteEndComment() {
LoadQueryOutput();
Call(XmlILMethods.EndComment);
}
//-----------------------------------------------
// Item caching methods
//-----------------------------------------------
public void CallCacheCount(Type itemStorageType) {
XmlILStorageMethods meth = XmlILMethods.StorageMethods[itemStorageType];
Call(meth.IListCount);
}
public void CallCacheItem(Type itemStorageType) {
Call(XmlILMethods.StorageMethods[itemStorageType].IListItem);
}
//-----------------------------------------------
// XPathItem properties and methods
//-----------------------------------------------
public void CallValueAs(Type clrType) {
MethodInfo meth;
meth = XmlILMethods.StorageMethods[clrType].ValueAs;
if (meth == null) {
// Call (Type) item.ValueAs(Type, null)
LoadType(clrType);
Emit(OpCodes.Ldnull);
Call(XmlILMethods.ValueAsAny);
// Unbox or down-cast
TreatAs(typeof(object), clrType);
}
else {
// Call strongly typed ValueAs method
Call(meth);
}
}
//-----------------------------------------------
// XmlSortKeyAccumulator methods
//-----------------------------------------------
public void AddSortKey(XmlQueryType keyType) {
MethodInfo meth = null;
if (keyType == null) {
meth = XmlILMethods.SortKeyEmpty;
}
else {
Debug.Assert(keyType.IsAtomicValue, "Sort key must have atomic value type.");
switch (keyType.TypeCode) {
case XmlTypeCode.String: meth = XmlILMethods.SortKeyString; break;
case XmlTypeCode.Decimal: meth = XmlILMethods.SortKeyDecimal; break;
case XmlTypeCode.Integer: meth = XmlILMethods.SortKeyInteger; break;
case XmlTypeCode.Int: meth = XmlILMethods.SortKeyInt; break;
case XmlTypeCode.Boolean: meth = XmlILMethods.SortKeyInt; break;
case XmlTypeCode.Double: meth = XmlILMethods.SortKeyDouble; break;
case XmlTypeCode.DateTime: meth = XmlILMethods.SortKeyDateTime; break;
case XmlTypeCode.None:
// Empty sequence, so this path will never actually be taken
Emit(OpCodes.Pop);
meth = XmlILMethods.SortKeyEmpty;
break;
case XmlTypeCode.AnyAtomicType:
Debug.Assert(false, "Heterogenous sort key is not allowed.");
return;
default:
Debug.Assert(false, "Sorting over datatype " + keyType.TypeCode + " is not allowed.");
break;
}
}
Call(meth);
}
//-----------------------------------------------
// Debugging information output
//-----------------------------------------------
/// <summary>
/// Begin a new variable debugging scope.
/// </summary>
public void DebugStartScope() {
this.ilgen.BeginScope();
}
/// <summary>
/// End a new debugging scope.
/// </summary>
public void DebugEndScope() {
this.ilgen.EndScope();
}
/// <summary>
/// Correlate the current IL generation position with the current source position.
/// </summary>
public void DebugSequencePoint(ISourceLineInfo sourceInfo) {
Debug.Assert(this.isDebug && this.lastSourceInfo != null);
Debug.Assert(sourceInfo != null);
// When emitting sequence points, be careful to always follow two rules:
// 1. Never emit adjacent sequence points, as this messes up the debugger. We guarantee this by
// always emitting a Nop before every sequence point.
// 2. The runtime enforces a rule that BP sequence points can only appear at zero stack depth,
// or if a NOP instruction is placed before them. We guarantee this by always emitting a Nop
// before every sequence point.
// <spec>http://devdiv/Documents/Whidbey/CLR/CurrentSpecs/Debugging%20and%20Profiling/JIT-Determined%20Sequence%20Points.doc</spec>
Emit(OpCodes.Nop);
MarkSequencePoint(sourceInfo);
}
private string lastUriString = null;
private string lastFileName = null;
// SQLBUDT 278010: debugger does not work with network paths in uri format, like file://server/share/dir/file
private string GetFileName(ISourceLineInfo sourceInfo) {
string uriString = sourceInfo.Uri;
if ((object)uriString == (object)lastUriString) {
return lastFileName;
}
lastUriString = uriString;
lastFileName = SourceLineInfo.GetFileName(uriString);
return lastFileName;
}
private void MarkSequencePoint(ISourceLineInfo sourceInfo) {
Debug.Assert(this.module.EmitSymbols);
// Do not emit adjacent 0xfeefee sequence points, as that slows down stepping in the debugger
if (sourceInfo.IsNoSource && this.lastSourceInfo != null && this.lastSourceInfo.IsNoSource) {
return;
}
string sourceFile = GetFileName(sourceInfo);
#if DEBUG
if (XmlILTrace.IsEnabled) {
if (sourceInfo.IsNoSource)
this.writerDump.WriteLine("//[no source]");
else {
if (sourceFile != this.sourceFile) {
this.sourceFile = sourceFile;
this.writerDump.WriteLine("// Source File '{0}'", this.sourceFile);
}
this.writerDump.WriteLine("//[{0},{1} -- {2},{3}]", sourceInfo.Start.Line, sourceInfo.Start.Pos, sourceInfo.End.Line, sourceInfo.End.Pos);
}
}
#endif
ISymbolDocumentWriter symDoc = this.module.AddSourceDocument(sourceFile);
this.ilgen.MarkSequencePoint(symDoc, sourceInfo.Start.Line, sourceInfo.Start.Pos, sourceInfo.End.Line, sourceInfo.End.Pos);
this.lastSourceInfo = sourceInfo;
}
//-----------------------------------------------
// Pass through to ILGenerator
//-----------------------------------------------
public Label DefineLabel() {
Label lbl = this.ilgen.DefineLabel();
#if DEBUG
if (XmlILTrace.IsEnabled)
this.symbols.Add(lbl, ++this.lblNum);
#endif
return lbl;
}
public void MarkLabel(Label lbl) {
if (this.lastSourceInfo != null && !this.lastSourceInfo.IsNoSource) {
// Emit a "no source" sequence point, otherwise the debugger would show
// a wrong line if we jumped to this label from another place
DebugSequencePoint(SourceLineInfo.NoSource);
}
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine("Label {0}:", this.symbols[lbl]);
#endif
this.ilgen.MarkLabel(lbl);
}
public void Emit(OpCode opcode) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0}", opcode.Name);
#endif
this.ilgen.Emit(opcode);
}
public void Emit(OpCode opcode, byte byteVal) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, byteVal);
#endif
this.ilgen.Emit(opcode, byteVal);
}
public void Emit(OpCode opcode, ConstructorInfo constrInfo) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, constrInfo);
#endif
this.ilgen.Emit(opcode, constrInfo);
}
public void Emit(OpCode opcode, double dblVal) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, dblVal);
#endif
this.ilgen.Emit(opcode, dblVal);
}
public void Emit(OpCode opcode, float fltVal) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, fltVal);
#endif
this.ilgen.Emit(opcode, fltVal);
}
public void Emit(OpCode opcode, FieldInfo fldInfo) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, fldInfo.Name);
#endif
this.ilgen.Emit(opcode, fldInfo);
}
public void Emit(OpCode opcode, short shrtVal) {
Debug.Assert(opcode.OperandType == OperandType.ShortInlineI);
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, shrtVal);
#endif
this.ilgen.Emit(opcode, shrtVal);
}
public void Emit(OpCode opcode, int intVal) {
Debug.Assert(opcode.OperandType == OperandType.InlineI || opcode.OperandType == OperandType.InlineVar);
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, intVal);
#endif
this.ilgen.Emit(opcode, intVal);
}
public void Emit(OpCode opcode, long longVal) {
Debug.Assert(opcode.OperandType == OperandType.InlineI8);
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, longVal);
#endif
this.ilgen.Emit(opcode, longVal);
}
public void Emit(OpCode opcode, Label lblVal) {
Debug.Assert(!opcode.Equals(OpCodes.Br) && !opcode.Equals(OpCodes.Br_S), "Use EmitUnconditionalBranch and be careful not to emit unverifiable code.");
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} Label {1}", opcode.Name, this.symbols[lblVal]);
#endif
this.ilgen.Emit(opcode, lblVal);
}
public void Emit(OpCode opcode, Label[] arrLabels) {
#if DEBUG
if (XmlILTrace.IsEnabled) {
this.writerDump.Write(" {0, -10} (Label {1}", opcode.Name, arrLabels.Length != 0 ? this.symbols[arrLabels[0]].ToString() : "");
for (int i = 1; i < arrLabels.Length; i++) {
this.writerDump.Write(", Label {0}", this.symbols[arrLabels[i]]);
}
this.writerDump.WriteLine(")");
}
#endif
this.ilgen.Emit(opcode, arrLabels);
}
public void Emit(OpCode opcode, LocalBuilder locBldr) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1} ({2})", opcode.Name, this.symbols[locBldr], locBldr.LocalType.Name);
#endif
this.ilgen.Emit(opcode, locBldr);
}
public void Emit(OpCode opcode, MethodInfo methInfo) {
Debug.Assert(!opcode.Equals(OpCodes.Call) && !opcode.Equals(OpCodes.Callvirt), "Use Call so that debug information will be output correctly.");
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, methInfo.Name);
#endif
this.ilgen.Emit(opcode, methInfo);
}
public void Emit(OpCode opcode, sbyte sbyteVal) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, sbyteVal);
#endif
this.ilgen.Emit(opcode, sbyteVal);
}
public void Emit(OpCode opcode, string strVal) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} \"{1}\"", opcode.Name, strVal);
#endif
this.ilgen.Emit(opcode, strVal);
}
public void Emit(OpCode opcode, Type typVal) {
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} {1}", opcode.Name, typVal);
#endif
this.ilgen.Emit(opcode, typVal);
}
/// <summary>
/// Unconditional branch opcodes (OpCode.Br, OpCode.Br_S) can lead to unverifiable code in the following cases:
///
/// # DEAD CODE CASE
/// ldc_i4 1 # Stack depth == 1
/// br Label2
/// Label1:
/// nop # Dead code, so IL rules assume stack depth == 0. This causes a verification error,
/// # since next instruction has depth == 1
/// Label2:
/// pop # Stack depth == 1
/// ret
///
/// # LATE BRANCH CASE
/// ldc_i4 1 # Stack depth == 1
/// br Label2
/// Label1:
/// nop # Not dead code, but since branch comes from below, IL rules assume stack depth = 0.
/// # This causes a verification error, since next instruction has depth == 1
/// Label2:
/// pop # Stack depth == 1
/// ret
/// Label3:
/// br Label1 # Stack depth == 1
///
/// This method works around the above limitations by using Brtrue or Brfalse in the following way:
///
/// ldc_i4 1 # Since this test is always true, this is a way of creating a path to the code that
/// brtrue Label # follows the brtrue instruction.
///
/// ldc_i4 1 # Since this test is always false, this is a way of creating a path to the code that
/// brfalse Label # starts at Label.
///
/// 1. If opcode == Brtrue or Brtrue_S, then 1 will be pushed and brtrue instruction will be generated.
/// 2. If opcode == Brfalse or Brfalse_S, then 1 will be pushed and brfalse instruction will be generated.
/// 3. If opcode == Br or Br_S, then a br instruction will be generated.
/// </summary>
public void EmitUnconditionalBranch(OpCode opcode, Label lblTarget) {
if (!opcode.Equals(OpCodes.Br) && !opcode.Equals(OpCodes.Br_S)) {
Debug.Assert(opcode.Equals(OpCodes.Brtrue) || opcode.Equals(OpCodes.Brtrue_S) ||
opcode.Equals(OpCodes.Brfalse) || opcode.Equals(OpCodes.Brfalse_S));
Emit(OpCodes.Ldc_I4_1);
}
#if DEBUG
if (XmlILTrace.IsEnabled)
this.writerDump.WriteLine(" {0, -10} Label {1}", opcode.Name, this.symbols[lblTarget]);
#endif
this.ilgen.Emit(opcode, lblTarget);
if (this.lastSourceInfo != null && (opcode.Equals(OpCodes.Br) || opcode.Equals(OpCodes.Br_S))) {
// Emit a "no source" sequence point, otherwise the following label will be preceded
// with a dead Nop operation, which may lead to unverifiable code (SQLBUDT 423393).
// We are guaranteed not to emit adjacent sequence points because Br or Br_S
// instruction precedes this sequence point, and a Nop instruction precedes other
// sequence points.
MarkSequencePoint(SourceLineInfo.NoSource);
}
}
}
}
|