コード例 #1
0
ファイル: TypeAnalysis.cs プロジェクト: petr-k/ILSpy
 TypeReference DoInferTypeForExpression(ILExpression expr, TypeReference expectedType, bool forceInferChildren = false)
 {
     switch (expr.Code) {
         case ILCode.LogicNot:
             if (forceInferChildren) {
                 InferTypeForExpression(expr.Arguments.Single(), typeSystem.Boolean);
             }
             return typeSystem.Boolean;
         case ILCode.LogicAnd:
         case ILCode.LogicOr:
             if (forceInferChildren) {
                 InferTypeForExpression(expr.Arguments[0], typeSystem.Boolean);
                 InferTypeForExpression(expr.Arguments[0], typeSystem.Boolean);
             }
             return typeSystem.Boolean;
     }
     switch ((Code)expr.Code) {
             #region Variable load/store
         case Code.Stloc:
             {
                 ILVariable v = (ILVariable)expr.Operand;
                 if (forceInferChildren || v.Type == null) {
                     TypeReference t = InferTypeForExpression(expr.Arguments.Single(), ((ILVariable)expr.Operand).Type);
                     if (v.Type == null)
                         v.Type = t;
                 }
                 return v.Type;
             }
         case Code.Ldloc:
             {
                 ILVariable v = (ILVariable)expr.Operand;
                 if (v.Type == null) {
                     v.Type = expectedType;
                     // Mark the variable as inferred. This is necessary because expectedType might be null
                     // (e.g. the only use of an arg_*-Variable is a pop statement),
                     // so we can't tell from v.Type whether it was already inferred.
                     inferredVariables.Add(v);
                 }
                 return v.Type;
             }
         case Code.Starg:
             if (forceInferChildren)
                 InferTypeForExpression(expr.Arguments.Single(), ((ParameterReference)expr.Operand).ParameterType);
             return null;
         case Code.Ldarg:
             return ((ParameterReference)expr.Operand).ParameterType;
         case Code.Ldloca:
             return new ByReferenceType(((ILVariable)expr.Operand).Type);
         case Code.Ldarga:
             return new ByReferenceType(((ParameterReference)expr.Operand).ParameterType);
             #endregion
             #region Call / NewObj
         case Code.Call:
         case Code.Callvirt:
             {
                 MethodReference method = (MethodReference)expr.Operand;
                 if (forceInferChildren) {
                     for (int i = 0; i < expr.Arguments.Count; i++) {
                         if (i == 0 && method.HasThis) {
                             Instruction constraint = expr.GetPrefix(Code.Constrained);
                             if (constraint != null)
                                 InferTypeForExpression(expr.Arguments[i], new ByReferenceType((TypeReference)constraint.Operand));
                             else
                                 InferTypeForExpression(expr.Arguments[i], method.DeclaringType);
                         } else {
                             InferTypeForExpression(expr.Arguments[i], SubstituteTypeArgs(method.Parameters[method.HasThis ? i - 1: i].ParameterType, method));
                         }
                     }
                 }
                 return SubstituteTypeArgs(method.ReturnType, method);
             }
         case Code.Newobj:
             {
                 MethodReference ctor = (MethodReference)expr.Operand;
                 if (forceInferChildren) {
                     for (int i = 0; i < ctor.Parameters.Count; i++) {
                         InferTypeForExpression(expr.Arguments[i], SubstituteTypeArgs(ctor.Parameters[i].ParameterType, ctor));
                     }
                 }
                 return ctor.DeclaringType;
             }
             #endregion
             #region Load/Store Fields
         case Code.Ldfld:
             if (forceInferChildren)
                 InferTypeForExpression(expr.Arguments[0], ((FieldReference)expr.Operand).DeclaringType);
             return GetFieldType((FieldReference)expr.Operand);
         case Code.Ldsfld:
             return GetFieldType((FieldReference)expr.Operand);
         case Code.Ldflda:
         case Code.Ldsflda:
             return new ByReferenceType(GetFieldType((FieldReference)expr.Operand));
         case Code.Stfld:
             if (forceInferChildren) {
                 InferTypeForExpression(expr.Arguments[0], ((FieldReference)expr.Operand).DeclaringType);
                 InferTypeForExpression(expr.Arguments[1], GetFieldType((FieldReference)expr.Operand));
             }
             return null;
         case Code.Stsfld:
             if (forceInferChildren)
                 InferTypeForExpression(expr.Arguments[0], GetFieldType((FieldReference)expr.Operand));
             return null;
             #endregion
             #region Reference/Pointer instructions
         case Code.Ldind_I:
         case Code.Ldind_I1:
         case Code.Ldind_I2:
         case Code.Ldind_I4:
         case Code.Ldind_I8:
         case Code.Ldind_U1:
         case Code.Ldind_U2:
         case Code.Ldind_U4:
         case Code.Ldind_R4:
         case Code.Ldind_R8:
         case Code.Ldind_Ref:
             return UnpackPointer(InferTypeForExpression(expr.Arguments[0], null));
         case Code.Stind_I1:
         case Code.Stind_I2:
         case Code.Stind_I4:
         case Code.Stind_I8:
         case Code.Stind_R4:
         case Code.Stind_R8:
         case Code.Stind_I:
         case Code.Stind_Ref:
             if (forceInferChildren) {
                 TypeReference elementType = UnpackPointer(InferTypeForExpression(expr.Arguments[0], null));
                 InferTypeForExpression(expr.Arguments[1], elementType);
             }
             return null;
         case Code.Ldobj:
             return (TypeReference)expr.Operand;
         case Code.Stobj:
             if (forceInferChildren) {
                 InferTypeForExpression(expr.Arguments[1], (TypeReference)expr.Operand);
             }
             return null;
         case Code.Initobj:
             return null;
         case Code.Localloc:
             return typeSystem.IntPtr;
             #endregion
             #region Arithmetic instructions
         case Code.Not: // bitwise complement
         case Code.Neg:
             return InferTypeForExpression(expr.Arguments.Single(), expectedType);
         case Code.Add:
         case Code.Sub:
         case Code.Mul:
         case Code.Or:
         case Code.And:
         case Code.Xor:
             return InferArgumentsInBinaryOperator(expr, null);
         case Code.Add_Ovf:
         case Code.Sub_Ovf:
         case Code.Mul_Ovf:
         case Code.Div:
         case Code.Rem:
             return InferArgumentsInBinaryOperator(expr, true);
         case Code.Add_Ovf_Un:
         case Code.Sub_Ovf_Un:
         case Code.Mul_Ovf_Un:
         case Code.Div_Un:
         case Code.Rem_Un:
             return InferArgumentsInBinaryOperator(expr, false);
         case Code.Shl:
         case Code.Shr:
             if (forceInferChildren)
                 InferTypeForExpression(expr.Arguments[1], typeSystem.Int32);
             return InferTypeForExpression(expr.Arguments[0], typeSystem.Int32);
         case Code.Shr_Un:
             if (forceInferChildren)
                 InferTypeForExpression(expr.Arguments[1], typeSystem.Int32);
             return InferTypeForExpression(expr.Arguments[0], typeSystem.UInt32);
             #endregion
             #region Constant loading instructions
         case Code.Ldnull:
             return typeSystem.Object;
         case Code.Ldstr:
             return typeSystem.String;
         case Code.Ldftn:
         case Code.Ldvirtftn:
             return typeSystem.IntPtr;
         case Code.Ldc_I4:
             return (IsIntegerOrEnum(expectedType) || expectedType == typeSystem.Boolean) ? expectedType : typeSystem.Int32;
         case Code.Ldc_I8:
             return (IsIntegerOrEnum(expectedType)) ? expectedType : typeSystem.Int64;
         case Code.Ldc_R4:
             return typeSystem.Single;
         case Code.Ldc_R8:
             return typeSystem.Double;
         case Code.Ldtoken:
             if (expr.Operand is TypeReference)
                 return new TypeReference("System", "RuntimeTypeHandle", module, module, true);
             else if (expr.Operand is FieldReference)
                 return new TypeReference("System", "RuntimeFieldHandle", module, module, true);
             else
                 return new TypeReference("System", "RuntimeMethodHandle", module, module, true);
         case Code.Arglist:
             return new TypeReference("System", "RuntimeArgumentHandle", module, module, true);
             #endregion
             #region Array instructions
         case Code.Newarr:
             if (forceInferChildren)
                 InferTypeForExpression(expr.Arguments.Single(), typeSystem.Int32);
             return new ArrayType((TypeReference)expr.Operand);
         case Code.Ldlen:
             return typeSystem.Int32;
         case Code.Ldelem_U1:
         case Code.Ldelem_U2:
         case Code.Ldelem_U4:
         case Code.Ldelem_I1:
         case Code.Ldelem_I2:
         case Code.Ldelem_I4:
         case Code.Ldelem_I8:
         case Code.Ldelem_I:
         case Code.Ldelem_Ref:
             {
                 ArrayType arrayType = InferTypeForExpression(expr.Arguments[0], null) as ArrayType;
                 if (forceInferChildren) {
                     InferTypeForExpression(expr.Arguments[0], new ArrayType(typeSystem.Byte));
                     InferTypeForExpression(expr.Arguments[1], typeSystem.Int32);
                 }
                 return arrayType != null ? arrayType.ElementType : null;
             }
         case Code.Ldelem_Any:
             if (forceInferChildren) {
                 InferTypeForExpression(expr.Arguments[1], typeSystem.Int32);
             }
             return (TypeReference)expr.Operand;
         case Code.Ldelema:
             {
                 ArrayType arrayType = InferTypeForExpression(expr.Arguments[0], null) as ArrayType;
                 if (forceInferChildren)
                     InferTypeForExpression(expr.Arguments[1], typeSystem.Int32);
                 return arrayType != null ? new ByReferenceType(arrayType.ElementType) : null;
             }
         case Code.Stelem_I:
         case Code.Stelem_I1:
         case Code.Stelem_I2:
         case Code.Stelem_I4:
         case Code.Stelem_I8:
         case Code.Stelem_R4:
         case Code.Stelem_R8:
         case Code.Stelem_Ref:
         case Code.Stelem_Any:
             if (forceInferChildren) {
                 ArrayType arrayType = InferTypeForExpression(expr.Arguments[0], null) as ArrayType;
                 InferTypeForExpression(expr.Arguments[1], typeSystem.Int32);
                 if (arrayType != null) {
                     InferTypeForExpression(expr.Arguments[2], arrayType.ElementType);
                 }
             }
             return null;
             #endregion
             #region Conversion instructions
         case Code.Conv_I1:
         case Code.Conv_Ovf_I1:
             return (GetInformationAmount(expectedType) == 8 && IsSigned(expectedType) == true) ? expectedType : typeSystem.SByte;
         case Code.Conv_I2:
         case Code.Conv_Ovf_I2:
             return (GetInformationAmount(expectedType) == 16 && IsSigned(expectedType) == true) ? expectedType : typeSystem.Int16;
         case Code.Conv_I4:
         case Code.Conv_Ovf_I4:
             return (GetInformationAmount(expectedType) == 32 && IsSigned(expectedType) == true) ? expectedType : typeSystem.Int32;
         case Code.Conv_I8:
         case Code.Conv_Ovf_I8:
             return (GetInformationAmount(expectedType) == 64 && IsSigned(expectedType) == true) ? expectedType : typeSystem.Int64;
         case Code.Conv_U1:
         case Code.Conv_Ovf_U1:
             return (GetInformationAmount(expectedType) == 8 && IsSigned(expectedType) == false) ? expectedType : typeSystem.Byte;
         case Code.Conv_U2:
         case Code.Conv_Ovf_U2:
             return (GetInformationAmount(expectedType) == 16 && IsSigned(expectedType) == false) ? expectedType : typeSystem.UInt16;
         case Code.Conv_U4:
         case Code.Conv_Ovf_U4:
             return (GetInformationAmount(expectedType) == 32 && IsSigned(expectedType) == false) ? expectedType : typeSystem.UInt32;
         case Code.Conv_U8:
         case Code.Conv_Ovf_U8:
             return (GetInformationAmount(expectedType) == 64 && IsSigned(expectedType) == false) ? expectedType : typeSystem.UInt64;
         case Code.Conv_I:
         case Code.Conv_Ovf_I:
             return (GetInformationAmount(expectedType) == nativeInt && IsSigned(expectedType) == true) ? expectedType : typeSystem.IntPtr;
         case Code.Conv_U:
         case Code.Conv_Ovf_U:
             return (GetInformationAmount(expectedType) == nativeInt && IsSigned(expectedType) == false) ? expectedType : typeSystem.UIntPtr;
         case Code.Conv_R4:
             return typeSystem.Single;
         case Code.Conv_R8:
             return typeSystem.Double;
         case Code.Conv_R_Un:
             return (expectedType == typeSystem.Single) ? typeSystem.Single : typeSystem.Double;
         case Code.Castclass:
         case Code.Isinst:
         case Code.Unbox_Any:
             return (TypeReference)expr.Operand;
         case Code.Box:
             if (forceInferChildren)
                 InferTypeForExpression(expr.Arguments.Single(), (TypeReference)expr.Operand);
             return (TypeReference)expr.Operand;
             #endregion
             #region Comparison instructions
         case Code.Ceq:
             if (forceInferChildren)
                 InferArgumentsInBinaryOperator(expr, null);
             return typeSystem.Boolean;
         case Code.Clt:
         case Code.Cgt:
             if (forceInferChildren)
                 InferArgumentsInBinaryOperator(expr, true);
             return typeSystem.Boolean;
         case Code.Clt_Un:
         case Code.Cgt_Un:
             if (forceInferChildren)
                 InferArgumentsInBinaryOperator(expr, false);
             return typeSystem.Boolean;
             #endregion
             #region Branch instructions
         case Code.Beq:
         case Code.Bne_Un:
             if (forceInferChildren)
                 InferArgumentsInBinaryOperator(expr, null);
             return null;
         case Code.Brtrue:
         case Code.Brfalse:
             if (forceInferChildren)
                 InferTypeForExpression(expr.Arguments.Single(), typeSystem.Boolean);
             return null;
         case Code.Blt:
         case Code.Ble:
         case Code.Bgt:
         case Code.Bge:
             if (forceInferChildren)
                 InferArgumentsInBinaryOperator(expr, true);
             return null;
         case Code.Blt_Un:
         case Code.Ble_Un:
         case Code.Bgt_Un:
         case Code.Bge_Un:
             if (forceInferChildren)
                 InferArgumentsInBinaryOperator(expr, false);
             return null;
         case Code.Br:
         case Code.Leave:
         case Code.Endfinally:
         case Code.Switch:
         case Code.Throw:
         case Code.Rethrow:
             return null;
         case Code.Ret:
             if (forceInferChildren && expr.Arguments.Count == 1)
                 InferTypeForExpression(expr.Arguments[0], context.CurrentMethod.ReturnType);
             return null;
             #endregion
         case Code.Pop:
             return null;
         case Code.Dup:
             return InferTypeForExpression(expr.Arguments.Single(), expectedType);
         default:
             Debug.WriteLine("Type Inference: Can't handle " + expr.Code.GetName());
             return null;
     }
 }