de4dot-cex/de4dot.code/deobfuscators/Agile_NET/vm/OpCodeHandlers.cs
2012-11-06 16:38:39 +01:00

1873 lines
46 KiB
C#

/*
Copyright (C) 2011-2012 de4dot@gmail.com
This file is part of de4dot.
de4dot is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
de4dot is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
namespace de4dot.code.deobfuscators.Agile_NET.vm {
static partial class OpCodeHandlers {
public static readonly OpCodeHandler[][] opcodeHandlers = new OpCodeHandler[][] {
new OpCodeHandler[] {
new OpCodeHandler {
Name = "arithmetic",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
},
NumStaticMethods = 0,
NumInstanceMethods = 14,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = arithmetic_read,
},
new OpCodeHandler {
Name = "newarr",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Int32",
"System.Type",
"System.IntPtr",
},
ExecuteMethodThrows = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = newarr_check,
Read = newarr_read,
},
new OpCodeHandler {
Name = "box/unbox",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.UInt32",
},
NumStaticMethods = 0,
NumInstanceMethods = 2,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = box_read,
},
new OpCodeHandler {
Name = "call",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Collections.Generic.Dictionary`2<System.String,System.Int32>",
"System.Collections.Generic.Dictionary`2<System.Reflection.MethodInfo,System.Reflection.Emit.DynamicMethod>",
"System.Reflection.MethodBase",
"System.UInt32",
FieldsInfo.EnumType,
},
NumStaticMethods = 2,
NumInstanceMethods = 4,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = call_read,
},
new OpCodeHandler {
Name = "cast",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
FieldsInfo.EnumType,
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 2,
},
Check = null,
Read = cast_read,
},
new OpCodeHandler {
Name = "compare",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Int32",
FieldsInfo.EnumType,
},
NumStaticMethods = 1,
NumInstanceMethods = 7,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = compare_read,
},
new OpCodeHandler {
Name = "convert",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.Boolean",
"System.Boolean",
},
NumStaticMethods = 0,
NumInstanceMethods = 13,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = convert_read,
},
new OpCodeHandler {
Name = "dup/pop",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = dup_read,
},
new OpCodeHandler {
Name = "ldelem/stelem",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.Boolean",
FieldsInfo.EnumType,
"System.UInt32",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldelem_read,
},
new OpCodeHandler {
Name = "endfinally",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodThrows = 2,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = endfinally_check,
Read = endfinally_read,
},
new OpCodeHandler {
Name = "load/store field",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
FieldsInfo.EnumType,
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldfld_read,
},
new OpCodeHandler {
Name = "initobj",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Type",
},
ExecuteMethodThrows = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = initobj_read,
},
new OpCodeHandler {
Name = "load local/arg",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.UInt16",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldloc_read,
},
new OpCodeHandler {
Name = "load local/arg address",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.UInt32",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldloca_read,
},
new OpCodeHandler {
Name = "ldelema",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Array",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldelema_read,
},
new OpCodeHandler {
Name = "ldlen",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Array",
"System.Object",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldlen_read,
},
new OpCodeHandler {
Name = "ldobj",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodThrows = 1,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldobj_read,
},
new OpCodeHandler {
Name = "ldstr",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.String",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldstr_read,
},
new OpCodeHandler {
Name = "ldtoken",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Reflection.MemberInfo",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = ldtoken_check,
Read = ldtoken_read,
},
new OpCodeHandler {
Name = "leave",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Int32",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = leave_check,
Read = leave_read,
},
new OpCodeHandler {
Name = "load constant",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Object",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldc_read,
},
new OpCodeHandler {
Name = "load func",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.UInt32",
"System.UInt32",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldftn_read,
},
new OpCodeHandler {
Name = "logical",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
},
NumStaticMethods = 0,
NumInstanceMethods = 6,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = logical_read,
},
new OpCodeHandler {
Name = "nop",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = nop_check,
Read = nop_read,
},
new OpCodeHandler {
Name = "ret",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = ret_check,
Read = ret_read,
},
new OpCodeHandler {
Name = "rethrow",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodThrows = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = rethrow_check,
Read = rethrow_read,
},
new OpCodeHandler {
Name = "store local/arg",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.UInt16",
FieldsInfo.EnumType,
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = stloc_read,
},
new OpCodeHandler {
Name = "stobj",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = stobj_read,
},
new OpCodeHandler {
Name = "switch",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
"System.Int32[]",
},
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = switch_read,
},
new OpCodeHandler {
Name = "throw",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Object",
},
ExecuteMethodThrows = 2,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = throw_check,
Read = throw_read,
},
new OpCodeHandler {
Name = "neg/not",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
},
NumStaticMethods = 0,
NumInstanceMethods = 2,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = neg_read,
},
},
new OpCodeHandler[] {
new OpCodeHandler {
Name = "arithmetic",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.Boolean",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 14,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = arithmetic_read,
},
new OpCodeHandler {
Name = "box/unbox",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.UInt32",
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Type",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 2,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = box_read,
},
new OpCodeHandler {
Name = "call",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Collections.Generic.Dictionary`2<System.String,System.Int32>",
"System.Collections.Generic.Dictionary`2<System.Reflection.MethodInfo,System.Reflection.Emit.DynamicMethod>",
"System.Reflection.MethodBase",
"System.UInt32",
FieldsInfo.EnumType,
FieldsInfo.EnumType,
"System.Boolean",
},
ExecuteMethodLocals = new string[] {
"System.Boolean",
"System.Object",
"System.Reflection.ParameterInfo[]",
"System.Int32",
"System.Object[]",
"System.Reflection.ConstructorInfo",
"System.Reflection.MethodInfo",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 2,
NumInstanceMethods = 4,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = call_read,
},
new OpCodeHandler {
Name = "cast",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
FieldsInfo.EnumType,
"System.Reflection.MethodBase",
},
ExecuteMethodLocals = new string[] {
"System.Type",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 2,
},
Check = null,
Read = cast_read,
},
new OpCodeHandler {
Name = "compare",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Int32",
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 1,
NumInstanceMethods = 7,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = compare_read,
},
new OpCodeHandler {
Name = "convert",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.Boolean",
"System.Boolean",
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 13,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = convert_read,
},
new OpCodeHandler {
Name = "dup/pop",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = dup_read,
},
new OpCodeHandler {
Name = "endfinally",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Int32",
},
ExecuteMethodThrows = 2,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = endfinally_check,
Read = endfinally_read,
},
new OpCodeHandler {
Name = "initobj",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
"System.Boolean",
},
ExecuteMethodLocals = new string[] {
"System.Type",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = initobj_read,
},
new OpCodeHandler {
Name = "ldelem/stelem",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.Boolean",
FieldsInfo.EnumType,
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Array",
"System.Object",
"System.Type",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 5,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldelem_read,
},
new OpCodeHandler {
Name = "ldelema",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Array",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldelema_read,
},
new OpCodeHandler {
Name = "ldlen",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Array",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldlen_read,
},
new OpCodeHandler {
Name = "ldobj",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldobj_read,
},
new OpCodeHandler {
Name = "ldstr",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.String",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldstr_read,
},
new OpCodeHandler {
Name = "ldtoken",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Reflection.MemberInfo",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = ldtoken_check,
Read = ldtoken_read,
},
new OpCodeHandler {
Name = "leave",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Int32",
},
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = leave_check,
Read = leave_read,
},
new OpCodeHandler {
Name = "load constant",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Object",
"System.Boolean",
"System.UInt16",
},
ExecuteMethodLocals = new string[] {
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldc_read,
},
new OpCodeHandler {
Name = "load func",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.UInt32",
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Reflection.MethodBase",
"System.IntPtr",
"System.Type",
"System.Delegate",
"System.RuntimeMethodHandle",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldftn_read,
},
new OpCodeHandler {
Name = "load local/arg",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.UInt16",
"System.Boolean",
},
ExecuteMethodLocals = new string[] {
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldloc_read,
},
new OpCodeHandler {
Name = "load local/arg address",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Array",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldloca_read,
},
new OpCodeHandler {
Name = "load/store field",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Reflection.FieldInfo",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 4,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldfld_read,
},
new OpCodeHandler {
Name = "logical",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 6,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = logical_read,
},
new OpCodeHandler {
Name = "neg/not",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Object",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 2,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = neg_read,
},
new OpCodeHandler {
Name = "newarr",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Int32",
"System.Type",
"System.Boolean",
"System.IntPtr",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = newarr_check,
Read = newarr_read,
},
new OpCodeHandler {
Name = "nop",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = nop_check,
Read = nop_read,
},
new OpCodeHandler {
Name = "ret",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Reflection.MethodInfo",
"System.Type",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = ret_check,
Read = ret_read,
},
new OpCodeHandler {
Name = "rethrow",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodThrows = 1,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = rethrow_check,
Read = rethrow_read,
},
new OpCodeHandler {
Name = "stobj",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = stobj_read,
},
new OpCodeHandler {
Name = "store local/arg",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.UInt16",
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = stloc_read,
},
new OpCodeHandler {
Name = "switch",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
"System.Int32[]",
},
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = switch_read,
},
new OpCodeHandler {
Name = "throw",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 2,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = throw_check,
Read = throw_read,
},
},
new OpCodeHandler[] {
new OpCodeHandler {
Name = "arithmetic",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.Double",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 14,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = arithmetic_read,
},
new OpCodeHandler {
Name = "box/unbox",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.UInt32",
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Type",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 2,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = box_read,
},
new OpCodeHandler {
Name = "call",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Collections.Generic.Dictionary`2<System.Reflection.Module,System.Collections.Generic.Dictionary`2<System.Int32,System.Reflection.MethodBase>>",
"System.Collections.Generic.Dictionary`2<System.String,System.Int32>",
"System.Collections.Generic.Dictionary`2<System.Reflection.MethodInfo,System.Reflection.Emit.DynamicMethod>",
"System.Reflection.MethodBase",
"System.UInt32",
FieldsInfo.EnumType,
FieldsInfo.EnumType,
"System.Boolean",
},
ExecuteMethodLocals = new string[] {
"System.Boolean",
"System.Reflection.Module",
"System.Collections.Generic.Dictionary`2<System.Int32,System.Reflection.MethodBase>",
"System.Object",
"System.Reflection.ParameterInfo[]",
"System.Int32",
"System.Object[]",
"System.Reflection.ConstructorInfo",
"System.Reflection.MethodInfo",
"System.Collections.Generic.Dictionary`2<System.Reflection.Module,System.Collections.Generic.Dictionary`2<System.Int32,System.Reflection.MethodBase>>",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 2,
NumInstanceMethods = 4,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = call_read,
},
new OpCodeHandler {
Name = "cast",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
FieldsInfo.EnumType,
"System.Reflection.MethodBase",
},
ExecuteMethodLocals = new string[] {
"System.Type",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 2,
},
Check = null,
Read = cast_read,
},
new OpCodeHandler {
Name = "compare",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Int32",
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 1,
NumInstanceMethods = 7,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = compare_read,
},
new OpCodeHandler {
Name = "convert",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.Boolean",
"System.Boolean",
"System.UInt16",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 13,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = convert_read,
},
new OpCodeHandler {
Name = "dup/pop",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = dup_read,
},
new OpCodeHandler {
Name = "endfinally",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Int32",
},
ExecuteMethodThrows = 2,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = endfinally_check,
Read = endfinally_read,
},
new OpCodeHandler {
Name = "initobj",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
"System.Double",
},
ExecuteMethodLocals = new string[] {
"System.Type",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = initobj_read,
},
new OpCodeHandler {
Name = "ldelem/stelem",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.Boolean",
FieldsInfo.EnumType,
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Array",
"System.Object",
"System.Type",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 5,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldelem_read,
},
new OpCodeHandler {
Name = "ldelema",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Array",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldelema_read,
},
new OpCodeHandler {
Name = "ldlen",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Array",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldlen_read,
},
new OpCodeHandler {
Name = "ldobj",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldobj_read,
},
new OpCodeHandler {
Name = "ldstr",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.String",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldstr_read,
},
new OpCodeHandler {
Name = "ldtoken",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Reflection.MemberInfo",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = ldtoken_check,
Read = ldtoken_read,
},
new OpCodeHandler {
Name = "leave",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Int32",
},
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = leave_check,
Read = leave_read,
},
new OpCodeHandler {
Name = "load constant",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Object",
"System.Double",
"System.UInt16",
},
ExecuteMethodLocals = new string[] {
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldc_read,
},
new OpCodeHandler {
Name = "load func",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
"System.UInt32",
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Reflection.MethodBase",
"System.IntPtr",
"System.Type",
"System.Delegate",
"System.RuntimeMethodHandle",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldftn_read,
},
new OpCodeHandler {
Name = "load local/arg",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.UInt16",
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldloc_read,
},
new OpCodeHandler {
Name = "load local/arg address",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Array",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldloca_read,
},
new OpCodeHandler {
Name = "load/store field",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Reflection.FieldInfo",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 4,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = ldfld_read,
},
new OpCodeHandler {
Name = "logical",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 6,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = logical_read,
},
new OpCodeHandler {
Name = "neg/not",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Object",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 2,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = neg_read,
},
new OpCodeHandler {
Name = "newarr",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Int32",
"System.Type",
"System.Boolean",
"System.IntPtr",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = newarr_check,
Read = newarr_read,
},
new OpCodeHandler {
Name = "nop",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodThrows = 0,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = nop_check,
Read = nop_read,
},
new OpCodeHandler {
Name = "ret",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
},
ExecuteMethodLocals = new string[] {
"System.Reflection.MethodInfo",
"System.Type",
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = ret_check,
Read = ret_read,
},
new OpCodeHandler {
Name = "rethrow",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodThrows = 1,
ExecuteMethodPops = 0,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = rethrow_check,
Read = rethrow_read,
},
new OpCodeHandler {
Name = "stobj",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Boolean",
},
ExecuteMethodThrows = 1,
ExecuteMethodPops = 2,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = stobj_read,
},
new OpCodeHandler {
Name = "store local/arg",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.Boolean",
"System.UInt16",
FieldsInfo.EnumType,
},
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = stloc_read,
},
new OpCodeHandler {
Name = "switch",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[] {
"System.UInt32",
"System.Int32[]",
},
ExecuteMethodLocals = new string[] {
"System.Int32",
"System.Boolean",
},
ExecuteMethodThrows = 0,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = null,
Read = switch_read,
},
new OpCodeHandler {
Name = "throw",
OpCodeHandlerSigInfo = new OpCodeHandlerSigInfo {
RequiredFieldTypes = new object[0],
ExecuteMethodLocals = new string[] {
"System.Object",
"System.Boolean",
},
ExecuteMethodThrows = 2,
ExecuteMethodPops = 1,
NumStaticMethods = 0,
NumInstanceMethods = 0,
NumVirtualMethods = 2,
NumCtors = 1,
},
Check = throw_check,
Read = throw_read,
},
},
};
}
}