Exemplo n.º 1
0
            void removeCalls(IList <Block> allBlocks, Blocks blocks, MethodDefinitionAndDeclaringTypeDict <bool> info)
            {
                var instrsToDelete = new List <int>();

                foreach (var block in allBlocks)
                {
                    instrsToDelete.Clear();
                    for (int i = 0; i < block.Instructions.Count; i++)
                    {
                        var instr = block.Instructions[i];
                        if (instr.OpCode != OpCodes.Call)
                        {
                            continue;
                        }
                        var destMethod = instr.Operand as MethodReference;
                        if (destMethod == null)
                        {
                            continue;
                        }

                        if (info.find(destMethod))
                        {
                            Log.v("Removed call to {0}", Utils.removeNewlines(destMethod));
                            instrsToDelete.Add(i);
                        }
                    }
                    block.remove(instrsToDelete);
                }
            }
Exemplo n.º 2
0
 static bool checkAllMethodsUnused(MethodDefinitionAndDeclaringTypeDict <bool> unused, TypeDefinition type)
 {
     foreach (var method in type.Methods)
     {
         if (!unused.find(method))
         {
             return(false);
         }
     }
     return(true);
 }
Exemplo n.º 3
0
            public void add(string method, MethodDefinition methodToBeRemoved)
            {
                if (methodToBeRemoved == null)
                {
                    return;
                }
                checkMethod(methodToBeRemoved);

                MethodDefinitionAndDeclaringTypeDict <bool> dict;

                if (!methodNameInfos.TryGetValue(method, out dict))
                {
                    methodNameInfos[method] = dict = new MethodDefinitionAndDeclaringTypeDict <bool>();
                }
                dict.add(methodToBeRemoved, true);
            }
Exemplo n.º 4
0
            public void add(MethodDefinition method, MethodDefinition methodToBeRemoved)
            {
                if (method == null || methodToBeRemoved == null)
                {
                    return;
                }
                checkMethod(methodToBeRemoved);

                var dict = methodRefInfos.find(method);

                if (dict == null)
                {
                    methodRefInfos.add(method, dict = new MethodDefinitionAndDeclaringTypeDict <bool>());
                }
                dict.add(methodToBeRemoved, true);
            }
Exemplo n.º 5
0
        public void initializeEventHandlerNames()
        {
            var ourFields = new FieldDefinitionAndDeclaringTypeDict <FieldDef>();

            foreach (var fieldDef in type.AllFields)
            {
                ourFields.add(fieldDef.FieldDefinition, fieldDef);
            }
            var ourMethods = new MethodDefinitionAndDeclaringTypeDict <MethodDef>();

            foreach (var methodDef in type.AllMethods)
            {
                ourMethods.add(methodDef.MethodDefinition, methodDef);
            }

            initVbEventHandlers(ourFields, ourMethods);
            initFieldEventHandlers(ourFields, ourMethods);
            initTypeEventHandlers(ourFields, ourMethods);
        }
Exemplo n.º 6
0
        public TypeDefinitionDict <bool> getInlinedTypes(IEnumerable <MethodDefinition> unusedMethods)
        {
            var unused = new MethodDefinitionAndDeclaringTypeDict <bool>();

            foreach (var method in unusedMethods)
            {
                unused.add(method, true);
            }

            var types = new TypeDefinitionDict <bool>();

            foreach (var type in methodsTypes.getKeys())
            {
                if (checkAllMethodsUnused(unused, type))
                {
                    types.add(type, true);
                }
            }
            return(types);
        }
Exemplo n.º 7
0
        static void initializeCtors(TypeDefinition manager, MethodDefinitionAndDeclaringTypeDict <MethodReference> ctors)
        {
            if (manager == null)
            {
                return;
            }

            foreach (var ctor in manager.Methods)
            {
                if (ctor.Name != ".ctor")
                {
                    continue;
                }

                var newCtor = new MethodReference(ctor.Name, ctor.MethodReturnType.ReturnType, manager.BaseType);
                newCtor.HasThis = true;
                foreach (var param in ctor.Parameters)
                {
                    newCtor.Parameters.Add(new ParameterDefinition(param.ParameterType));
                }
                ctors.add(ctor, newCtor);
            }
        }
