mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
252 lines
3.6 KiB
252 lines
3.6 KiB
// |
|
// Code.cs |
|
// |
|
// Author: |
|
// Jb Evain (jbevain@gmail.com) |
|
// |
|
// Copyright (c) 2008 - 2011 Jb Evain |
|
// |
|
// Permission is hereby granted, free of charge, to any person obtaining |
|
// a copy of this software and associated documentation files (the |
|
// "Software"), to deal in the Software without restriction, including |
|
// without limitation the rights to use, copy, modify, merge, publish, |
|
// distribute, sublicense, and/or sell copies of the Software, and to |
|
// permit persons to whom the Software is furnished to do so, subject to |
|
// the following conditions: |
|
// |
|
// The above copyright notice and this permission notice shall be |
|
// included in all copies or substantial portions of the Software. |
|
// |
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
// |
|
|
|
namespace Mono.Cecil.Cil { |
|
|
|
public enum Code { |
|
Nop, |
|
Break, |
|
Ldarg_0, |
|
Ldarg_1, |
|
Ldarg_2, |
|
Ldarg_3, |
|
Ldloc_0, |
|
Ldloc_1, |
|
Ldloc_2, |
|
Ldloc_3, |
|
Stloc_0, |
|
Stloc_1, |
|
Stloc_2, |
|
Stloc_3, |
|
Ldarg_S, |
|
Ldarga_S, |
|
Starg_S, |
|
Ldloc_S, |
|
Ldloca_S, |
|
Stloc_S, |
|
Ldnull, |
|
Ldc_I4_M1, |
|
Ldc_I4_0, |
|
Ldc_I4_1, |
|
Ldc_I4_2, |
|
Ldc_I4_3, |
|
Ldc_I4_4, |
|
Ldc_I4_5, |
|
Ldc_I4_6, |
|
Ldc_I4_7, |
|
Ldc_I4_8, |
|
Ldc_I4_S, |
|
Ldc_I4, |
|
Ldc_I8, |
|
Ldc_R4, |
|
Ldc_R8, |
|
Dup, |
|
Pop, |
|
Jmp, |
|
Call, |
|
Calli, |
|
Ret, |
|
Br_S, |
|
Brfalse_S, |
|
Brtrue_S, |
|
Beq_S, |
|
Bge_S, |
|
Bgt_S, |
|
Ble_S, |
|
Blt_S, |
|
Bne_Un_S, |
|
Bge_Un_S, |
|
Bgt_Un_S, |
|
Ble_Un_S, |
|
Blt_Un_S, |
|
Br, |
|
Brfalse, |
|
Brtrue, |
|
Beq, |
|
Bge, |
|
Bgt, |
|
Ble, |
|
Blt, |
|
Bne_Un, |
|
Bge_Un, |
|
Bgt_Un, |
|
Ble_Un, |
|
Blt_Un, |
|
Switch, |
|
Ldind_I1, |
|
Ldind_U1, |
|
Ldind_I2, |
|
Ldind_U2, |
|
Ldind_I4, |
|
Ldind_U4, |
|
Ldind_I8, |
|
Ldind_I, |
|
Ldind_R4, |
|
Ldind_R8, |
|
Ldind_Ref, |
|
Stind_Ref, |
|
Stind_I1, |
|
Stind_I2, |
|
Stind_I4, |
|
Stind_I8, |
|
Stind_R4, |
|
Stind_R8, |
|
Add, |
|
Sub, |
|
Mul, |
|
Div, |
|
Div_Un, |
|
Rem, |
|
Rem_Un, |
|
And, |
|
Or, |
|
Xor, |
|
Shl, |
|
Shr, |
|
Shr_Un, |
|
Neg, |
|
Not, |
|
Conv_I1, |
|
Conv_I2, |
|
Conv_I4, |
|
Conv_I8, |
|
Conv_R4, |
|
Conv_R8, |
|
Conv_U4, |
|
Conv_U8, |
|
Callvirt, |
|
Cpobj, |
|
Ldobj, |
|
Ldstr, |
|
Newobj, |
|
Castclass, |
|
Isinst, |
|
Conv_R_Un, |
|
Unbox, |
|
Throw, |
|
Ldfld, |
|
Ldflda, |
|
Stfld, |
|
Ldsfld, |
|
Ldsflda, |
|
Stsfld, |
|
Stobj, |
|
Conv_Ovf_I1_Un, |
|
Conv_Ovf_I2_Un, |
|
Conv_Ovf_I4_Un, |
|
Conv_Ovf_I8_Un, |
|
Conv_Ovf_U1_Un, |
|
Conv_Ovf_U2_Un, |
|
Conv_Ovf_U4_Un, |
|
Conv_Ovf_U8_Un, |
|
Conv_Ovf_I_Un, |
|
Conv_Ovf_U_Un, |
|
Box, |
|
Newarr, |
|
Ldlen, |
|
Ldelema, |
|
Ldelem_I1, |
|
Ldelem_U1, |
|
Ldelem_I2, |
|
Ldelem_U2, |
|
Ldelem_I4, |
|
Ldelem_U4, |
|
Ldelem_I8, |
|
Ldelem_I, |
|
Ldelem_R4, |
|
Ldelem_R8, |
|
Ldelem_Ref, |
|
Stelem_I, |
|
Stelem_I1, |
|
Stelem_I2, |
|
Stelem_I4, |
|
Stelem_I8, |
|
Stelem_R4, |
|
Stelem_R8, |
|
Stelem_Ref, |
|
Ldelem_Any, |
|
Stelem_Any, |
|
Unbox_Any, |
|
Conv_Ovf_I1, |
|
Conv_Ovf_U1, |
|
Conv_Ovf_I2, |
|
Conv_Ovf_U2, |
|
Conv_Ovf_I4, |
|
Conv_Ovf_U4, |
|
Conv_Ovf_I8, |
|
Conv_Ovf_U8, |
|
Refanyval, |
|
Ckfinite, |
|
Mkrefany, |
|
Ldtoken, |
|
Conv_U2, |
|
Conv_U1, |
|
Conv_I, |
|
Conv_Ovf_I, |
|
Conv_Ovf_U, |
|
Add_Ovf, |
|
Add_Ovf_Un, |
|
Mul_Ovf, |
|
Mul_Ovf_Un, |
|
Sub_Ovf, |
|
Sub_Ovf_Un, |
|
Endfinally, |
|
Leave, |
|
Leave_S, |
|
Stind_I, |
|
Conv_U, |
|
Arglist, |
|
Ceq, |
|
Cgt, |
|
Cgt_Un, |
|
Clt, |
|
Clt_Un, |
|
Ldftn, |
|
Ldvirtftn, |
|
Ldarg, |
|
Ldarga, |
|
Starg, |
|
Ldloc, |
|
Ldloca, |
|
Stloc, |
|
Localloc, |
|
Endfilter, |
|
Unaligned, |
|
Volatile, |
|
Tail, |
|
Initobj, |
|
Constrained, |
|
Cpblk, |
|
Initblk, |
|
No, |
|
Rethrow, |
|
Sizeof, |
|
Refanytype, |
|
Readonly, |
|
} |
|
}
|
|
|