IDkmGPUDisassemblyQuery.GetNextGPUInstructionAddress Method
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.
Returns the address of the next instruction relative to a starting address.
public:
System::UInt64 GetNextGPUInstructionAddress(Microsoft::VisualStudio::Debugger::DkmModuleInstance ^ moduleInstance, System::UInt64 startAddress);
public ulong GetNextGPUInstructionAddress (Microsoft.VisualStudio.Debugger.DkmModuleInstance moduleInstance, ulong startAddress);
abstract member GetNextGPUInstructionAddress : Microsoft.VisualStudio.Debugger.DkmModuleInstance * uint64 -> uint64
Public Function GetNextGPUInstructionAddress (moduleInstance As DkmModuleInstance, startAddress As ULong) As ULong
Parameters
- moduleInstance
- DkmModuleInstance
[In] The Module Instance class represent a code bundle (ex: dll or exe) which is loaded into a particular process at a particular location. Module Instance objects are 1:1 with the execution environment's notion of a code bundle. For example, in native code, Module Instance objects are 1:1 with base address.
- startAddress
- UInt64
[In] The address of the current instruction.
Returns
[Out] The address of the next instruction from StartAddress.