Exemplo n.º 8
0
        // VB initializes the handlers in the property setter, where it first removes the handler
        // from the previous control, and then adds the handler to the new control.
        void initVbEventHandlers(FieldDefinitionAndDeclaringTypeDict <FieldDef> ourFields, MethodDefinitionAndDeclaringTypeDict <MethodDef> ourMethods)
        {
            var checker = NameChecker;

            foreach (var propDef in type.AllProperties)
            {
                var setterDef = propDef.SetMethod;
                if (setterDef == null)
                {
                    continue;
                }

                string eventName;
                var    handler = getVbHandler(setterDef.MethodDefinition, out eventName);
                if (handler == null)
                {
                    continue;
                }
                var handlerDef = ourMethods.find(handler);
                if (handlerDef == null)
                {
                    continue;
                }

                if (!checker.isValidEventName(eventName))
                {
                    continue;
                }

                memberInfos.method(handlerDef).suggestedName = string.Format("{0}_{1}", memberInfos.prop(propDef).newName, eventName);
            }
        }
Exemplo n.º 9
0
        void restoreMethodBodies()
        {
            var methodToOrigMethods = new MethodDefinitionAndDeclaringTypeDict <List <MethodDefinition> >();

            foreach (var t in module.Types)
            {
                var types = new List <TypeDefinition>(TypeDefinition.GetTypes(new List <TypeDefinition> {
                    t
                }));
                foreach (var type in types)
                {
                    if (methodsTypes.find(type))
                    {
                        continue;
                    }
                    foreach (var method in type.Methods)
                    {
                        if (method.Name == ".ctor" || method.Name == ".cctor")
                        {
                            continue;
                        }

                        MethodDefinition calledMethod;
                        if (!checkRestoreBody(method, out calledMethod))
                        {
                            continue;
                        }
                        if (!checkSameMethods(method, calledMethod))
                        {
                            continue;
                        }
                        if (!methodsTypes.find(calledMethod.DeclaringType))
                        {
                            continue;
                        }
                        if (types.IndexOf(calledMethod.DeclaringType) < 0)
                        {
                            continue;
                        }

                        var list = methodToOrigMethods.find(calledMethod);
                        if (list == null)
                        {
                            methodToOrigMethods.add(calledMethod, list = new List <MethodDefinition>());
                        }
                        list.Add(method);
                    }
                }
            }

            foreach (var calledMethod in methodToOrigMethods.getKeys())
            {
                var list   = methodToOrigMethods.find(calledMethod);
                var method = list[0];

                Log.v("Restored method body {0:X8} from method {1:X8}",
                      method.MetadataToken.ToInt32(),
                      calledMethod.MetadataToken.ToInt32());
                DotNetUtils.copyBodyFromTo(calledMethod, method);
                classMethods.add(calledMethod, method);
            }
        }
Exemplo n.º 10
0
        public void initializeEventHandlerNames()
        {
            var ourFields = new FieldDefinitionAndDeclaringTypeDict<FieldDef>();
            foreach (var fieldDef in type.AllFields)
                ourFields.add(fieldDef.FieldDefinition, fieldDef);
            var ourMethods = new MethodDefinitionAndDeclaringTypeDict<MethodDef>();
            foreach (var methodDef in type.AllMethods)
                ourMethods.add(methodDef.MethodDefinition, methodDef);

            initVbEventHandlers(ourFields, ourMethods);
            initFieldEventHandlers(ourFields, ourMethods);
            initTypeEventHandlers(ourFields, ourMethods);
        }
Exemplo n.º 11
0
        // VB initializes the handlers in the property setter, where it first removes the handler
        // from the previous control, and then adds the handler to the new control.
        void initVbEventHandlers(FieldDefinitionAndDeclaringTypeDict<FieldDef> ourFields, MethodDefinitionAndDeclaringTypeDict<MethodDef> ourMethods)
        {
            var checker = NameChecker;

            foreach (var propDef in type.AllProperties) {
                var setterDef = propDef.SetMethod;
                if (setterDef == null)
                    continue;

                string eventName;
                var handler = getVbHandler(setterDef.MethodDefinition, out eventName);
                if (handler == null)
                    continue;
                var handlerDef = ourMethods.find(handler);
                if (handlerDef == null)
                    continue;

                if (!checker.isValidEventName(eventName))
                    continue;

                memberInfos.method(handlerDef).suggestedName = string.Format("{0}_{1}", memberInfos.prop(propDef).newName, eventName);
            }
        }
