IDkmGPUSymbolProviderCallback.TranslateAcceleratorTagByIP 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.
Translate accelerator pointer tag into HLSL register attributes.
public:
void TranslateAcceleratorTagByIP(Microsoft::VisualStudio::Debugger::Symbols::DkmModule ^ module, System::UInt32 inputTag, System::UInt32 instructionPointer, [Runtime::InteropServices::Out] System::UInt32 % registerType, [Runtime::InteropServices::Out] System::UInt32 % registerIndex, [Runtime::InteropServices::Out] System::UInt32 % firstElement, [Runtime::InteropServices::Out] System::UInt32 % vectorElements, [Runtime::InteropServices::Out] System::UInt32 % byteOffset, [Runtime::InteropServices::Out] System::UInt32 % vectorElementSize);
public void TranslateAcceleratorTagByIP (Microsoft.VisualStudio.Debugger.Symbols.DkmModule module, uint inputTag, uint instructionPointer, out uint registerType, out uint registerIndex, out uint firstElement, out uint vectorElements, out uint byteOffset, out uint vectorElementSize);
abstract member TranslateAcceleratorTagByIP : Microsoft.VisualStudio.Debugger.Symbols.DkmModule * uint32 * uint32 * uint32 * uint32 * uint32 * uint32 * uint32 * uint32 -> unit
Public Sub TranslateAcceleratorTagByIP (module As DkmModule, inputTag As UInteger, instructionPointer As UInteger, ByRef registerType As UInteger, ByRef registerIndex As UInteger, ByRef firstElement As UInteger, ByRef vectorElements As UInteger, ByRef byteOffset As UInteger, ByRef vectorElementSize As UInteger)
Parameters
- module
- DkmModule
[In] The DkmModule class represents a code bundle (ex: dll or exe) which is or once was loaded into one or more processes. The DkmModule class is the central object to the symbol APIs, and is 1:1 with the symbol handler's notation of what is loaded. If a code bundle loads into three different processes (or the same process but with three different base addresses or three different app domains) but the symbol handler thinks of all of these as being identical, there will be only one module object.
- inputTag
- UInt32
[In] Accelerator pointer tag found in symbols.
- instructionPointer
- UInt32
[In] current instruction pointer used to get scope for pointer translation.
- registerType
- UInt32
[Out] HLSL register type.
- registerIndex
- UInt32
[Out] HLSL register index.
- firstElement
- UInt32
[Out] Index of first vector element.
- vectorElements
- UInt32
[Out] Number of vector elements.
- byteOffset
- UInt32
[Out] Offset in bytes.
- vectorElementSize
- UInt32
[Out] Size of each vector element.