DkmILSubtract Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Pops two values off the evaluation stack, subtracts them, and pushes the difference onto the evaluation stack. Both operands popped off the stack must be the size indicated by DkmPrimitiveObjectType. The first value popped from the stack will be subtracted from the second value popped, so to evaluate "a - b", you would push a, then push b, then subtract. The resultant value will have the same size as the operands. In the event of overflow, the result will be truncated.
public ref class DkmILSubtract : Microsoft::VisualStudio::Debugger::Evaluation::IL::DkmILInstruction
[Windows::Foundation::Metadata::WebHostHidden]
public ref class DkmILSubtract : Microsoft::VisualStudio::Debugger::Evaluation::IL::DkmILInstruction
[Windows::Foundation::Metadata::WebHostHidden]
class DkmILSubtract : Microsoft::VisualStudio::Debugger::Evaluation::IL::DkmILInstruction
[System.Runtime.InteropServices.Guid("8dd587d3-eb37-aba6-37b6-b6cae1950c3e")]
public class DkmILSubtract : Microsoft.VisualStudio.Debugger.Evaluation.IL.DkmILInstruction
[<System.Runtime.InteropServices.Guid("8dd587d3-eb37-aba6-37b6-b6cae1950c3e")>]
type DkmILSubtract = class
inherit DkmILInstruction
Public Class DkmILSubtract
Inherits DkmILInstruction
- Inheritance
- Attributes
Properties
TagValue |
DkmILInstruction is an abstract base class. This enum indicates which derived class this object is an instance of. (Inherited from DkmILInstruction) |
Type |
The type of subtraction to perform (e.g. integer vs. floating-point). |
UniqueId |
Uniquely identifies the DkmILInstruction object. Used as a hash-table key to allow for quickly matching up DkmIL instructions with their matching values. (Inherited from DkmILInstruction) |
Methods
Create(DkmPrimitiveObjectType) |
Create a new DkmILSubtract object instance. |