Exemplo n.º 12
0
        void initTypeEventHandlers(FieldDefinitionAndDeclaringTypeDict<FieldDef> ourFields, MethodDefinitionAndDeclaringTypeDict<MethodDef> ourMethods)
        {
            var checker = NameChecker;

            foreach (var methodDef in type.AllMethods) {
                if (methodDef.MethodDefinition.Body == null)
                    continue;
                if (methodDef.MethodDefinition.IsStatic)
                    continue;
                var method = methodDef.MethodDefinition;
                var instructions = method.Body.Instructions;
                for (int i = 0; i < instructions.Count - 5; i++) {
                    // ldarg.0
                    // ldarg.0 / dup
                    // ldarg.0 / dup
                    // ldvirtftn handler
                    // newobj event handler ctor
                    // call add_Xyz

                    if (DotNetUtils.getArgIndex(instructions[i]) != 0)
                        continue;
                    int index = i + 1;

                    if (!isThisOrDup(instructions[index++]))
                        continue;
                    MethodReference handler;
                    if (instructions[index].OpCode.Code == Code.Ldftn) {
                        handler = instructions[index++].Operand as MethodReference;
                    }
                    else {
                        if (!isThisOrDup(instructions[index++]))
                            continue;
                        var instr = instructions[index++];
                        if (instr.OpCode.Code != Code.Ldvirtftn)
                            continue;
                        handler = instr.Operand as MethodReference;
                    }
                    if (handler == null)
                        continue;
                    var handlerDef = ourMethods.find(handler);
                    if (handlerDef == null)
                        continue;

                    var newobj = instructions[index++];
                    if (newobj.OpCode.Code != Code.Newobj)
                        continue;
                    if (!isEventHandlerCtor(newobj.Operand as MethodReference))
                        continue;

                    var call = instructions[index++];
                    if (call.OpCode.Code != Code.Call && call.OpCode.Code != Code.Callvirt)
                        continue;
                    var addMethod = call.Operand as MethodReference;
                    if (addMethod == null)
                        continue;
                    if (!Utils.StartsWith(addMethod.Name, "add_", StringComparison.Ordinal))
                        continue;

                    var eventName = addMethod.Name.Substring(4);
                    if (!checker.isValidEventName(eventName))
                        continue;

                    memberInfos.method(handlerDef).suggestedName = string.Format("{0}_{1}", newName, eventName);
                }
            }
        }
