IDkmGPUSymbolQuery.TranslateAcceleratorTagByRva Method

Definition

Translate accelerator pointer tag into HLSL register attributes using relative virtual address.

public:
 void TranslateAcceleratorTagByRva(Microsoft::VisualStudio::Debugger::Symbols::DkmModule ^ module, System::UInt32 inputTag, System::UInt32 rva, [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 TranslateAcceleratorTagByRva (Microsoft.VisualStudio.Debugger.Symbols.DkmModule module, uint inputTag, uint rva, out uint registerType, out uint registerIndex, out uint firstElement, out uint vectorElements, out uint byteOffset, out uint vectorElementSize);
abstract member TranslateAcceleratorTagByRva : Microsoft.VisualStudio.Debugger.Symbols.DkmModule * uint32 * uint32 * uint32 * uint32 * uint32 * uint32 * uint32 * uint32 -> unit
Public Sub TranslateAcceleratorTagByRva (module As DkmModule, inputTag As UInteger, rva 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.

rva
UInt32

[In] RVA to use for filtering; ignored if zero.

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.

Applies to