|
| Name | Description |
|---|
.gif) .gif) | Add |
Adds two values and pushes the result onto the evaluation stack.
|
.gif) .gif) | Add_Ovf |
Adds two integers, performs an overflow check, and pushes the result onto the evaluation stack.
|
.gif) .gif) | Add_Ovf_Un |
Adds two unsigned integer values, performs an overflow check, and pushes the result onto the evaluation stack.
|
.gif) .gif) | And |
Computes the bitwise AND of two values and pushes the result onto the evaluation stack.
|
.gif) .gif) | Arglist |
Returns an unmanaged pointer to the argument list of the current method.
|
.gif) .gif) | Beq |
Transfers control to a target instruction if two values are equal.
|
.gif) .gif) | Beq_S |
Transfers control to a target instruction (short form) if two values are equal.
|
.gif) .gif) | Bge |
Transfers control to a target instruction if the first value is greater than or equal to the second value.
|
.gif) .gif) | Bge_S |
Transfers control to a target instruction (short form) if the first value is greater than or equal to the second value.
|
.gif) .gif) | Bge_Un |
Transfers control to a target instruction if the first value is greater than the second value, when comparing unsigned integer values or unordered float values.
|
.gif) .gif) | Bge_Un_S |
Transfers control to a target instruction (short form) if the first value is greater than the second value, when comparing unsigned integer values or unordered float values.
|
.gif) .gif) | Bgt |
Transfers control to a target instruction if the first value is greater than the second value.
|
.gif) .gif) | Bgt_S |
Transfers control to a target instruction (short form) if the first value is greater than the second value.
|
.gif) .gif) | Bgt_Un |
Transfers control to a target instruction if the first value is greater than the second value, when comparing unsigned integer values or unordered float values.
|
.gif) .gif) | Bgt_Un_S |
Transfers control to a target instruction (short form) if the first value is greater than the second value, when comparing unsigned integer values or unordered float values.
|
.gif) .gif) | Ble |
Transfers control to a target instruction if the first value is less than or equal to the second value.
|
.gif) .gif) | Ble_S |
Transfers control to a target instruction (short form) if the first value is less than or equal to the second value.
|
.gif) .gif) | Ble_Un |
Transfers control to a target instruction if the first value is less than or equal to the second value, when comparing unsigned integer values or unordered float values.
|
.gif) .gif) | Ble_Un_S |
Transfers control to a target instruction (short form) if the first value is less than or equal to the second value, when comparing unsigned integer values or unordered float values.
|
.gif) .gif) | Blt |
Transfers control to a target instruction if the first value is less than the second value.
|
.gif) .gif) | Blt_S |
Transfers control to a target instruction (short form) if the first value is less than the second value.
|
.gif) .gif) | Blt_Un |
Transfers control to a target instruction if the first value is less than the second value, when comparing unsigned integer values or unordered float values.
|
.gif) .gif) | Blt_Un_S |
Transfers control to a target instruction (short form) if the first value is less than the second value, when comparing unsigned integer values or unordered float values.
|
.gif) .gif) | Bne_Un |
Transfers control to a target instruction when two unsigned integer values or unordered float values are not equal.
|
.gif) .gif) | Bne_Un_S |
Transfers control to a target instruction (short form) when two unsigned integer values or unordered float values are not equal.
|
.gif) .gif) | Box |
Converts a value type to an object reference (type O).
|
.gif) .gif) | Br |
Unconditionally transfers control to a target instruction.
|
.gif) .gif) | Br_S |
Unconditionally transfers control to a target instruction (short form).
|
.gif) .gif) | Break |
Signals the Common Language Infrastructure (CLI) to inform the debugger that a break point has been tripped.
|
.gif) .gif) | Brfalse |
Transfers control to a target instruction if value is false, a null reference (Nothing in Visual Basic), or zero.
|
.gif) .gif) | Brfalse_S |
Transfers control to a target instruction if value is false, a null reference, or zero.
|
.gif) .gif) | Brtrue |
Transfers control to a target instruction if value is true, not null, or non-zero.
|
.gif) .gif) | Brtrue_S |
Transfers control to a target instruction (short form) if value is true, not null, or non-zero.
|
.gif) .gif) | Call |
Calls the method indicated by the passed method descriptor.
|
.gif) .gif) | Calli |
Calls the method indicated on the evaluation stack (as a pointer to an entry point) with arguments described by a calling convention.
|
.gif) .gif) | Callvirt |
Calls a late-bound method on an object, pushing the return value onto the evaluation stack.
|
.gif) .gif) | Castclass |
Attempts to cast an object passed by reference to the specified class.
|
.gif) .gif) | Ceq |
Compares two values. If they are equal, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.
|
.gif) .gif) | Cgt |
Compares two values. If the first value is greater than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.
|
.gif) .gif) | Cgt_Un |
Compares two unsigned or unordered values. If the first value is greater than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.
|
.gif) .gif) | Ckfinite |
Throws ArithmeticException if value is not a finite number.
|
.gif) .gif) | Clt |
Compares two values. If the first value is less than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.
|
.gif) .gif) | Clt_Un |
Compares the unsigned or unordered values value1 and value2. If value1 is less than value2, then the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack.
|
.gif) .gif) | Constrained |
Constrains the type on which a virtual method call is made.
|
.gif) .gif) | Conv_I |
Converts the value on top of the evaluation stack to native int.
|
.gif) .gif) | Conv_I1 |
Converts the value on top of the evaluation stack to int8, then extends (pads) it to int32.
|
.gif) .gif) | Conv_I2 |
Converts the value on top of the evaluation stack to int16, then extends (pads) it to int32.
|
.gif) .gif) | Conv_I4 |
Converts the value on top of the evaluation stack to int32.
|
.gif) .gif) | Conv_I8 |
Converts the value on top of the evaluation stack to int64.
|
.gif) .gif) | Conv_Ovf_I |
Converts the signed value on top of the evaluation stack to signed native int, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_I_Un |
Converts the unsigned value on top of the evaluation stack to signed native int, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_I1 |
Converts the signed value on top of the evaluation stack to signed int8 and extends it to int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_I1_Un |
Converts the unsigned value on top of the evaluation stack to signed int8 and extends it to int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_I2 |
Converts the signed value on top of the evaluation stack to signed int16 and extending it to int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_I2_Un |
Converts the unsigned value on top of the evaluation stack to signed int16 and extends it to int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_I4 |
Converts the signed value on top of the evaluation stack to signed int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_I4_Un |
Converts the unsigned value on top of the evaluation stack to signed int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_I8 |
Converts the signed value on top of the evaluation stack to signed int64, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_I8_Un |
Converts the unsigned value on top of the evaluation stack to signed int64, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U |
Converts the signed value on top of the evaluation stack to unsigned native int, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U_Un |
Converts the unsigned value on top of the evaluation stack to unsigned native int, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U1 |
Converts the signed value on top of the evaluation stack to unsigned int8 and extends it to int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U1_Un |
Converts the unsigned value on top of the evaluation stack to unsigned int8 and extends it to int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U2 |
Converts the signed value on top of the evaluation stack to unsigned int16 and extends it to int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U2_Un |
Converts the unsigned value on top of the evaluation stack to unsigned int16 and extends it to int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U4 |
Converts the signed value on top of the evaluation stack to unsigned int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U4_Un |
Converts the unsigned value on top of the evaluation stack to unsigned int32, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U8 |
Converts the signed value on top of the evaluation stack to unsigned int64, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_Ovf_U8_Un |
Converts the unsigned value on top of the evaluation stack to unsigned int64, throwing OverflowException on overflow.
|
.gif) .gif) | Conv_R_Un |
Converts the unsigned integer value on top of the evaluation stack to float32.
|
.gif) .gif) | Conv_R4 |
Converts the value on top of the evaluation stack to float32.
|
.gif) .gif) | Conv_R8 |
Converts the value on top of the evaluation stack to float64.
|
.gif) .gif) | Conv_U |
Converts the value on top of the evaluation stack to unsigned native int, and extends it to native int.
|
.gif) .gif) | Conv_U1 |
Converts the value on top of the evaluation stack to unsigned int8, and extends it to int32.
|
.gif) .gif) | Conv_U2 |
Converts the value on top of the evaluation stack to unsigned int16, and extends it to int32.
|
.gif) .gif) | Conv_U4 |
Converts the value on top of the evaluation stack to unsigned int32, and extends it to int32.
|
.gif) .gif) | Conv_U8 |
Converts the value on top of the evaluation stack to unsigned int64, and extends it to int64.
|
.gif) .gif) | Cpblk |
Copies a specified number bytes from a source address to a destination address.
|
.gif) .gif) | Cpobj |
Copies the value type located at the address of an object (type &, * or native int) to the address of the destination object (type &, * or native int).
|
.gif) .gif) | Div |
Divides two values and pushes the result as a floating-point (type F) or quotient (type int32) onto the evaluation stack.
|
.gif) .gif) | Div_Un |
Divides two unsigned integer values and pushes the result (int32) onto the evaluation stack.
|
.gif) .gif) | Dup |
Copies the current topmost value on the evaluation stack, and then pushes the copy onto the evaluation stack.
|
.gif) .gif) | Endfilter |
Transfers control from the filter clause of an exception back to the Common Language Infrastructure (CLI) exception handler.
|
.gif) .gif) | Endfinally |
Transfers control from the fault or finally clause of an exception block back to the Common Language Infrastructure (CLI) exception handler.
|
.gif) .gif) | Initblk |
Initializes a specified block of memory at a specific address to a given size and initial value.
|
.gif) .gif) | Initobj |
Initializes each field of the value type at a specified address to a null reference or a 0 of the appropriate primitive type.
|
.gif) .gif) | Isinst |
Tests whether an object reference (type O) is an instance of a particular class.
|
.gif) .gif) | Jmp |
Exits current method and jumps to specified method.
|
.gif) .gif) | Ldarg |
Loads an argument (referenced by a specified index value) onto the stack.
|
.gif) .gif) | Ldarg_0 |
Loads the argument at index 0 onto the evaluation stack.
|
.gif) .gif) | Ldarg_1 |
Loads the argument at index 1 onto the evaluation stack.
|
.gif) .gif) | Ldarg_2 |
Loads the argument at index 2 onto the evaluation stack.
|
.gif) .gif) | Ldarg_3 |
Loads the argument at index 3 onto the evaluation stack.
|
.gif) |