Exemplo n.º 13
0
        void initializeWindowsFormsFieldsAndProps()
        {
            var checker = NameChecker;

            var ourFields = new FieldDefinitionAndDeclaringTypeDict<FieldDef>();
            foreach (var fieldDef in type.AllFields)
                ourFields.add(fieldDef.FieldDefinition, fieldDef);
            var ourMethods = new MethodDefinitionAndDeclaringTypeDict<MethodDef>();
            foreach (var methodDef in type.AllMethods)
                ourMethods.add(methodDef.MethodDefinition, methodDef);

            foreach (var methodDef in type.AllMethods) {
                if (methodDef.MethodDefinition.Body == null)
                    continue;
                if (methodDef.MethodDefinition.IsStatic || methodDef.MethodDefinition.IsVirtual)
                    continue;
                var instructions = methodDef.MethodDefinition.Body.Instructions;
                for (int i = 2; i < instructions.Count; i++) {
                    var call = instructions[i];
                    if (call.OpCode.Code != Code.Call && call.OpCode.Code != Code.Callvirt)
                        continue;
                    if (!isWindowsFormsSetNameMethod(call.Operand as MethodReference))
                        continue;

                    var ldstr = instructions[i - 1];
                    if (ldstr.OpCode.Code != Code.Ldstr)
                        continue;
                    var fieldName = ldstr.Operand as string;
                    if (fieldName == null || !checker.isValidFieldName(fieldName))
                        continue;

                    var instr = instructions[i - 2];
                    FieldReference fieldRef = null;
                    if (instr.OpCode.Code == Code.Call || instr.OpCode.Code == Code.Callvirt) {
                        var calledMethod = instr.Operand as MethodReference;
                        if (calledMethod == null)
                            continue;
                        var calledMethodDef = ourMethods.find(calledMethod);
                        if (calledMethodDef == null)
                            continue;
                        fieldRef = getFieldReference(calledMethodDef.MethodDefinition);

                        var propDef = calledMethodDef.Property;
                        if (propDef == null)
                            continue;

                        memberInfos.prop(propDef).suggestedName = fieldName;
                        fieldName = "_" + fieldName;
                    }
                    else if (instr.OpCode.Code == Code.Ldfld) {
                        fieldRef = instr.Operand as FieldReference;
                    }

                    if (fieldRef == null)
                        continue;
                    var fieldDef = ourFields.find(fieldRef);
                    if (fieldDef == null)
                        continue;
                    var fieldInfo = memberInfos.field(fieldDef);

                    if (fieldInfo.renamed)
                        continue;

                    fieldInfo.suggestedName = variableNameState.getNewFieldName(fieldInfo.oldName, new NameCreator2(fieldName));
                }
            }
        }
Exemplo n.º 14
0
        void initFieldEventHandlers(FieldDefinitionAndDeclaringTypeDict<FieldDef> ourFields, MethodDefinitionAndDeclaringTypeDict<MethodDef> ourMethods)
        {
            var checker = NameChecker;

            foreach (var methodDef in type.AllMethods) {
                if (methodDef.MethodDefinition.Body == null)
                    continue;
                if (methodDef.MethodDefinition.IsStatic)
                    continue;
                var instructions = methodDef.MethodDefinition.Body.Instructions;
                for (int i = 0; i < instructions.Count - 6; i++) {
                    // We're looking for this code pattern:
                    //	ldarg.0
                    //	ldfld field
                    //	ldarg.0
                    //	ldftn method / ldarg.0 + ldvirtftn
                    //	newobj event_handler_ctor
                    //	callvirt add_SomeEvent

                    if (DotNetUtils.getArgIndex(instructions[i]) != 0)
                        continue;
                    int index = i + 1;

                    var ldfld = instructions[index++];
                    if (ldfld.OpCode.Code != Code.Ldfld)
                        continue;
                    var fieldRef = ldfld.Operand as FieldReference;
                    if (fieldRef == null)
                        continue;
                    var fieldDef = ourFields.find(fieldRef);
                    if (fieldDef == null)
                        continue;

                    if (DotNetUtils.getArgIndex(instructions[index++]) != 0)
                        continue;

                    MethodReference methodRef;
                    var instr = instructions[index + 1];
                    if (instr.OpCode.Code == Code.Ldvirtftn) {
                        if (!isThisOrDup(instructions[index++]))
                            continue;
                        var ldvirtftn = instructions[index++];
                        methodRef = ldvirtftn.Operand as MethodReference;
                    }
                    else {
                        var ldftn = instructions[index++];
                        if (ldftn.OpCode.Code != Code.Ldftn)
                            continue;
                        methodRef = ldftn.Operand as MethodReference;
                    }
                    if (methodRef == null)
                        continue;
                    var handlerMethod = ourMethods.find(methodRef);
                    if (handlerMethod == null)
                        continue;

                    var newobj = instructions[index++];
                    if (newobj.OpCode.Code != Code.Newobj)
                        continue;
                    if (!isEventHandlerCtor(newobj.Operand as MethodReference))
                        continue;

                    var call = instructions[index++];
                    if (call.OpCode.Code != Code.Call && call.OpCode.Code != Code.Callvirt)
                        continue;
                    var addHandler = call.Operand as MethodReference;
                    if (addHandler == null)
                        continue;
                    if (!Utils.StartsWith(addHandler.Name, "add_", StringComparison.Ordinal))
                        continue;

                    var eventName = addHandler.Name.Substring(4);
                    if (!checker.isValidEventName(eventName))
                        continue;

                    memberInfos.method(handlerMethod).suggestedName = string.Format("{0}_{1}", memberInfos.field(fieldDef).newName, eventName);
                }
            }
        }
