IDkmGPUSymbolProviderCallback.GetNoSourceRanges(DkmInstructionSymbol) Method

Definition

Queries the symbol provider to determine the ranges of instructions which do not correspond to any user source statements and are used by the base debug monitor to always step through during stepping.

public:
 cli::array <Microsoft::VisualStudio::Debugger::Symbols::DkmSteppingRange> ^ GetNoSourceRanges(Microsoft::VisualStudio::Debugger::Symbols::DkmInstructionSymbol ^ instruction);
public:
 Platform::Array <Microsoft::VisualStudio::Debugger::Symbols::DkmSteppingRange> ^ GetNoSourceRanges(Microsoft::VisualStudio::Debugger::Symbols::DkmInstructionSymbol ^ instruction);
std::Array <Microsoft::VisualStudio::Debugger::Symbols::DkmSteppingRange> GetNoSourceRanges(Microsoft::VisualStudio::Debugger::Symbols::DkmInstructionSymbol const & instruction);
public Microsoft.VisualStudio.Debugger.Symbols.DkmSteppingRange[] GetNoSourceRanges (Microsoft.VisualStudio.Debugger.Symbols.DkmInstructionSymbol instruction);
abstract member GetNoSourceRanges : Microsoft.VisualStudio.Debugger.Symbols.DkmInstructionSymbol -> Microsoft.VisualStudio.Debugger.Symbols.DkmSteppingRange[]
Public Function GetNoSourceRanges (instruction As DkmInstructionSymbol) As DkmSteppingRange()

Parameters

instruction
DkmInstructionSymbol

[In] DkmInstructionSymbol represents a method in the target process.

Returns

[Out] Array of no source ranges to always step through. This array will be empty if there are no no-source ranges for the given instruction.

Applies to