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
|
/* ****************************************************************************
*
* Copyright (c) Microsoft Corporation.
*
* This source code is subject to terms and conditions of the Microsoft Public License. A
* copy of the license can be found in the License.html file at the root of this distribution. If
* you cannot locate the Microsoft Public License, please send an email to
* dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
* by the terms of the Microsoft Public License.
*
* You must not remove this notice, or any other, from this software.
*
*
* ***************************************************************************/
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq.Expressions;
using System.Reflection;
using System.Reflection.Emit;
using System.Runtime.CompilerServices;
using Microsoft.Contracts;
using Microsoft.Scripting.Actions;
using Microsoft.Scripting.Runtime;
using Microsoft.Scripting.Utils;
using Microsoft.Scripting.Interpreter;
using System.Linq.Expressions.Compiler;
using AstUtils = Microsoft.Scripting.Ast.Utils;
using System.Collections;
using System.Diagnostics;
using System.ComponentModel;
namespace Microsoft.Scripting.Generation {
// TODO: keep this?
public delegate void ActionRef<T0, T1>(ref T0 arg0, ref T1 arg1);
public static class CompilerHelpers {
public static readonly MethodAttributes PublicStatic = MethodAttributes.Public | MethodAttributes.Static;
private static readonly MethodInfo _CreateInstanceMethod = typeof(ScriptingRuntimeHelpers).GetMethod("CreateInstance");
private static int _Counter; // for generating unique names for lambda methods
public static string[] GetArgumentNames(ParameterInfo[] parameterInfos) {
string[] ret = new string[parameterInfos.Length];
for (int i = 0; i < parameterInfos.Length; i++) ret[i] = parameterInfos[i].Name;
return ret;
}
public static Type[] GetTypesWithThis(MethodBase mi) {
Type[] types = ReflectionUtils.GetParameterTypes(mi.GetParameters());
if (IsStatic(mi)) {
return types;
}
// TODO (Spec#): do not specify <Type> type arg
return ArrayUtils.Insert<Type>(mi.DeclaringType, types);
}
public static Type GetReturnType(MethodBase mi) {
if (mi.IsConstructor) return mi.DeclaringType;
else return ((MethodInfo)mi).ReturnType;
}
public static int GetStaticNumberOfArgs(MethodBase method) {
if (IsStatic(method)) return method.GetParameters().Length;
return method.GetParameters().Length + 1;
}
public static bool IsParamArray(ParameterInfo parameter) {
return parameter.IsDefined(typeof(ParamArrayAttribute), false);
}
public static bool IsOutParameter(ParameterInfo pi) {
// not using IsIn/IsOut properties as they are not available in Silverlight:
return (pi.Attributes & (ParameterAttributes.Out | ParameterAttributes.In)) == ParameterAttributes.Out;
}
public static int GetOutAndByRefParameterCount(MethodBase method) {
int res = 0;
ParameterInfo[] pis = method.GetParameters();
for (int i = 0; i < pis.Length; i++) {
if (IsByRefParameter(pis[i])) res++;
}
return res;
}
/// <summary>
/// Returns <c>true</c> if the specified parameter is mandatory, i.e. is not optional and doesn't have a default value.
/// </summary>
public static bool IsMandatoryParameter(ParameterInfo pi) {
return (pi.Attributes & (ParameterAttributes.Optional | ParameterAttributes.HasDefault)) == 0;
}
public static bool HasDefaultValue(ParameterInfo pi) {
return (pi.Attributes & ParameterAttributes.HasDefault) != 0;
}
public static bool IsByRefParameter(ParameterInfo pi) {
// not using IsIn/IsOut properties as they are not available in Silverlight:
if (pi.ParameterType.IsByRef) return true;
return (pi.Attributes & (ParameterAttributes.Out)) == ParameterAttributes.Out;
}
public static bool ProhibitsNull(ParameterInfo parameter) {
return parameter.IsDefined(typeof(NotNullAttribute), false);
}
public static bool ProhibitsNullItems(ParameterInfo parameter) {
return parameter.IsDefined(typeof(NotNullItemsAttribute), false);
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
public static object GetMissingValue(Type type) {
ContractUtils.RequiresNotNull(type, "type");
if (type.IsByRef) type = type.GetElementType();
if (type.IsEnum) return Activator.CreateInstance(type);
switch (Type.GetTypeCode(type)) {
default:
case TypeCode.Object:
// struct
if (type.IsSealed && type.IsValueType) {
return Activator.CreateInstance(type);
} else if (type == typeof(object)) {
// parameter of type object receives the actual Missing value
return Missing.Value;
} else if (!type.IsValueType) {
return null;
} else {
throw Error.CantCreateDefaultTypeFor(type);
}
case TypeCode.Empty:
case TypeCode.DBNull:
case TypeCode.String:
return null;
case TypeCode.Boolean: return false;
case TypeCode.Char: return '\0';
case TypeCode.SByte: return (sbyte)0;
case TypeCode.Byte: return (byte)0;
case TypeCode.Int16: return (short)0;
case TypeCode.UInt16: return (ushort)0;
case TypeCode.Int32: return (int)0;
case TypeCode.UInt32: return (uint)0;
case TypeCode.Int64: return 0L;
case TypeCode.UInt64: return 0UL;
case TypeCode.Single: return 0.0f;
case TypeCode.Double: return 0.0D;
case TypeCode.Decimal: return (decimal)0;
case TypeCode.DateTime: return DateTime.MinValue;
}
}
public static bool IsStatic(MethodBase mi) {
return mi.IsConstructor || mi.IsStatic;
}
public static bool IsExtension(MemberInfo memberInfo) {
return memberInfo.IsDefined(typeof(ExtensionAttribute), false);
}
/// <summary>
/// True if the MethodBase is method which is going to construct an object
/// </summary>
public static bool IsConstructor(MethodBase mb) {
if (mb.IsConstructor) {
return true;
}
if (mb.IsGenericMethod) {
MethodInfo mi = mb as MethodInfo;
if (mi.GetGenericMethodDefinition() == _CreateInstanceMethod) {
return true;
}
}
return false;
}
public static T[] MakeRepeatedArray<T>(T item, int count) {
T[] ret = new T[count];
for (int i = 0; i < count; i++) ret[i] = item;
return ret;
}
/// <summary>
/// A helper routine to check if a type can be treated as sealed - i.e. there
/// can never be a subtype of this given type. This corresponds to a type
/// that is either declared "Sealed" or is a ValueType and thus unable to be
/// extended.
/// </summary>
public static bool IsSealed(Type type) {
return type.IsSealed || type.IsValueType;
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
public static Operators OperatorToReverseOperator(Operators op) {
switch (op) {
case Operators.LessThan: return Operators.GreaterThan;
case Operators.LessThanOrEqual: return Operators.GreaterThanOrEqual;
case Operators.GreaterThan: return Operators.LessThan;
case Operators.GreaterThanOrEqual: return Operators.LessThanOrEqual;
case Operators.Equals: return Operators.Equals;
case Operators.NotEquals: return Operators.NotEquals;
case Operators.DivMod: return Operators.ReverseDivMod;
case Operators.ReverseDivMod: return Operators.DivMod;
#region Generated Operator Reversal
// *** BEGIN GENERATED CODE ***
// generated by function: operator_reversal from: generate_ops.py
case Operators.Add: return Operators.ReverseAdd;
case Operators.ReverseAdd: return Operators.Add;
case Operators.Subtract: return Operators.ReverseSubtract;
case Operators.ReverseSubtract: return Operators.Subtract;
case Operators.Power: return Operators.ReversePower;
case Operators.ReversePower: return Operators.Power;
case Operators.Multiply: return Operators.ReverseMultiply;
case Operators.ReverseMultiply: return Operators.Multiply;
case Operators.FloorDivide: return Operators.ReverseFloorDivide;
case Operators.ReverseFloorDivide: return Operators.FloorDivide;
case Operators.Divide: return Operators.ReverseDivide;
case Operators.ReverseDivide: return Operators.Divide;
case Operators.TrueDivide: return Operators.ReverseTrueDivide;
case Operators.ReverseTrueDivide: return Operators.TrueDivide;
case Operators.Mod: return Operators.ReverseMod;
case Operators.ReverseMod: return Operators.Mod;
case Operators.LeftShift: return Operators.ReverseLeftShift;
case Operators.ReverseLeftShift: return Operators.LeftShift;
case Operators.RightShift: return Operators.ReverseRightShift;
case Operators.ReverseRightShift: return Operators.RightShift;
case Operators.BitwiseAnd: return Operators.ReverseBitwiseAnd;
case Operators.ReverseBitwiseAnd: return Operators.BitwiseAnd;
case Operators.BitwiseOr: return Operators.ReverseBitwiseOr;
case Operators.ReverseBitwiseOr: return Operators.BitwiseOr;
case Operators.ExclusiveOr: return Operators.ReverseExclusiveOr;
case Operators.ReverseExclusiveOr: return Operators.ExclusiveOr;
// *** END GENERATED CODE ***
#endregion
}
return Operators.None;
}
public static Operators InPlaceOperatorToOperator(Operators op) {
switch (op) {
case Operators.InPlaceAdd: return Operators.Add;
case Operators.InPlaceBitwiseAnd: return Operators.BitwiseAnd;
case Operators.InPlaceBitwiseOr: return Operators.BitwiseOr;
case Operators.InPlaceDivide: return Operators.Divide;
case Operators.InPlaceFloorDivide: return Operators.FloorDivide;
case Operators.InPlaceLeftShift: return Operators.LeftShift;
case Operators.InPlaceMod: return Operators.Mod;
case Operators.InPlaceMultiply: return Operators.Multiply;
case Operators.InPlacePower: return Operators.Power;
case Operators.InPlaceRightShift: return Operators.RightShift;
case Operators.InPlaceSubtract: return Operators.Subtract;
case Operators.InPlaceTrueDivide: return Operators.TrueDivide;
case Operators.InPlaceExclusiveOr: return Operators.ExclusiveOr;
case Operators.InPlaceRightShiftUnsigned: return Operators.RightShiftUnsigned;
default: return Operators.None;
}
}
public static bool IsComparisonOperator(ExpressionType op) {
switch (op) {
case ExpressionType.LessThan: return true;
case ExpressionType.LessThanOrEqual: return true;
case ExpressionType.GreaterThan: return true;
case ExpressionType.GreaterThanOrEqual: return true;
case ExpressionType.Equal: return true;
case ExpressionType.NotEqual: return true;
}
return false;
}
/// <summary>
/// Returns the System.Type for any object, including null. The type of null
/// is represented by None.Type and all other objects just return the
/// result of Object.GetType
/// </summary>
public static Type GetType(object obj) {
if (obj == null) {
return typeof(DynamicNull);
}
return obj.GetType();
}
/// <summary>
/// Simply returns a Type[] from calling GetType on each element of args.
/// </summary>
public static Type[] GetTypes(object[] args) {
Type[] types = new Type[args.Length];
for (int i = 0; i < args.Length; i++) {
types[i] = GetType(args[i]);
}
return types;
}
internal static Type[] GetTypes(IList<Expression> args) {
Type[] types = new Type[args.Count];
for (int i = 0, n = types.Length; i < n; i++) {
types[i] = args[i].Type;
}
return types;
}
/// <summary>
/// EMITTED
/// Used by default method binder to check types of splatted arguments.
/// </summary>
public static bool TypesEqual(IList args, int start, Type[] types) {
for (int i = 0; i < types.Length; i++) {
object arg = args[start + i];
if (types[i] != (arg != null ? arg.GetType() : null)) {
return false;
}
}
return true;
}
public static bool CanOptimizeMethod(MethodBase method) {
if (method.ContainsGenericParameters ||
method.IsProtected() ||
method.IsPrivate ||
!method.DeclaringType.IsVisible) {
return false;
}
return true;
}
public static MethodInfo TryGetCallableMethod(MethodInfo method) {
return TryGetCallableMethod(method.ReflectedType, method);
}
/// <summary>
/// Given a MethodInfo which may be declared on a non-public type this attempts to
/// return a MethodInfo which will dispatch to the original MethodInfo but is declared
/// on a public type.
///
/// Returns the original method if the method if a public version cannot be found.
/// </summary>
public static MethodInfo TryGetCallableMethod(Type targetType, MethodInfo method) {
if (method.DeclaringType == null || method.DeclaringType.IsVisible) {
return method;
}
// first try and get it from the base type we're overriding...
MethodInfo baseMethod = method.GetBaseDefinition();
if (baseMethod.DeclaringType.IsVisible) return baseMethod;
if (baseMethod.DeclaringType.IsInterface) return baseMethod;
// maybe we can get it from an interface on the type this
// method came from...
Type[] interfaces = targetType.GetInterfaces();
foreach (Type iface in interfaces) {
InterfaceMapping mapping = targetType.GetInterfaceMap(iface);
for (int i = 0; i < mapping.TargetMethods.Length; i++) {
MethodInfo targetMethod = mapping.TargetMethods[i];
if (targetMethod != null && targetMethod.MethodHandle == method.MethodHandle) {
return mapping.InterfaceMethods[i];
}
}
}
return baseMethod;
}
/// <summary>
/// Non-public types can have public members that we find when calling type.GetMember(...). This
/// filters out the non-visible members by attempting to resolve them to the correct visible type.
///
/// If no correct visible type can be found then the member is not visible and we won't call it.
/// </summary>
public static MemberInfo[] FilterNonVisibleMembers(Type type, MemberInfo[] foundMembers) {
if (!type.IsVisible && foundMembers.Length > 0) {
// need to remove any members that we can't get through other means
List<MemberInfo> foundVisible = null;
for (int i = 0; i < foundMembers.Length; i++) {
MemberInfo curMember = foundMembers[i];
MemberInfo visible = TryGetVisibleMember(curMember);
if (visible != null) {
if (foundVisible == null) {
foundVisible = new List<MemberInfo>();
}
foundVisible.Add(visible);
}
}
if (foundVisible != null) {
foundMembers = foundVisible.ToArray();
} else {
foundMembers = new MemberInfo[0];
}
}
return foundMembers;
}
public static MemberInfo TryGetVisibleMember(MemberInfo curMember) {
MethodInfo mi;
MemberInfo visible = null;
switch (curMember.MemberType) {
case MemberTypes.Method:
mi = TryGetCallableMethod((MethodInfo)curMember);
if (CompilerHelpers.IsVisible(mi)) {
visible = mi;
}
break;
case MemberTypes.Property:
PropertyInfo pi = (PropertyInfo)curMember;
mi = TryGetCallableMethod(pi.GetGetMethod() ?? pi.GetSetMethod());
if (CompilerHelpers.IsVisible(mi)) {
visible = mi.DeclaringType.GetProperty(pi.Name);
}
break;
case MemberTypes.Event:
EventInfo ei = (EventInfo)curMember;
mi = TryGetCallableMethod(ei.GetAddMethod() ?? ei.GetRemoveMethod() ?? ei.GetRaiseMethod());
if (CompilerHelpers.IsVisible(mi)) {
visible = mi.DeclaringType.GetEvent(ei.Name);
}
break;
// all others can't be exposed out this way
}
return visible;
}
/// <summary>
/// Sees if two MemberInfos point to the same underlying construct in IL. This
/// ignores the ReflectedType property which exists on MemberInfos which
/// causes direct comparisons to be false even if they are the same member.
/// </summary>
public static bool MemberEquals(this MemberInfo self, MemberInfo other) {
if ((self == null) != (other == null)) {
// one null, the other isn't.
return false;
} else if (self == null) {
// both null
return true;
}
if (self.MemberType != other.MemberType) {
return false;
}
switch (self.MemberType) {
case MemberTypes.Field:
return ((FieldInfo)self).FieldHandle.Equals(((FieldInfo)other).FieldHandle);
case MemberTypes.Method:
return ((MethodInfo)self).MethodHandle.Equals(((MethodInfo)other).MethodHandle);
case MemberTypes.Constructor:
return ((ConstructorInfo)self).MethodHandle.Equals(((ConstructorInfo)other).MethodHandle);
case MemberTypes.NestedType:
case MemberTypes.TypeInfo:
return ((Type)self).TypeHandle.Equals(((Type)other).TypeHandle);
case MemberTypes.Event:
case MemberTypes.Property:
default:
return
((MemberInfo)self).Module == ((MemberInfo)other).Module &&
((MemberInfo)self).MetadataToken == ((MemberInfo)other).MetadataToken;
}
}
/// <summary>
/// Given a MethodInfo which may be declared on a non-public type this attempts to
/// return a MethodInfo which will dispatch to the original MethodInfo but is declared
/// on a public type.
///
/// Throws InvalidOperationException if the method cannot be obtained.
/// </summary>
public static MethodInfo GetCallableMethod(MethodInfo method, bool privateBinding) {
MethodInfo callable = TryGetCallableMethod(method);
if (privateBinding || IsVisible(callable)) {
return callable;
}
throw Error.NoCallableMethods(method.DeclaringType, method.Name);
}
public static bool IsVisible(MethodBase info) {
return info.IsPublic && (info.DeclaringType == null || info.DeclaringType.IsVisible);
}
public static bool IsVisible(FieldInfo info) {
return info.IsPublic && (info.DeclaringType == null || info.DeclaringType.IsVisible);
}
public static bool IsProtected(this MethodBase info) {
return info.IsFamily || info.IsFamilyOrAssembly;
}
public static bool IsProtected(this FieldInfo info) {
return info.IsFamily || info.IsFamilyOrAssembly;
}
public static bool IsProtected(this Type type) {
return type.IsNestedFamily || type.IsNestedFamORAssem;
}
public static Type GetVisibleType(object value) {
return GetVisibleType(GetType(value));
}
public static Type GetVisibleType(Type t) {
while (!t.IsVisible) {
t = t.BaseType;
}
return t;
}
public static MethodBase[] GetConstructors(Type t, bool privateBinding) {
return GetConstructors(t, privateBinding, false);
}
public static MethodBase[] GetConstructors(Type t, bool privateBinding, bool includeProtected) {
if (t.IsArray) {
// The JIT verifier doesn't like new int[](3) even though it appears as a ctor.
// We could do better and return newarr in the future.
return new MethodBase[] { GetArrayCtor(t) };
}
BindingFlags bf = BindingFlags.Instance | BindingFlags.Public;
if (privateBinding || includeProtected) {
bf |= BindingFlags.NonPublic;
}
ConstructorInfo[] ci = t.GetConstructors(bf);
// leave in protected ctors, even if we're not in private binding mode.
if (!privateBinding && includeProtected) {
ci = FilterConstructorsToPublicAndProtected(ci);
}
if (t.IsValueType
#if !SILVERLIGHT
&& t != typeof(ArgIterator)
#endif
) {
// structs don't define a parameterless ctor, add a generic method for that.
return ArrayUtils.Insert<MethodBase>(GetStructDefaultCtor(t), ci);
}
return ci;
}
public static ConstructorInfo[] FilterConstructorsToPublicAndProtected(ConstructorInfo[] ci) {
List<ConstructorInfo> finalInfos = null;
for (int i = 0; i < ci.Length; i++) {
ConstructorInfo info = ci[i];
if (!info.IsPublic && !info.IsProtected()) {
if (finalInfos == null) {
finalInfos = new List<ConstructorInfo>();
for (int j = 0; j < i; j++) {
finalInfos.Add(ci[j]);
}
}
} else if (finalInfos != null) {
finalInfos.Add(ci[i]);
}
}
if (finalInfos != null) {
ci = finalInfos.ToArray();
}
return ci;
}
private static MethodBase GetStructDefaultCtor(Type t) {
return typeof(ScriptingRuntimeHelpers).GetMethod("CreateInstance").MakeGenericMethod(t);
}
private static MethodBase GetArrayCtor(Type t) {
return typeof(ScriptingRuntimeHelpers).GetMethod("CreateArray").MakeGenericMethod(t.GetElementType());
}
#region Type Conversions
public static MethodInfo GetImplicitConverter(Type fromType, Type toType) {
return GetConverter(fromType, fromType, toType, "op_Implicit") ?? GetConverter(toType, fromType, toType, "op_Implicit");
}
public static MethodInfo GetExplicitConverter(Type fromType, Type toType) {
return GetConverter(fromType, fromType, toType, "op_Explicit") ?? GetConverter(toType, fromType, toType, "op_Explicit");
}
private static MethodInfo GetConverter(Type type, Type fromType, Type toType, string opMethodName) {
foreach (MethodInfo mi in type.GetMember(opMethodName, BindingFlags.Public | BindingFlags.Static)) {
if ((mi.DeclaringType == null || mi.DeclaringType.IsVisible) && mi.IsPublic &&
mi.ReturnType == toType && mi.GetParameters()[0].ParameterType.IsAssignableFrom(fromType)) {
return mi;
}
}
return null;
}
public static bool TryImplicitConversion(Object value, Type to, out object result) {
if (CompilerHelpers.TryImplicitConvert(value, to, to.GetMember("op_Implicit"), out result)) {
return true;
}
Type curType = CompilerHelpers.GetType(value);
do {
if (CompilerHelpers.TryImplicitConvert(value, to, curType.GetMember("op_Implicit"), out result)) {
return true;
}
curType = curType.BaseType;
} while (curType != null);
return false;
}
private static bool TryImplicitConvert(Object value, Type to, MemberInfo[] implicitConv, out object result) {
foreach (MethodInfo mi in implicitConv) {
if (to.IsValueType == mi.ReturnType.IsValueType && to.IsAssignableFrom(mi.ReturnType)) {
if (mi.IsStatic) {
result = mi.Invoke(null, new object[] { value });
} else {
result = mi.Invoke(value, ArrayUtils.EmptyObjects);
}
return true;
}
}
result = null;
return false;
}
public static bool IsStrongBox(object target) {
Type t = CompilerHelpers.GetType(target);
return IsStrongBox(t);
}
public static bool IsStrongBox(Type t) {
return t.IsGenericType && t.GetGenericTypeDefinition() == typeof(StrongBox<>);
}
/// <summary>
/// Returns a value which indicates failure when a OldConvertToAction of ImplicitTry or
/// ExplicitTry.
/// </summary>
public static Expression GetTryConvertReturnValue(Type type) {
Expression res;
if (type.IsInterface || type.IsClass || (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>))) {
res = AstUtils.Constant(null, type);
} else {
res = AstUtils.Constant(Activator.CreateInstance(type));
}
return res;
}
public static bool HasTypeConverter(Type fromType, Type toType) {
#if SILVERLIGHT
return false;
#else
TypeConverter _;
return TryGetTypeConverter(fromType, toType, out _);
#endif
}
public static bool TryApplyTypeConverter(object value, Type toType, out object result) {
#if SILVERLIGHT
result = value;
return false;
#else
TypeConverter converter;
if (value != null && CompilerHelpers.TryGetTypeConverter(value.GetType(), toType, out converter)) {
result = converter.ConvertFrom(value);
return true;
} else {
result = value;
return false;
}
#endif
}
#if !SILVERLIGHT
public static bool TryGetTypeConverter(Type fromType, Type toType, out TypeConverter converter) {
ContractUtils.RequiresNotNull(fromType, "fromType");
ContractUtils.RequiresNotNull(toType, "toType");
// try available type conversions...
foreach (TypeConverterAttribute tca in toType.GetCustomAttributes(typeof(TypeConverterAttribute), true)) {
try {
converter = Activator.CreateInstance(Type.GetType(tca.ConverterTypeName)) as TypeConverter;
} catch (Exception) {
converter = null;
}
if (converter != null && converter.CanConvertFrom(fromType)) {
return true;
}
}
converter = null;
return false;
}
#endif
#endregion
public static MethodBase[] GetMethodTargets(object obj) {
Type t = CompilerHelpers.GetType(obj);
if (typeof(Delegate).IsAssignableFrom(t)) {
MethodInfo mi = t.GetMethod("Invoke");
return new MethodBase[] { mi };
} else if (typeof(BoundMemberTracker).IsAssignableFrom(t)) {
BoundMemberTracker bmt = obj as BoundMemberTracker;
if (bmt.BoundTo.MemberType == TrackerTypes.Method) {
}
} else if (typeof(MethodGroup).IsAssignableFrom(t)) {
} else if (typeof(MemberGroup).IsAssignableFrom(t)) {
} else {
return MakeCallSignatureForCallableObject(t);
}
return null;
}
private static MethodBase[] MakeCallSignatureForCallableObject(Type t) {
List<MethodBase> res = new List<MethodBase>();
MemberInfo[] members = t.GetMember("Call");
foreach (MemberInfo mi in members) {
if (mi.MemberType == MemberTypes.Method) {
MethodInfo method = mi as MethodInfo;
if (method.IsSpecialName) {
res.Add(method);
}
}
}
return res.ToArray();
}
public static Type[] GetSiteTypes(IList<Expression> arguments, Type returnType) {
int count = arguments.Count;
Type[] ret = new Type[count + 1];
for (int i = 0; i < count; i++) {
ret[i] = arguments[i].Type;
}
ret[count] = returnType;
NonNullType.AssertInitialized(ret);
return ret;
}
public static Type[] GetExpressionTypes(Expression[] expressions) {
ContractUtils.RequiresNotNull(expressions, "expressions");
Type[] res = new Type[expressions.Length];
for (int i = 0; i < res.Length; i++) {
ContractUtils.RequiresNotNull(expressions[i], "expressions[i]");
res[i] = expressions[i].Type;
}
return res;
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public static Type GetReturnType(LambdaExpression lambda) {
return lambda.Type.GetMethod("Invoke").ReturnType;
}
public static Type MakeCallSiteType(params Type[] types) {
return typeof(CallSite<>).MakeGenericType(DelegateHelpers.MakeDelegate(types));
}
public static Type MakeCallSiteDelegateType(Type[] types) {
return DelegateHelpers.MakeDelegate(types);
}
/// <summary>
/// Creates an interpreted delegate for the lambda.
/// </summary>
/// <param name="lambda">The lambda to compile.</param>
/// <returns>A delegate which can interpret the lambda.</returns>
public static Delegate LightCompile(this LambdaExpression lambda) {
return new LightCompiler().CompileTop(lambda).CreateDelegate();
}
/// <summary>
/// Creates an interpreted delegate for the lambda.
/// </summary>
/// <typeparam name="T">The lambda's delegate type.</typeparam>
/// <param name="lambda">The lambda to compile.</param>
/// <returns>A delegate which can interpret the lambda.</returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public static T LightCompile<T>(this Expression<T> lambda) {
return (T)(object)LightCompile((LambdaExpression)lambda);
}
/// <summary>
/// Compiles the lambda into a method definition.
/// </summary>
/// <param name="lambda">the lambda to compile</param>
/// <param name="method">A <see cref="MethodBuilder"/> which will be used to hold the lambda's IL.</param>
/// <param name="emitDebugSymbols">A parameter that indicates if debugging information should be emitted to a PDB symbol store.</param>
public static void CompileToMethod(this LambdaExpression lambda, MethodBuilder method, bool emitDebugSymbols) {
if (emitDebugSymbols) {
var module = method.Module as ModuleBuilder;
ContractUtils.Requires(module != null, "method", "MethodBuilder does not have a valid ModuleBuilder");
lambda.CompileToMethod(method, DebugInfoGenerator.CreatePdbGenerator());
} else {
lambda.CompileToMethod(method);
}
}
/// <summary>
/// Compiles the LambdaExpression.
///
/// If the lambda is compiled with emitDebugSymbols, it will be
/// generated into a TypeBuilder. Otherwise, this method is the same as
/// calling LambdaExpression.Compile()
///
/// This is a workaround for a CLR limitiation: DynamicMethods cannot
/// have debugging information.
/// </summary>
/// <param name="lambda">the lambda to compile</param>
/// <param name="emitDebugSymbols">true to generate a debuggable method, false otherwise</param>
/// <returns>the compiled delegate</returns>
public static T Compile<T>(this Expression<T> lambda, bool emitDebugSymbols) {
return emitDebugSymbols ? CompileToMethod(lambda, DebugInfoGenerator.CreatePdbGenerator(), true) : lambda.Compile();
}
/// <summary>
/// Compiles the LambdaExpression, emitting it into a new type, and
/// optionally making it debuggable.
///
/// This is a workaround for a CLR limitiation: DynamicMethods cannot
/// have debugging information.
/// </summary>
/// <param name="lambda">the lambda to compile</param>
/// <param name="debugInfoGenerator">Debugging information generator used by the compiler to mark sequence points and annotate local variables.</param>
/// <param name="emitDebugSymbols">True if debug symbols (PDBs) are emitted by the <paramref name="debugInfoGenerator"/>.</param>
/// <returns>the compiled delegate</returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public static T CompileToMethod<T>(Expression<T> lambda, DebugInfoGenerator debugInfoGenerator, bool emitDebugSymbols) {
return (T)(object)CompileToMethod((LambdaExpression)lambda, debugInfoGenerator, emitDebugSymbols);
}
public static Delegate CompileToMethod(LambdaExpression lambda, DebugInfoGenerator debugInfoGenerator, bool emitDebugSymbols) {
string methodName = String.IsNullOrEmpty(lambda.Name) ? GetUniqueMethodName() : lambda.Name;
var type = Snippets.Shared.DefineType(methodName, typeof(object), false, emitDebugSymbols).TypeBuilder;
var rewriter = new BoundConstantsRewriter(type);
lambda = (LambdaExpression)rewriter.Visit(lambda);
//Create a unique method name when the lambda doesn't have a name or the name is empty.
var method = type.DefineMethod(methodName, CompilerHelpers.PublicStatic);
lambda.CompileToMethod(method, debugInfoGenerator);
var finished = type.CreateType();
rewriter.InitializeFields(finished);
return Delegate.CreateDelegate(lambda.Type, finished.GetMethod(method.Name));
}
public static string GetUniqueMethodName() {
return "lambda_method" + "$" + System.Threading.Interlocked.Increment(ref _Counter);
}
// Matches ILGen.TryEmitConstant
public static bool CanEmitConstant(object value, Type type) {
if (value == null || CanEmitILConstant(type)) {
return true;
}
Type t = value as Type;
if (t != null && ILGen.ShouldLdtoken(t)) {
return true;
}
MethodBase mb = value as MethodBase;
if (mb != null && ILGen.ShouldLdtoken(mb)) {
return true;
}
return false;
}
// Matches ILGen.TryEmitILConstant
internal static bool CanEmitILConstant(Type type) {
switch (Type.GetTypeCode(type)) {
case TypeCode.Boolean:
case TypeCode.SByte:
case TypeCode.Int16:
case TypeCode.Int32:
case TypeCode.Int64:
case TypeCode.Single:
case TypeCode.Double:
case TypeCode.Char:
case TypeCode.Byte:
case TypeCode.UInt16:
case TypeCode.UInt32:
case TypeCode.UInt64:
case TypeCode.Decimal:
case TypeCode.String:
return true;
}
return false;
}
/// <summary>
/// Reduces the provided DynamicExpression into site.Target(site, *args).
/// </summary>
public static Expression Reduce(DynamicExpression node) {
// Store the callsite as a constant
var siteConstant = AstUtils.Constant(CallSite.Create(node.DelegateType, node.Binder));
// ($site = siteExpr).Target.Invoke($site, *args)
var site = Expression.Variable(siteConstant.Type, "$site");
return Expression.Block(
new[] { site },
Expression.Call(
Expression.Field(
Expression.Assign(site, siteConstant),
siteConstant.Type.GetField("Target")
),
node.DelegateType.GetMethod("Invoke"),
ArrayUtils.Insert(site, node.Arguments)
)
);
}
/// <summary>
/// Removes all live objects and places them in static fields of a type.
/// </summary>
private sealed class BoundConstantsRewriter : ExpressionVisitor {
private readonly Dictionary<object, FieldBuilder> _fields = new Dictionary<object, FieldBuilder>(ReferenceEqualityComparer<object>.Instance);
private readonly TypeBuilder _type;
internal BoundConstantsRewriter(TypeBuilder type) {
_type = type;
}
internal void InitializeFields(Type type) {
foreach (var pair in _fields) {
type.GetField(pair.Value.Name).SetValue(null, pair.Key);
}
}
protected override Expression VisitConstant(ConstantExpression node) {
if (CanEmitConstant(node.Value, node.Type)) {
return node;
}
FieldBuilder field;
if (!_fields.TryGetValue(node.Value, out field)) {
field = _type.DefineField(
"$constant" + _fields.Count,
GetVisibleType(node.Value.GetType()),
FieldAttributes.Public | FieldAttributes.Static
);
_fields.Add(node.Value, field);
}
Expression result = Expression.Field(null, field);
if (result.Type != node.Type) {
result = Expression.Convert(result, node.Type);
}
return result;
}
protected override Expression VisitDynamic(DynamicExpression node) {
return Visit(Reduce(node));
}
}
}
}
|