Exemplo n.º 15
0
 static bool checkAllMethodsUnused(MethodDefinitionAndDeclaringTypeDict<bool> unused, TypeDefinition type)
 {
     foreach (var method in type.Methods) {
         if (!unused.find(method))
             return false;
     }
     return true;
 }
Exemplo n.º 16
0
        void restoreMethodBodies()
        {
            var methodToOrigMethods = new MethodDefinitionAndDeclaringTypeDict<List<MethodDefinition>>();
            foreach (var t in module.Types) {
                var types = new List<TypeDefinition>(TypeDefinition.GetTypes(new List<TypeDefinition> { t }));
                foreach (var type in types) {
                    if (methodsTypes.find(type))
                        continue;
                    foreach (var method in type.Methods) {
                        if (method.Name == ".ctor" || method.Name == ".cctor")
                            continue;

                        MethodDefinition calledMethod;
                        if (!checkRestoreBody(method, out calledMethod))
                            continue;
                        if (!checkSameMethods(method, calledMethod))
                            continue;
                        if (!methodsTypes.find(calledMethod.DeclaringType))
                            continue;
                        if (types.IndexOf(calledMethod.DeclaringType) < 0)
                            continue;

                        var list = methodToOrigMethods.find(calledMethod);
                        if (list == null)
                            methodToOrigMethods.add(calledMethod, list = new List<MethodDefinition>());
                        list.Add(method);
                    }
                }
            }

            foreach (var calledMethod in methodToOrigMethods.getKeys()) {
                var list = methodToOrigMethods.find(calledMethod);
                var method = list[0];

                Log.v("Restored method body {0:X8} from method {1:X8}",
                            method.MetadataToken.ToInt32(),
                            calledMethod.MetadataToken.ToInt32());
                DotNetUtils.copyBodyFromTo(calledMethod, method);
                classMethods.add(calledMethod, method);
            }
        }
Exemplo n.º 17
0
        public TypeDefinitionDict<bool> getInlinedTypes(IEnumerable<MethodDefinition> unusedMethods)
        {
            var unused = new MethodDefinitionAndDeclaringTypeDict<bool>();
            foreach (var method in unusedMethods)
                unused.add(method, true);

            var types = new TypeDefinitionDict<bool>();
            foreach (var type in methodsTypes.getKeys()) {
                if (checkAllMethodsUnused(unused, type))
                    types.add(type, true);
            }
            return types;
        }
Exemplo n.º 18
0
        void initializeWindowsFormsFieldsAndProps()
        {
            var checker = NameChecker;

            var ourFields = new FieldDefinitionAndDeclaringTypeDict <FieldDef>();

            foreach (var fieldDef in type.AllFields)
            {
                ourFields.add(fieldDef.FieldDefinition, fieldDef);
            }
            var ourMethods = new MethodDefinitionAndDeclaringTypeDict <MethodDef>();

            foreach (var methodDef in type.AllMethods)
            {
                ourMethods.add(methodDef.MethodDefinition, methodDef);
            }

            foreach (var methodDef in type.AllMethods)
            {
                if (methodDef.MethodDefinition.Body == null)
                {
                    continue;
                }
                if (methodDef.MethodDefinition.IsStatic || methodDef.MethodDefinition.IsVirtual)
                {
                    continue;
                }
                var instructions = methodDef.MethodDefinition.Body.Instructions;
                for (int i = 2; i < instructions.Count; i++)
                {
                    var call = instructions[i];
                    if (call.OpCode.Code != Code.Call && call.OpCode.Code != Code.Callvirt)
                    {
                        continue;
                    }
                    if (!isWindowsFormsSetNameMethod(call.Operand as MethodReference))
                    {
                        continue;
                    }

                    var ldstr = instructions[i - 1];
                    if (ldstr.OpCode.Code != Code.Ldstr)
                    {
                        continue;
                    }
                    var fieldName = ldstr.Operand as string;
                    if (fieldName == null || !checker.isValidFieldName(fieldName))
                    {
                        continue;
                    }

                    var            instr    = instructions[i - 2];
                    FieldReference fieldRef = null;
                    if (instr.OpCode.Code == Code.Call || instr.OpCode.Code == Code.Callvirt)
                    {
                        var calledMethod = instr.Operand as MethodReference;
                        if (calledMethod == null)
                        {
                            continue;
                        }
                        var calledMethodDef = ourMethods.find(calledMethod);
                        if (calledMethodDef == null)
                        {
                            continue;
                        }
                        fieldRef = getFieldReference(calledMethodDef.MethodDefinition);

                        var propDef = calledMethodDef.Property;
                        if (propDef == null)
                        {
                            continue;
                        }

                        memberInfos.prop(propDef).suggestedName = fieldName;
                        fieldName = "_" + fieldName;
                    }
                    else if (instr.OpCode.Code == Code.Ldfld)
                    {
                        fieldRef = instr.Operand as FieldReference;
                    }

                    if (fieldRef == null)
                    {
                        continue;
                    }
                    var fieldDef = ourFields.find(fieldRef);
                    if (fieldDef == null)
                    {
                        continue;
                    }
                    var fieldInfo = memberInfos.field(fieldDef);

                    if (fieldInfo.renamed)
                    {
                        continue;
                    }

                    fieldInfo.suggestedName = variableNameState.getNewFieldName(fieldInfo.oldName, new NameCreator2(fieldName));
                }
            }
        }
Exemplo n.º 19
0
        void initTypeEventHandlers(FieldDefinitionAndDeclaringTypeDict <FieldDef> ourFields, MethodDefinitionAndDeclaringTypeDict <MethodDef> ourMethods)
        {
            var checker = NameChecker;

            foreach (var methodDef in type.AllMethods)
            {
                if (methodDef.MethodDefinition.Body == null)
                {
                    continue;
                }
                if (methodDef.MethodDefinition.IsStatic)
                {
                    continue;
                }
                var method       = methodDef.MethodDefinition;
                var instructions = method.Body.Instructions;
                for (int i = 0; i < instructions.Count - 5; i++)
                {
                    // ldarg.0
                    // ldarg.0 / dup
                    // ldarg.0 / dup
                    // ldvirtftn handler
                    // newobj event handler ctor
                    // call add_Xyz

                    if (DotNetUtils.getArgIndex(instructions[i]) != 0)
                    {
                        continue;
                    }
                    int index = i + 1;

                    if (!isThisOrDup(instructions[index++]))
                    {
                        continue;
                    }
                    MethodReference handler;
                    if (instructions[index].OpCode.Code == Code.Ldftn)
                    {
                        handler = instructions[index++].Operand as MethodReference;
                    }
                    else
                    {
                        if (!isThisOrDup(instructions[index++]))
                        {
                            continue;
                        }
                        var instr = instructions[index++];
                        if (instr.OpCode.Code != Code.Ldvirtftn)
                        {
                            continue;
                        }
                        handler = instr.Operand as MethodReference;
                    }
                    if (handler == null)
                    {
                        continue;
                    }
                    var handlerDef = ourMethods.find(handler);
                    if (handlerDef == null)
                    {
                        continue;
                    }

                    var newobj = instructions[index++];
                    if (newobj.OpCode.Code != Code.Newobj)
                    {
                        continue;
                    }
                    if (!isEventHandlerCtor(newobj.Operand as MethodReference))
                    {
                        continue;
                    }

                    var call = instructions[index++];
                    if (call.OpCode.Code != Code.Call && call.OpCode.Code != Code.Callvirt)
                    {
                        continue;
                    }
                    var addMethod = call.Operand as MethodReference;
                    if (addMethod == null)
                    {
                        continue;
                    }
                    if (!Utils.StartsWith(addMethod.Name, "add_", StringComparison.Ordinal))
                    {
                        continue;
                    }

                    var eventName = addMethod.Name.Substring(4);
                    if (!checker.isValidEventName(eventName))
                    {
                        continue;
                    }

                    memberInfos.method(handlerDef).suggestedName = string.Format("{0}_{1}", newName, eventName);
                }
            }
        }
Exemplo n.º 20
0
        static void initializeCtors(TypeDefinition manager, MethodDefinitionAndDeclaringTypeDict<MethodReference> ctors)
        {
            if (manager == null)
                return;

            foreach (var ctor in manager.Methods) {
                if (ctor.Name != ".ctor")
                    continue;

                var newCtor = new MethodReference(ctor.Name, ctor.MethodReturnType.ReturnType, manager.BaseType);
                newCtor.HasThis = true;
                foreach (var param in ctor.Parameters)
                    newCtor.Parameters.Add(new ParameterDefinition(param.ParameterType));
                ctors.add(ctor, newCtor);
            }
        }
Exemplo n.º 21
0
        void initFieldEventHandlers(FieldDefinitionAndDeclaringTypeDict <FieldDef> ourFields, MethodDefinitionAndDeclaringTypeDict <MethodDef> ourMethods)
        {
            var checker = NameChecker;

            foreach (var methodDef in type.AllMethods)
            {
                if (methodDef.MethodDefinition.Body == null)
                {
                    continue;
                }
                if (methodDef.MethodDefinition.IsStatic)
                {
                    continue;
                }
                var instructions = methodDef.MethodDefinition.Body.Instructions;
                for (int i = 0; i < instructions.Count - 6; i++)
                {
                    // We're looking for this code pattern:
                    //	ldarg.0
                    //	ldfld field
                    //	ldarg.0
                    //	ldftn method / ldarg.0 + ldvirtftn
                    //	newobj event_handler_ctor
                    //	callvirt add_SomeEvent

                    if (DotNetUtils.getArgIndex(instructions[i]) != 0)
                    {
                        continue;
                    }
                    int index = i + 1;

                    var ldfld = instructions[index++];
                    if (ldfld.OpCode.Code != Code.Ldfld)
                    {
                        continue;
                    }
                    var fieldRef = ldfld.Operand as FieldReference;
                    if (fieldRef == null)
                    {
                        continue;
                    }
                    var fieldDef = ourFields.find(fieldRef);
                    if (fieldDef == null)
                    {
                        continue;
                    }

                    if (DotNetUtils.getArgIndex(instructions[index++]) != 0)
                    {
                        continue;
                    }

                    MethodReference methodRef;
                    var             instr = instructions[index + 1];
                    if (instr.OpCode.Code == Code.Ldvirtftn)
                    {
                        if (!isThisOrDup(instructions[index++]))
                        {
                            continue;
                        }
                        var ldvirtftn = instructions[index++];
                        methodRef = ldvirtftn.Operand as MethodReference;
                    }
                    else
                    {
                        var ldftn = instructions[index++];
                        if (ldftn.OpCode.Code != Code.Ldftn)
                        {
                            continue;
                        }
                        methodRef = ldftn.Operand as MethodReference;
                    }
                    if (methodRef == null)
                    {
                        continue;
                    }
                    var handlerMethod = ourMethods.find(methodRef);
                    if (handlerMethod == null)
                    {
                        continue;
                    }

                    var newobj = instructions[index++];
                    if (newobj.OpCode.Code != Code.Newobj)
                    {
                        continue;
                    }
                    if (!isEventHandlerCtor(newobj.Operand as MethodReference))
                    {
                        continue;
                    }

                    var call = instructions[index++];
                    if (call.OpCode.Code != Code.Call && call.OpCode.Code != Code.Callvirt)
                    {
                        continue;
                    }
                    var addHandler = call.Operand as MethodReference;
                    if (addHandler == null)
                    {
                        continue;
                    }
                    if (!Utils.StartsWith(addHandler.Name, "add_", StringComparison.Ordinal))
                    {
                        continue;
                    }

                    var eventName = addHandler.Name.Substring(4);
                    if (!checker.isValidEventName(eventName))
                    {
                        continue;
                    }

                    memberInfos.method(handlerMethod).suggestedName = string.Format("{0}_{1}", memberInfos.field(fieldDef).newName, eventName);
                }
            }
        }