mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-09 08:11:06 +00:00
* Buitins can either be thread-varying or global, we pick the narrowest type to use
2426 lines
82 KiB
C++
2426 lines
82 KiB
C++
/******************************************************************************
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2019-2025 Baldur Karlsson
|
|
* Copyright (c) 2014 Crytek
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
******************************************************************************/
|
|
|
|
#include "core/settings.h"
|
|
#include "data/resource.h"
|
|
#include "driver/shaders/dxbc/dx_debug.h"
|
|
#include "driver/shaders/dxbc/dxbc_bytecode.h"
|
|
#include "driver/shaders/dxbc/dxbc_debug.h"
|
|
#include "maths/formatpacking.h"
|
|
#include "maths/vec.h"
|
|
#include "strings/string_utils.h"
|
|
#include "d3d11_context.h"
|
|
#include "d3d11_debug.h"
|
|
#include "d3d11_manager.h"
|
|
#include "d3d11_renderstate.h"
|
|
#include "d3d11_replay.h"
|
|
#include "d3d11_resources.h"
|
|
#include "d3d11_shader_cache.h"
|
|
|
|
#include "data/hlsl/hlsl_cbuffers.h"
|
|
|
|
RDOC_EXTERN_CONFIG(bool, D3D_Hack_EnableGroups);
|
|
|
|
class D3D11DebugAPIWrapper : public DXBCDebug::DebugAPIWrapper
|
|
{
|
|
public:
|
|
D3D11DebugAPIWrapper(WrappedID3D11Device *device, const DXBC::DXBCContainer *dxbc,
|
|
DXBCDebug::GlobalState &globalState, uint32_t eid);
|
|
~D3D11DebugAPIWrapper();
|
|
|
|
void SetCurrentInstruction(uint32_t instruction) { m_instruction = instruction; }
|
|
void AddDebugMessage(MessageCategory c, MessageSeverity sv, MessageSource src, rdcstr d);
|
|
|
|
void FetchSRV(const DXBCDebug::BindingSlot &slot);
|
|
void FetchUAV(const DXBCDebug::BindingSlot &slot);
|
|
|
|
bool CalculateMathIntrinsic(DXBCBytecode::OpcodeType opcode, const ShaderVariable &input,
|
|
ShaderVariable &output1, ShaderVariable &output2);
|
|
|
|
ShaderVariable GetSampleInfo(DXBCBytecode::OperandType type, bool isAbsoluteResource,
|
|
const DXBCDebug::BindingSlot &slot, const char *opString);
|
|
ShaderVariable GetBufferInfo(DXBCBytecode::OperandType type, const DXBCDebug::BindingSlot &slot,
|
|
const char *opString);
|
|
ShaderVariable GetResourceInfo(DXBCBytecode::OperandType type, const DXBCDebug::BindingSlot &slot,
|
|
uint32_t mipLevel, int &dim);
|
|
|
|
bool CalculateSampleGather(DXBCBytecode::OpcodeType opcode,
|
|
DXBCDebug::SampleGatherResourceData resourceData,
|
|
DXBCDebug::SampleGatherSamplerData samplerData,
|
|
const ShaderVariable &uvIn, const ShaderVariable &ddxCalcIn,
|
|
const ShaderVariable &ddyCalcIn, const int8_t texelOffsets[3],
|
|
int multisampleIndex, float lodOrCompareValue,
|
|
const uint8_t swizzle[4], DXBCDebug::GatherChannel gatherChannel,
|
|
const char *opString, ShaderVariable &output);
|
|
|
|
private:
|
|
DXBC::ShaderType GetShaderType() { return m_dxbc ? m_dxbc->m_Type : DXBC::ShaderType::Pixel; }
|
|
WrappedID3D11Device *m_pDevice;
|
|
const DXBC::DXBCContainer *m_dxbc;
|
|
DXBCDebug::GlobalState &m_globalState;
|
|
uint32_t m_instruction;
|
|
uint32_t m_EventID;
|
|
bool m_DidReplay = false;
|
|
};
|
|
|
|
D3D11DebugAPIWrapper::D3D11DebugAPIWrapper(WrappedID3D11Device *device,
|
|
const DXBC::DXBCContainer *dxbc,
|
|
DXBCDebug::GlobalState &globalState, uint32_t eid)
|
|
: m_pDevice(device), m_dxbc(dxbc), m_globalState(globalState), m_instruction(0), m_EventID(eid)
|
|
{
|
|
}
|
|
|
|
D3D11DebugAPIWrapper::~D3D11DebugAPIWrapper()
|
|
{
|
|
// if we replayed to before the action for fetching some UAVs, replay back to after the action to
|
|
// keep
|
|
// the state consistent.
|
|
if(m_DidReplay)
|
|
{
|
|
D3D11MarkerRegion region("ResetReplay");
|
|
// replay the action to get back to 'normal' state for this event, and mark that we need to
|
|
// replay back to pristine state next time we need to fetch data.
|
|
m_pDevice->ReplayLog(0, m_EventID, eReplay_OnlyDraw);
|
|
}
|
|
}
|
|
|
|
void D3D11DebugAPIWrapper::AddDebugMessage(MessageCategory c, MessageSeverity sv, MessageSource src,
|
|
rdcstr d)
|
|
{
|
|
m_pDevice->AddDebugMessage(c, sv, src, d);
|
|
}
|
|
|
|
void D3D11DebugAPIWrapper::FetchSRV(const DXBCDebug::BindingSlot &slot)
|
|
{
|
|
RDCASSERT(slot.registerSpace == 0);
|
|
RDCASSERT(slot.shaderRegister < D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT);
|
|
|
|
D3D11RenderState *rs = m_pDevice->GetImmediateContext()->GetCurrentPipelineState();
|
|
ID3D11ShaderResourceView *pSRV = NULL;
|
|
if(GetShaderType() == DXBC::ShaderType::Vertex)
|
|
pSRV = rs->VS.SRVs[slot.shaderRegister];
|
|
else if(GetShaderType() == DXBC::ShaderType::Pixel)
|
|
pSRV = rs->PS.SRVs[slot.shaderRegister];
|
|
else if(GetShaderType() == DXBC::ShaderType::Compute)
|
|
pSRV = rs->CS.SRVs[slot.shaderRegister];
|
|
|
|
DXBCDebug::GlobalState::SRVData &srvData = m_globalState.srvs[slot];
|
|
|
|
if(!pSRV)
|
|
return;
|
|
|
|
ID3D11Resource *res = NULL;
|
|
pSRV->GetResource(&res);
|
|
|
|
if(!res)
|
|
return; // @NoCoverage
|
|
|
|
D3D11_SHADER_RESOURCE_VIEW_DESC sdesc;
|
|
pSRV->GetDesc(&sdesc);
|
|
|
|
if(sdesc.Format != DXGI_FORMAT_UNKNOWN)
|
|
{
|
|
DXBCDebug::FillViewFmt(sdesc.Format, srvData.format);
|
|
}
|
|
else
|
|
{
|
|
D3D11_RESOURCE_DIMENSION dim;
|
|
res->GetType(&dim);
|
|
|
|
if(dim == D3D11_RESOURCE_DIMENSION_BUFFER)
|
|
{
|
|
ID3D11Buffer *buf = (ID3D11Buffer *)res;
|
|
D3D11_BUFFER_DESC bufdesc;
|
|
buf->GetDesc(&bufdesc);
|
|
|
|
srvData.format.stride = bufdesc.StructureByteStride;
|
|
|
|
// if we didn't get a type from the SRV description, try to pull it from the declaration
|
|
DXBCDebug::LookupSRVFormatFromShaderReflection(*m_dxbc->GetReflection(), slot, srvData.format);
|
|
}
|
|
}
|
|
|
|
if(sdesc.ViewDimension == D3D11_SRV_DIMENSION_BUFFER)
|
|
{
|
|
// I know this isn't what the docs say, but as best as I can tell
|
|
// this is how it's used.
|
|
srvData.firstElement = sdesc.Buffer.FirstElement;
|
|
srvData.numElements = sdesc.Buffer.NumElements;
|
|
}
|
|
else if(sdesc.ViewDimension == D3D11_SRV_DIMENSION_BUFFEREX)
|
|
{
|
|
srvData.firstElement = sdesc.BufferEx.FirstElement;
|
|
srvData.numElements = sdesc.BufferEx.NumElements;
|
|
}
|
|
|
|
if(res)
|
|
{
|
|
if(WrappedID3D11Buffer::IsAlloc(res))
|
|
{
|
|
m_pDevice->GetDebugManager()->GetBufferData((ID3D11Buffer *)res, 0, 0, srvData.data);
|
|
}
|
|
}
|
|
|
|
SAFE_RELEASE(res);
|
|
}
|
|
|
|
void D3D11DebugAPIWrapper::FetchUAV(const DXBCDebug::BindingSlot &slot)
|
|
{
|
|
// if the UAV might be dirty from side-effects from the action, replay back to right
|
|
// before it.
|
|
if(!m_DidReplay)
|
|
{
|
|
D3D11MarkerRegion region("un-dirtying resources");
|
|
m_pDevice->ReplayLog(0, m_EventID, eReplay_WithoutDraw);
|
|
m_DidReplay = true;
|
|
}
|
|
|
|
RDCASSERT(slot.registerSpace == 0);
|
|
RDCASSERT(slot.shaderRegister < D3D11_1_UAV_SLOT_COUNT);
|
|
|
|
WrappedID3D11DeviceContext *pContext = m_pDevice->GetImmediateContext();
|
|
D3D11RenderState *rs = pContext->GetCurrentPipelineState();
|
|
ID3D11UnorderedAccessView *pUAV = NULL;
|
|
if(GetShaderType() == DXBC::ShaderType::Pixel)
|
|
pUAV = rs->OM.UAVs[slot.shaderRegister - rs->OM.UAVStartSlot];
|
|
else if(GetShaderType() == DXBC::ShaderType::Compute)
|
|
pUAV = rs->CSUAVs[slot.shaderRegister];
|
|
|
|
DXBCDebug::GlobalState::UAVData &uavData = m_globalState.uavs[slot];
|
|
|
|
if(!pUAV)
|
|
return;
|
|
|
|
ID3D11Resource *res = NULL;
|
|
pUAV->GetResource(&res);
|
|
|
|
uavData.hiddenCounter = m_pDevice->GetDebugManager()->GetStructCount(pUAV);
|
|
|
|
D3D11_UNORDERED_ACCESS_VIEW_DESC udesc;
|
|
pUAV->GetDesc(&udesc);
|
|
|
|
DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN;
|
|
|
|
if(udesc.Format != DXGI_FORMAT_UNKNOWN)
|
|
format = udesc.Format;
|
|
|
|
if(format == DXGI_FORMAT_UNKNOWN)
|
|
{
|
|
if(WrappedID3D11Texture1D::IsAlloc(res))
|
|
{
|
|
D3D11_TEXTURE1D_DESC desc;
|
|
((WrappedID3D11Texture1D *)res)->GetDesc(&desc);
|
|
format = desc.Format;
|
|
}
|
|
else if(WrappedID3D11Texture2D1::IsAlloc(res))
|
|
{
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
((WrappedID3D11Texture2D1 *)res)->GetDesc(&desc);
|
|
format = desc.Format;
|
|
}
|
|
else if(WrappedID3D11Texture3D1::IsAlloc(res))
|
|
{
|
|
D3D11_TEXTURE3D_DESC desc;
|
|
((WrappedID3D11Texture3D1 *)res)->GetDesc(&desc);
|
|
format = desc.Format;
|
|
}
|
|
}
|
|
|
|
if(format != DXGI_FORMAT_UNKNOWN)
|
|
{
|
|
ResourceFormat fmt = MakeResourceFormat(GetTypedFormat(udesc.Format));
|
|
|
|
uavData.format.byteWidth = fmt.compByteWidth;
|
|
uavData.format.numComps = fmt.compCount;
|
|
uavData.format.fmt = fmt.compType;
|
|
|
|
if(udesc.Format == DXGI_FORMAT_R11G11B10_FLOAT)
|
|
uavData.format.byteWidth = 11;
|
|
if(udesc.Format == DXGI_FORMAT_R10G10B10A2_UINT || udesc.Format == DXGI_FORMAT_R10G10B10A2_UNORM)
|
|
uavData.format.byteWidth = 10;
|
|
}
|
|
|
|
if(udesc.ViewDimension == D3D11_UAV_DIMENSION_BUFFER)
|
|
{
|
|
uavData.firstElement = udesc.Buffer.FirstElement;
|
|
uavData.numElements = udesc.Buffer.NumElements;
|
|
}
|
|
|
|
if(res)
|
|
{
|
|
if(WrappedID3D11Buffer::IsAlloc(res))
|
|
{
|
|
m_pDevice->GetDebugManager()->GetBufferData((ID3D11Buffer *)res, 0, 0, uavData.data);
|
|
}
|
|
else
|
|
{
|
|
uavData.tex = true;
|
|
|
|
uint32_t &rowPitch = uavData.rowPitch;
|
|
uint32_t &depthPitch = uavData.depthPitch;
|
|
|
|
bytebuf &data = uavData.data;
|
|
|
|
if(udesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE1D ||
|
|
udesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE1DARRAY)
|
|
{
|
|
D3D11_TEXTURE1D_DESC desc;
|
|
((WrappedID3D11Texture1D *)res)->GetDesc(&desc);
|
|
|
|
desc.MiscFlags = 0;
|
|
desc.CPUAccessFlags = D3D11_CPU_ACCESS_READ | D3D11_CPU_ACCESS_WRITE;
|
|
desc.BindFlags = 0;
|
|
desc.Usage = D3D11_USAGE_STAGING;
|
|
|
|
ID3D11Texture1D *stagingTex = NULL;
|
|
m_pDevice->CreateTexture1D(&desc, NULL, &stagingTex);
|
|
|
|
pContext->CopyResource(stagingTex, res);
|
|
|
|
D3D11_MAPPED_SUBRESOURCE mapped;
|
|
pContext->Map(stagingTex, udesc.Texture1D.MipSlice, D3D11_MAP_READ, 0, &mapped);
|
|
|
|
rowPitch = 0;
|
|
depthPitch = 0;
|
|
size_t datasize = GetByteSize(desc.Width, 1, 1, desc.Format, udesc.Texture1D.MipSlice);
|
|
|
|
uint32_t numSlices = 1;
|
|
|
|
byte *srcdata = (byte *)mapped.pData;
|
|
if(udesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE1DARRAY)
|
|
{
|
|
rowPitch = mapped.RowPitch;
|
|
srcdata += udesc.Texture1DArray.FirstArraySlice * rowPitch;
|
|
numSlices = udesc.Texture1DArray.ArraySize;
|
|
datasize = numSlices * rowPitch;
|
|
}
|
|
|
|
data.resize(datasize);
|
|
|
|
// copy with all padding etc intact
|
|
memcpy(&data[0], srcdata, datasize);
|
|
|
|
pContext->Unmap(stagingTex, udesc.Texture1D.MipSlice);
|
|
|
|
SAFE_RELEASE(stagingTex);
|
|
}
|
|
else if(udesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE2D ||
|
|
udesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE2DARRAY)
|
|
{
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
((WrappedID3D11Texture2D1 *)res)->GetDesc(&desc);
|
|
|
|
desc.MiscFlags = 0;
|
|
desc.CPUAccessFlags = D3D11_CPU_ACCESS_READ | D3D11_CPU_ACCESS_WRITE;
|
|
desc.BindFlags = 0;
|
|
desc.Usage = D3D11_USAGE_STAGING;
|
|
|
|
ID3D11Texture2D *stagingTex = NULL;
|
|
m_pDevice->CreateTexture2D(&desc, NULL, &stagingTex);
|
|
|
|
pContext->CopyResource(stagingTex, res);
|
|
|
|
// MipSlice in union is shared between Texture2D and Texture2DArray unions, so safe to
|
|
// use either
|
|
D3D11_MAPPED_SUBRESOURCE mapped;
|
|
pContext->Map(stagingTex, udesc.Texture2D.MipSlice, D3D11_MAP_READ, 0, &mapped);
|
|
|
|
rowPitch = mapped.RowPitch;
|
|
depthPitch = 0;
|
|
size_t datasize = rowPitch * RDCMAX(1U, desc.Height >> udesc.Texture2D.MipSlice);
|
|
|
|
uint32_t numSlices = 1;
|
|
|
|
byte *srcdata = (byte *)mapped.pData;
|
|
if(udesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE2DARRAY)
|
|
{
|
|
depthPitch = mapped.DepthPitch;
|
|
srcdata += udesc.Texture2DArray.FirstArraySlice * depthPitch;
|
|
numSlices = udesc.Texture2DArray.ArraySize;
|
|
datasize = numSlices * depthPitch;
|
|
}
|
|
|
|
// copy with all padding etc intact
|
|
data.resize(datasize);
|
|
|
|
memcpy(&data[0], srcdata, datasize);
|
|
|
|
pContext->Unmap(stagingTex, udesc.Texture2D.MipSlice);
|
|
|
|
SAFE_RELEASE(stagingTex);
|
|
}
|
|
else if(udesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE3D)
|
|
{
|
|
D3D11_TEXTURE3D_DESC desc;
|
|
((WrappedID3D11Texture3D1 *)res)->GetDesc(&desc);
|
|
|
|
desc.MiscFlags = 0;
|
|
desc.CPUAccessFlags = D3D11_CPU_ACCESS_READ | D3D11_CPU_ACCESS_WRITE;
|
|
desc.BindFlags = 0;
|
|
desc.Usage = D3D11_USAGE_STAGING;
|
|
|
|
ID3D11Texture3D *stagingTex = NULL;
|
|
m_pDevice->CreateTexture3D(&desc, NULL, &stagingTex);
|
|
|
|
pContext->CopyResource(stagingTex, res);
|
|
|
|
// MipSlice in union is shared between Texture2D and Texture2DArray unions, so safe to
|
|
// use either
|
|
D3D11_MAPPED_SUBRESOURCE mapped;
|
|
pContext->Map(stagingTex, udesc.Texture3D.MipSlice, D3D11_MAP_READ, 0, &mapped);
|
|
|
|
rowPitch = mapped.RowPitch;
|
|
depthPitch = mapped.DepthPitch;
|
|
|
|
byte *srcdata = (byte *)mapped.pData;
|
|
srcdata += udesc.Texture3D.FirstWSlice * mapped.DepthPitch;
|
|
uint32_t numSlices = udesc.Texture3D.WSize;
|
|
size_t datasize = depthPitch * numSlices;
|
|
|
|
data.resize(datasize);
|
|
|
|
// copy with all padding etc intact
|
|
memcpy(&data[0], srcdata, datasize);
|
|
|
|
pContext->Unmap(stagingTex, udesc.Texture3D.MipSlice);
|
|
|
|
SAFE_RELEASE(stagingTex);
|
|
}
|
|
}
|
|
}
|
|
|
|
SAFE_RELEASE(res);
|
|
}
|
|
|
|
ShaderVariable D3D11DebugAPIWrapper::GetSampleInfo(DXBCBytecode::OperandType type,
|
|
bool isAbsoluteResource,
|
|
const DXBCDebug::BindingSlot &slot,
|
|
const char *opString)
|
|
{
|
|
ID3D11DeviceContext *context = NULL;
|
|
m_pDevice->GetImmediateContext(&context);
|
|
|
|
ShaderVariable result("", 0U, 0U, 0U, 0U);
|
|
|
|
ID3D11Resource *res = NULL;
|
|
|
|
if(type == DXBCBytecode::TYPE_RASTERIZER)
|
|
{
|
|
ID3D11RenderTargetView *rtv[8] = {};
|
|
ID3D11DepthStencilView *dsv = NULL;
|
|
|
|
context->OMGetRenderTargets(8, rtv, &dsv);
|
|
|
|
// try depth first - both should match sample count though to be valid
|
|
if(dsv)
|
|
{
|
|
dsv->GetResource(&res);
|
|
}
|
|
else
|
|
{
|
|
for(size_t i = 0; i < ARRAY_COUNT(rtv); i++)
|
|
{
|
|
if(rtv[i])
|
|
{
|
|
rtv[i]->GetResource(&res);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(!res)
|
|
{
|
|
RDCWARN("No targets bound for output when calling sampleinfo on rasterizer");
|
|
|
|
m_pDevice->AddDebugMessage(
|
|
MessageCategory::Shaders, MessageSeverity::Medium, MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt("Shader debugging %d: %s\n"
|
|
"No targets bound for output when calling sampleinfo on rasterizer",
|
|
m_instruction, opString));
|
|
}
|
|
|
|
for(size_t i = 0; i < ARRAY_COUNT(rtv); i++)
|
|
SAFE_RELEASE(rtv[i]);
|
|
SAFE_RELEASE(dsv);
|
|
}
|
|
else if(type == DXBCBytecode::TYPE_RESOURCE && isAbsoluteResource)
|
|
{
|
|
ID3D11ShaderResourceView *srv = NULL;
|
|
switch(GetShaderType())
|
|
{
|
|
case DXBC::ShaderType::Vertex:
|
|
context->VSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Hull:
|
|
context->HSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Domain:
|
|
context->DSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Geometry:
|
|
context->GSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Pixel:
|
|
context->PSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Compute:
|
|
context->CSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
default: RDCERR("Unhandled shader type %d", GetShaderType()); break;
|
|
}
|
|
|
|
if(srv)
|
|
{
|
|
srv->GetResource(&res);
|
|
}
|
|
else
|
|
{
|
|
RDCWARN("SRV is NULL being queried by sampleinfo");
|
|
|
|
m_pDevice->AddDebugMessage(
|
|
MessageCategory::Shaders, MessageSeverity::Medium, MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt("Shader debugging %d: %s\nSRV is NULL being queried by sampleinfo",
|
|
m_instruction, opString));
|
|
}
|
|
|
|
SAFE_RELEASE(srv);
|
|
}
|
|
else
|
|
{
|
|
RDCWARN("unexpected operand type to sample_info");
|
|
}
|
|
|
|
if(res)
|
|
{
|
|
D3D11_RESOURCE_DIMENSION dim = D3D11_RESOURCE_DIMENSION_UNKNOWN;
|
|
res->GetType(&dim);
|
|
|
|
if(dim == D3D11_RESOURCE_DIMENSION_TEXTURE2D)
|
|
{
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
((ID3D11Texture2D *)res)->GetDesc(&desc);
|
|
|
|
// returns 1 for non-multisampled resources
|
|
result.value.u32v[0] = RDCMAX(1U, desc.SampleDesc.Count);
|
|
}
|
|
else
|
|
{
|
|
if(type == DXBCBytecode::TYPE_RASTERIZER)
|
|
{
|
|
// special behaviour for non-2D (i.e. by definition non-multisampled) textures when
|
|
// querying the rasterizer, just return 1.
|
|
result.value.u32v[0] = 1;
|
|
}
|
|
else
|
|
{
|
|
m_pDevice->AddDebugMessage(
|
|
MessageCategory::Shaders, MessageSeverity::Medium, MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt("Shader debugging %d: %s\nResource specified is not a 2D texture",
|
|
m_instruction, opString));
|
|
|
|
result.value.u32v[0] = 0;
|
|
}
|
|
}
|
|
|
|
SAFE_RELEASE(res);
|
|
}
|
|
SAFE_RELEASE(context);
|
|
return result;
|
|
}
|
|
|
|
ShaderVariable D3D11DebugAPIWrapper::GetBufferInfo(DXBCBytecode::OperandType type,
|
|
const DXBCDebug::BindingSlot &slot,
|
|
const char *opString)
|
|
{
|
|
ID3D11DeviceContext *context = NULL;
|
|
m_pDevice->GetImmediateContext(&context);
|
|
|
|
ShaderVariable result("", 0U, 0U, 0U, 0U);
|
|
|
|
if(type == DXBCBytecode::TYPE_UNORDERED_ACCESS_VIEW)
|
|
{
|
|
ID3D11UnorderedAccessView *uav = NULL;
|
|
if(GetShaderType() == DXBC::ShaderType::Compute)
|
|
context->CSGetUnorderedAccessViews(slot.shaderRegister, 1, &uav);
|
|
else
|
|
context->OMGetRenderTargetsAndUnorderedAccessViews(0, NULL, NULL, slot.shaderRegister, 1, &uav);
|
|
|
|
if(uav)
|
|
{
|
|
D3D11_UNORDERED_ACCESS_VIEW_DESC uavDesc;
|
|
uav->GetDesc(&uavDesc);
|
|
|
|
if(uavDesc.ViewDimension == D3D11_UAV_DIMENSION_BUFFER)
|
|
{
|
|
result.value.u32v[0] = result.value.u32v[1] = result.value.u32v[2] = result.value.u32v[3] =
|
|
uavDesc.Buffer.NumElements;
|
|
}
|
|
else
|
|
{
|
|
RDCWARN("Unexpected UAV dimension %d passed to bufinfo", uavDesc.ViewDimension);
|
|
|
|
m_pDevice->AddDebugMessage(
|
|
MessageCategory::Shaders, MessageSeverity::High, MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt(
|
|
"Shader debugging %d: %s\nUAV being queried by bufinfo is not a buffer",
|
|
m_instruction, opString));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
RDCWARN("UAV is NULL being queried by bufinfo");
|
|
|
|
m_pDevice->AddDebugMessage(
|
|
MessageCategory::Shaders, MessageSeverity::Medium, MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt("Shader debugging %d: %s\nUAV being queried by bufinfo is NULL",
|
|
m_instruction, opString));
|
|
}
|
|
|
|
SAFE_RELEASE(uav);
|
|
}
|
|
else
|
|
{
|
|
ID3D11ShaderResourceView *srv = NULL;
|
|
switch(GetShaderType())
|
|
{
|
|
case DXBC::ShaderType::Vertex:
|
|
context->VSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Hull:
|
|
context->HSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Domain:
|
|
context->DSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Geometry:
|
|
context->GSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Pixel:
|
|
context->PSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Compute:
|
|
context->CSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
default: RDCERR("Unhandled shader type %d", GetShaderType()); break;
|
|
}
|
|
|
|
if(srv)
|
|
{
|
|
D3D11_SHADER_RESOURCE_VIEW_DESC srvDesc;
|
|
srv->GetDesc(&srvDesc);
|
|
|
|
if(srvDesc.ViewDimension == D3D11_SRV_DIMENSION_BUFFER)
|
|
{
|
|
result.value.u32v[0] = result.value.u32v[1] = result.value.u32v[2] = result.value.u32v[3] =
|
|
srvDesc.Buffer.NumElements;
|
|
}
|
|
else if(srvDesc.ViewDimension == D3D11_SRV_DIMENSION_BUFFEREX)
|
|
{
|
|
result.value.u32v[0] = result.value.u32v[1] = result.value.u32v[2] = result.value.u32v[3] =
|
|
srvDesc.BufferEx.NumElements;
|
|
}
|
|
else
|
|
{
|
|
RDCWARN("Unexpected SRV dimension %d passed to bufinfo", srvDesc.ViewDimension);
|
|
|
|
m_pDevice->AddDebugMessage(
|
|
MessageCategory::Shaders, MessageSeverity::High, MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt(
|
|
"Shader debugging %d: %s\nSRV being queried by bufinfo is not a buffer",
|
|
m_instruction, opString));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
RDCWARN("SRV is NULL being queried by bufinfo");
|
|
|
|
m_pDevice->AddDebugMessage(
|
|
MessageCategory::Shaders, MessageSeverity::Medium, MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt("Shader debugging %d: %s\nSRV being queried by bufinfo is NULL",
|
|
m_instruction, opString));
|
|
}
|
|
|
|
SAFE_RELEASE(srv);
|
|
}
|
|
|
|
SAFE_RELEASE(context);
|
|
return result;
|
|
}
|
|
|
|
ShaderVariable D3D11DebugAPIWrapper::GetResourceInfo(DXBCBytecode::OperandType type,
|
|
const DXBCDebug::BindingSlot &slot,
|
|
uint32_t mipLevel, int &dim)
|
|
{
|
|
ID3D11DeviceContext *context = NULL;
|
|
m_pDevice->GetImmediateContext(&context);
|
|
|
|
ShaderVariable result("", 0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
if(type != DXBCBytecode::TYPE_UNORDERED_ACCESS_VIEW)
|
|
{
|
|
ID3D11ShaderResourceView *srv = NULL;
|
|
switch(GetShaderType())
|
|
{
|
|
case DXBC::ShaderType::Vertex:
|
|
context->VSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Hull:
|
|
context->HSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Domain:
|
|
context->DSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Geometry:
|
|
context->GSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Pixel:
|
|
context->PSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
case DXBC::ShaderType::Compute:
|
|
context->CSGetShaderResources(slot.shaderRegister, 1, &srv);
|
|
break;
|
|
default: RDCERR("Unhandled shader type %d", GetShaderType()); break;
|
|
}
|
|
|
|
if(srv)
|
|
{
|
|
D3D11_SHADER_RESOURCE_VIEW_DESC srvDesc;
|
|
srv->GetDesc(&srvDesc);
|
|
|
|
switch(srvDesc.ViewDimension)
|
|
{
|
|
case D3D11_SRV_DIMENSION_UNKNOWN:
|
|
case D3D11_SRV_DIMENSION_BUFFER:
|
|
{
|
|
RDCWARN("Invalid view dimension for GetResourceInfo");
|
|
break;
|
|
}
|
|
case D3D11_SRV_DIMENSION_BUFFEREX:
|
|
{
|
|
dim = 1;
|
|
|
|
result.value.u32v[0] = srvDesc.BufferEx.NumElements;
|
|
result.value.u32v[1] = 0;
|
|
result.value.u32v[2] = 0;
|
|
result.value.u32v[3] = 0;
|
|
break;
|
|
}
|
|
case D3D11_SRV_DIMENSION_TEXTURE1D:
|
|
case D3D11_SRV_DIMENSION_TEXTURE1DARRAY:
|
|
{
|
|
ID3D11Texture1D *tex = NULL;
|
|
srv->GetResource((ID3D11Resource **)&tex);
|
|
|
|
dim = 1;
|
|
|
|
if(tex)
|
|
{
|
|
bool isarray = srvDesc.ViewDimension == D3D11_SRV_DIMENSION_TEXTURE1DARRAY;
|
|
|
|
D3D11_TEXTURE1D_DESC desc;
|
|
tex->GetDesc(&desc);
|
|
result.value.u32v[0] = RDCMAX(1U, desc.Width >> mipLevel);
|
|
result.value.u32v[1] = isarray ? srvDesc.Texture1DArray.ArraySize : 0;
|
|
result.value.u32v[2] = 0;
|
|
result.value.u32v[3] =
|
|
isarray ? srvDesc.Texture1DArray.MipLevels : srvDesc.Texture1D.MipLevels;
|
|
|
|
if(isarray && (result.value.u32v[2] == 0 || result.value.u32v[2] == ~0U))
|
|
result.value.u32v[2] = desc.ArraySize;
|
|
|
|
if(result.value.u32v[3] == 0 || result.value.u32v[3] == ~0U)
|
|
result.value.u32v[3] = desc.MipLevels;
|
|
if(result.value.u32v[3] == 0 || result.value.u32v[3] == ~0U)
|
|
result.value.u32v[3] = CalcNumMips(desc.Width, 1, 1);
|
|
|
|
if(mipLevel >= result.value.u32v[3])
|
|
result.value.u32v[0] = result.value.u32v[1] = 0;
|
|
|
|
SAFE_RELEASE(tex);
|
|
}
|
|
break;
|
|
}
|
|
case D3D11_SRV_DIMENSION_TEXTURE2D:
|
|
case D3D11_SRV_DIMENSION_TEXTURE2DARRAY:
|
|
case D3D11_SRV_DIMENSION_TEXTURE2DMS:
|
|
case D3D11_SRV_DIMENSION_TEXTURE2DMSARRAY:
|
|
{
|
|
ID3D11Texture2D *tex = NULL;
|
|
srv->GetResource((ID3D11Resource **)&tex);
|
|
|
|
dim = 2;
|
|
|
|
if(tex)
|
|
{
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
tex->GetDesc(&desc);
|
|
result.value.u32v[0] = RDCMAX(1U, desc.Width >> mipLevel);
|
|
result.value.u32v[1] = RDCMAX(1U, desc.Height >> mipLevel);
|
|
|
|
if(srvDesc.ViewDimension == D3D11_SRV_DIMENSION_TEXTURE2D)
|
|
{
|
|
result.value.u32v[2] = 0;
|
|
result.value.u32v[3] = srvDesc.Texture2D.MipLevels;
|
|
}
|
|
else if(srvDesc.ViewDimension == D3D11_SRV_DIMENSION_TEXTURE2DARRAY)
|
|
{
|
|
result.value.u32v[2] = srvDesc.Texture2DArray.ArraySize;
|
|
result.value.u32v[3] = srvDesc.Texture2DArray.MipLevels;
|
|
|
|
if(result.value.u32v[2] == 0 || result.value.u32v[2] == ~0U)
|
|
result.value.u32v[2] = desc.ArraySize;
|
|
}
|
|
else if(srvDesc.ViewDimension == D3D11_SRV_DIMENSION_TEXTURE2DMS)
|
|
{
|
|
result.value.u32v[2] = 0;
|
|
result.value.u32v[3] = 1;
|
|
}
|
|
else if(srvDesc.ViewDimension == D3D11_SRV_DIMENSION_TEXTURE2DMSARRAY)
|
|
{
|
|
result.value.u32v[2] = srvDesc.Texture2DMSArray.ArraySize;
|
|
result.value.u32v[3] = 1;
|
|
|
|
if(result.value.u32v[2] == 0 || result.value.u32v[2] == ~0U)
|
|
result.value.u32v[2] = desc.ArraySize;
|
|
}
|
|
|
|
if(result.value.u32v[3] == 0 || result.value.u32v[3] == ~0U)
|
|
result.value.u32v[3] = desc.MipLevels;
|
|
if(result.value.u32v[3] == 0 || result.value.u32v[3] == ~0U)
|
|
result.value.u32v[3] = CalcNumMips(desc.Width, desc.Height, 1);
|
|
|
|
if(mipLevel >= result.value.u32v[3])
|
|
result.value.u32v[0] = result.value.u32v[1] = result.value.u32v[2] = 0;
|
|
|
|
SAFE_RELEASE(tex);
|
|
}
|
|
break;
|
|
}
|
|
case D3D11_SRV_DIMENSION_TEXTURE3D:
|
|
{
|
|
ID3D11Texture3D *tex = NULL;
|
|
srv->GetResource((ID3D11Resource **)&tex);
|
|
|
|
dim = 3;
|
|
|
|
if(tex)
|
|
{
|
|
D3D11_TEXTURE3D_DESC desc;
|
|
tex->GetDesc(&desc);
|
|
result.value.u32v[0] = RDCMAX(1U, desc.Width >> mipLevel);
|
|
result.value.u32v[1] = RDCMAX(1U, desc.Height >> mipLevel);
|
|
result.value.u32v[2] = RDCMAX(1U, desc.Depth >> mipLevel);
|
|
result.value.u32v[3] = srvDesc.Texture3D.MipLevels;
|
|
|
|
if(result.value.u32v[3] == 0 || result.value.u32v[3] == ~0U)
|
|
result.value.u32v[3] = desc.MipLevels;
|
|
if(result.value.u32v[3] == 0 || result.value.u32v[3] == ~0U)
|
|
result.value.u32v[3] = CalcNumMips(desc.Width, desc.Height, desc.Depth);
|
|
|
|
if(mipLevel >= result.value.u32v[3])
|
|
result.value.u32v[0] = result.value.u32v[1] = result.value.u32v[2] = 0;
|
|
|
|
SAFE_RELEASE(tex);
|
|
}
|
|
break;
|
|
}
|
|
case D3D11_SRV_DIMENSION_TEXTURECUBE:
|
|
case D3D11_SRV_DIMENSION_TEXTURECUBEARRAY:
|
|
{
|
|
ID3D11Texture2D *tex = NULL;
|
|
srv->GetResource((ID3D11Resource **)&tex);
|
|
|
|
dim = 2;
|
|
|
|
if(tex)
|
|
{
|
|
bool isarray = srvDesc.ViewDimension == D3D11_SRV_DIMENSION_TEXTURECUBEARRAY;
|
|
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
tex->GetDesc(&desc);
|
|
result.value.u32v[0] = RDCMAX(1U, desc.Width >> mipLevel);
|
|
result.value.u32v[1] = RDCMAX(1U, desc.Height >> mipLevel);
|
|
|
|
// the spec says "If srcResource is a TextureCubeArray, [...]. dest.z is set to an
|
|
// undefined value."
|
|
// but that's stupid, and implementations seem to return the number of cubes
|
|
result.value.u32v[2] = isarray ? srvDesc.TextureCubeArray.NumCubes : 0;
|
|
result.value.u32v[3] =
|
|
isarray ? srvDesc.TextureCubeArray.MipLevels : srvDesc.TextureCube.MipLevels;
|
|
|
|
if(isarray && (result.value.u32v[2] == 0 || result.value.u32v[2] == ~0U))
|
|
result.value.u32v[2] = desc.ArraySize;
|
|
|
|
if(result.value.u32v[3] == 0 || result.value.u32v[3] == ~0U)
|
|
result.value.u32v[3] = desc.MipLevels;
|
|
if(result.value.u32v[3] == 0 || result.value.u32v[3] == ~0U)
|
|
result.value.u32v[3] = CalcNumMips(desc.Width, desc.Height, 1);
|
|
|
|
if(mipLevel >= result.value.u32v[3])
|
|
result.value.u32v[0] = result.value.u32v[1] = result.value.u32v[2] = 0;
|
|
|
|
SAFE_RELEASE(tex);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
SAFE_RELEASE(srv);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ID3D11UnorderedAccessView *uav = NULL;
|
|
if(GetShaderType() == DXBC::ShaderType::Compute)
|
|
{
|
|
context->CSGetUnorderedAccessViews(slot.shaderRegister, 1, &uav);
|
|
}
|
|
else
|
|
{
|
|
ID3D11RenderTargetView *rtvs[8] = {0};
|
|
ID3D11DepthStencilView *dsv = NULL;
|
|
context->OMGetRenderTargetsAndUnorderedAccessViews(0, rtvs, &dsv, slot.shaderRegister, 1, &uav);
|
|
|
|
for(int i = 0; i < 8; i++)
|
|
SAFE_RELEASE(rtvs[i]);
|
|
SAFE_RELEASE(dsv);
|
|
}
|
|
|
|
if(uav)
|
|
{
|
|
D3D11_UNORDERED_ACCESS_VIEW_DESC uavDesc;
|
|
uav->GetDesc(&uavDesc);
|
|
|
|
switch(uavDesc.ViewDimension)
|
|
{
|
|
case D3D11_UAV_DIMENSION_UNKNOWN:
|
|
case D3D11_UAV_DIMENSION_BUFFER:
|
|
{
|
|
RDCWARN("Invalid view dimension for GetResourceInfo");
|
|
break;
|
|
}
|
|
case D3D11_UAV_DIMENSION_TEXTURE1D:
|
|
case D3D11_UAV_DIMENSION_TEXTURE1DARRAY:
|
|
{
|
|
ID3D11Texture1D *tex = NULL;
|
|
uav->GetResource((ID3D11Resource **)&tex);
|
|
|
|
dim = 1;
|
|
|
|
if(tex)
|
|
{
|
|
bool isarray = uavDesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE1DARRAY;
|
|
|
|
D3D11_TEXTURE1D_DESC desc;
|
|
tex->GetDesc(&desc);
|
|
result.value.u32v[0] = RDCMAX(1U, desc.Width >> mipLevel);
|
|
result.value.u32v[1] = isarray ? uavDesc.Texture1DArray.ArraySize : 0;
|
|
result.value.u32v[2] = 0;
|
|
|
|
if(isarray && (result.value.u32v[2] == 0 || result.value.u32v[2] == ~0U))
|
|
result.value.u32v[2] = desc.ArraySize;
|
|
|
|
// spec says "For UAVs (u#), the number of mip levels is always 1."
|
|
result.value.u32v[3] = 1;
|
|
|
|
if(mipLevel >= result.value.u32v[3])
|
|
result.value.u32v[0] = result.value.u32v[1] = 0;
|
|
|
|
SAFE_RELEASE(tex);
|
|
}
|
|
break;
|
|
}
|
|
case D3D11_UAV_DIMENSION_TEXTURE2D:
|
|
case D3D11_UAV_DIMENSION_TEXTURE2DARRAY:
|
|
{
|
|
ID3D11Texture2D *tex = NULL;
|
|
uav->GetResource((ID3D11Resource **)&tex);
|
|
|
|
dim = 2;
|
|
|
|
if(tex)
|
|
{
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
tex->GetDesc(&desc);
|
|
result.value.u32v[0] = RDCMAX(1U, desc.Width >> mipLevel);
|
|
result.value.u32v[1] = RDCMAX(1U, desc.Height >> mipLevel);
|
|
|
|
if(uavDesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE2D)
|
|
{
|
|
result.value.u32v[2] = 0;
|
|
}
|
|
else if(uavDesc.ViewDimension == D3D11_UAV_DIMENSION_TEXTURE2DARRAY)
|
|
{
|
|
result.value.u32v[2] = uavDesc.Texture2DArray.ArraySize;
|
|
|
|
if(result.value.u32v[2] == 0 || result.value.u32v[2] == ~0U)
|
|
result.value.u32v[2] = desc.ArraySize;
|
|
}
|
|
|
|
// spec says "For UAVs (u#), the number of mip levels is always 1."
|
|
result.value.u32v[3] = 1;
|
|
|
|
if(mipLevel >= result.value.u32v[3])
|
|
result.value.u32v[0] = result.value.u32v[1] = result.value.u32v[2] = 0;
|
|
|
|
SAFE_RELEASE(tex);
|
|
}
|
|
break;
|
|
}
|
|
case D3D11_UAV_DIMENSION_TEXTURE3D:
|
|
{
|
|
ID3D11Texture3D *tex = NULL;
|
|
uav->GetResource((ID3D11Resource **)&tex);
|
|
|
|
dim = 3;
|
|
|
|
if(tex)
|
|
{
|
|
D3D11_TEXTURE3D_DESC desc;
|
|
tex->GetDesc(&desc);
|
|
result.value.u32v[0] = RDCMAX(1U, desc.Width >> mipLevel);
|
|
result.value.u32v[1] = RDCMAX(1U, desc.Height >> mipLevel);
|
|
result.value.u32v[2] = RDCMAX(1U, desc.Depth >> mipLevel);
|
|
|
|
// spec says "For UAVs (u#), the number of mip levels is always 1."
|
|
result.value.u32v[3] = 1;
|
|
|
|
if(mipLevel >= result.value.u32v[3])
|
|
result.value.u32v[0] = result.value.u32v[1] = result.value.u32v[2] = 0;
|
|
|
|
SAFE_RELEASE(tex);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
SAFE_RELEASE(uav);
|
|
}
|
|
}
|
|
|
|
SAFE_RELEASE(context);
|
|
return result;
|
|
}
|
|
|
|
bool D3D11DebugAPIWrapper::CalculateSampleGather(
|
|
DXBCBytecode::OpcodeType opcode, DXBCDebug::SampleGatherResourceData resourceData,
|
|
DXBCDebug::SampleGatherSamplerData samplerData, const ShaderVariable &uvIn,
|
|
const ShaderVariable &ddxCalcIn, const ShaderVariable &ddyCalcIn, const int8_t texelOffsets[3],
|
|
int multisampleIndex, float lodOrCompareValue, const uint8_t swizzle[4],
|
|
DXBCDebug::GatherChannel gatherChannel, const char *opString, ShaderVariable &output)
|
|
{
|
|
using namespace DXBCBytecode;
|
|
|
|
int sampleOp;
|
|
switch(opcode)
|
|
{
|
|
case OPCODE_SAMPLE: sampleOp = DEBUG_SAMPLE_TEX_SAMPLE; break;
|
|
case OPCODE_SAMPLE_L: sampleOp = DEBUG_SAMPLE_TEX_SAMPLE_LEVEL; break;
|
|
case OPCODE_SAMPLE_B: sampleOp = DEBUG_SAMPLE_TEX_SAMPLE_BIAS; break;
|
|
case OPCODE_SAMPLE_C: sampleOp = DEBUG_SAMPLE_TEX_SAMPLE_CMP; break;
|
|
case OPCODE_SAMPLE_D: sampleOp = DEBUG_SAMPLE_TEX_SAMPLE_GRAD; break;
|
|
case OPCODE_SAMPLE_C_LZ: sampleOp = DEBUG_SAMPLE_TEX_SAMPLE_CMP_LEVEL_ZERO; break;
|
|
case OPCODE_GATHER4: sampleOp = DEBUG_SAMPLE_TEX_GATHER4; break;
|
|
case OPCODE_GATHER4_C: sampleOp = DEBUG_SAMPLE_TEX_GATHER4_CMP; break;
|
|
case OPCODE_GATHER4_PO: sampleOp = DEBUG_SAMPLE_TEX_GATHER4_PO; break;
|
|
case OPCODE_GATHER4_PO_C: sampleOp = DEBUG_SAMPLE_TEX_GATHER4_PO_CMP; break;
|
|
case OPCODE_LOD: sampleOp = DEBUG_SAMPLE_TEX_LOD; break;
|
|
case OPCODE_LD: sampleOp = DEBUG_SAMPLE_TEX_LOAD; break;
|
|
case OPCODE_LD_MS: sampleOp = DEBUG_SAMPLE_TEX_LOAD_MS; break;
|
|
default:
|
|
// To support a new instruction, the shader created in
|
|
// ShaderDebugging::Init() will need updating
|
|
RDCERR("Unsupported instruction for CalculateSampleGather: %u", opcode);
|
|
return false;
|
|
}
|
|
|
|
ShaderDebugging &debugData = m_pDevice->GetReplay()->GetShaderDebuggingData();
|
|
|
|
ShaderVariable uv(uvIn);
|
|
ShaderVariable ddxCalc(ddxCalcIn);
|
|
ShaderVariable ddyCalc(ddyCalcIn);
|
|
for(uint32_t i = 0; i < ddxCalc.columns; i++)
|
|
{
|
|
if(!RDCISFINITE(ddxCalc.value.f32v[i]))
|
|
{
|
|
RDCWARN("NaN or Inf in texlookup");
|
|
ddxCalc.value.f32v[i] = 0.0f;
|
|
|
|
m_pDevice->AddDebugMessage(MessageCategory::Shaders, MessageSeverity::High,
|
|
MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt("Shader debugging %d: %s\nNaN or Inf found in "
|
|
"texture lookup ddx - using 0.0 instead",
|
|
m_instruction, opString));
|
|
}
|
|
if(!RDCISFINITE(ddyCalc.value.f32v[i]))
|
|
{
|
|
RDCWARN("NaN or Inf in texlookup");
|
|
ddyCalc.value.f32v[i] = 0.0f;
|
|
|
|
m_pDevice->AddDebugMessage(MessageCategory::Shaders, MessageSeverity::High,
|
|
MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt("Shader debugging %d: %s\nNaN or Inf found in "
|
|
"texture lookup ddy - using 0.0 instead",
|
|
m_instruction, opString));
|
|
}
|
|
}
|
|
|
|
for(uint32_t i = 0; i < uv.columns; i++)
|
|
{
|
|
if(opcode != OPCODE_LD && opcode != OPCODE_LD_MS && !RDCISFINITE(uv.value.f32v[i]))
|
|
{
|
|
RDCWARN("NaN or Inf in texlookup");
|
|
uv.value.f32v[i] = 0.0f;
|
|
|
|
m_pDevice->AddDebugMessage(MessageCategory::Shaders, MessageSeverity::High,
|
|
MessageSource::RuntimeWarning,
|
|
StringFormat::Fmt("Shader debugging %d: %s\nNaN or Inf found in "
|
|
"texture lookup uv - using 0.0 instead",
|
|
m_instruction, opString));
|
|
}
|
|
}
|
|
|
|
// set array slice selection to 0 if the resource is declared non-arrayed
|
|
|
|
if(resourceData.dim == RESOURCE_DIMENSION_TEXTURE1D)
|
|
uv.value.f32v[1] = 0.0f;
|
|
else if(resourceData.dim == RESOURCE_DIMENSION_TEXTURE2D ||
|
|
resourceData.dim == RESOURCE_DIMENSION_TEXTURE2DMS ||
|
|
resourceData.dim == RESOURCE_DIMENSION_TEXTURECUBE)
|
|
uv.value.f32v[2] = 0.0f;
|
|
|
|
DebugSampleOperation cbufferData = {};
|
|
|
|
memcpy(&cbufferData.debugSampleUV, uv.value.u32v.data(), sizeof(Vec4f));
|
|
memcpy(&cbufferData.debugSampleDDX, ddxCalc.value.u32v.data(), sizeof(Vec4f));
|
|
memcpy(&cbufferData.debugSampleDDY, ddyCalc.value.u32v.data(), sizeof(Vec4f));
|
|
memcpy(&cbufferData.debugSampleUVInt, uv.value.u32v.data(), sizeof(Vec4f));
|
|
|
|
if(resourceData.dim == RESOURCE_DIMENSION_TEXTURE1D ||
|
|
resourceData.dim == RESOURCE_DIMENSION_TEXTURE1DARRAY)
|
|
{
|
|
cbufferData.debugSampleTexDim = DEBUG_SAMPLE_TEX1D;
|
|
}
|
|
else if(resourceData.dim == RESOURCE_DIMENSION_TEXTURE2D ||
|
|
resourceData.dim == RESOURCE_DIMENSION_TEXTURE2DARRAY)
|
|
{
|
|
cbufferData.debugSampleTexDim = DEBUG_SAMPLE_TEX2D;
|
|
}
|
|
else if(resourceData.dim == RESOURCE_DIMENSION_TEXTURE3D)
|
|
{
|
|
cbufferData.debugSampleTexDim = DEBUG_SAMPLE_TEX3D;
|
|
}
|
|
else if(resourceData.dim == RESOURCE_DIMENSION_TEXTURE2DMS ||
|
|
resourceData.dim == RESOURCE_DIMENSION_TEXTURE2DMSARRAY)
|
|
{
|
|
cbufferData.debugSampleTexDim = DEBUG_SAMPLE_TEXMS;
|
|
}
|
|
else if(resourceData.dim == RESOURCE_DIMENSION_TEXTURECUBE ||
|
|
resourceData.dim == RESOURCE_DIMENSION_TEXTURECUBEARRAY)
|
|
{
|
|
cbufferData.debugSampleTexDim = DEBUG_SAMPLE_TEXCUBE;
|
|
}
|
|
else
|
|
{
|
|
RDCERR("Unsupported resource type %d in sample operation", resourceData.dim);
|
|
}
|
|
|
|
int retTypes[DXBC::NUM_RETURN_TYPES] = {
|
|
0, // RETURN_TYPE_UNKNOWN
|
|
DEBUG_SAMPLE_UNORM, // RETURN_TYPE_UNORM
|
|
DEBUG_SAMPLE_SNORM, // RETURN_TYPE_SNORM
|
|
DEBUG_SAMPLE_INT, // RETURN_TYPE_SINT
|
|
DEBUG_SAMPLE_UINT, // RETURN_TYPE_UINT
|
|
DEBUG_SAMPLE_FLOAT, // RETURN_TYPE_FLOAT
|
|
0, // RETURN_TYPE_MIXED
|
|
DEBUG_SAMPLE_FLOAT, // RETURN_TYPE_DOUBLE (treat as floats)
|
|
0, // RETURN_TYPE_CONTINUED
|
|
0, // RETURN_TYPE_UNUSED
|
|
};
|
|
|
|
cbufferData.debugSampleRetType = retTypes[resourceData.retType];
|
|
|
|
cbufferData.debugSampleGatherChannel = (int)gatherChannel;
|
|
cbufferData.debugSampleSampleIndex = multisampleIndex;
|
|
cbufferData.debugSampleOperation = sampleOp;
|
|
cbufferData.debugSampleLod = lodOrCompareValue;
|
|
cbufferData.debugSampleCompare = lodOrCompareValue;
|
|
|
|
D3D11RenderStateTracker tracker(m_pDevice->GetImmediateContext());
|
|
|
|
ID3D11DeviceContext *context = NULL;
|
|
|
|
m_pDevice->GetImmediateContext(&context);
|
|
|
|
// back up SRV/sampler on PS slot 0
|
|
|
|
ID3D11ShaderResourceView *usedSRV = NULL;
|
|
ID3D11SamplerState *usedSamp = NULL;
|
|
|
|
// fetch SRV and sampler from the shader stage we're debugging that this opcode wants to load from
|
|
UINT texSlot = resourceData.binding.shaderRegister;
|
|
UINT samplerSlot = samplerData.binding.shaderRegister;
|
|
switch(GetShaderType())
|
|
{
|
|
case DXBC::ShaderType::Vertex:
|
|
context->VSGetShaderResources(texSlot, 1, &usedSRV);
|
|
context->VSGetSamplers(samplerSlot, 1, &usedSamp);
|
|
break;
|
|
case DXBC::ShaderType::Hull:
|
|
context->HSGetShaderResources(texSlot, 1, &usedSRV);
|
|
context->HSGetSamplers(samplerSlot, 1, &usedSamp);
|
|
break;
|
|
case DXBC::ShaderType::Domain:
|
|
context->DSGetShaderResources(texSlot, 1, &usedSRV);
|
|
context->DSGetSamplers(samplerSlot, 1, &usedSamp);
|
|
break;
|
|
case DXBC::ShaderType::Geometry:
|
|
context->GSGetShaderResources(texSlot, 1, &usedSRV);
|
|
context->GSGetSamplers(samplerSlot, 1, &usedSamp);
|
|
break;
|
|
case DXBC::ShaderType::Pixel:
|
|
context->PSGetShaderResources(texSlot, 1, &usedSRV);
|
|
context->PSGetSamplers(samplerSlot, 1, &usedSamp);
|
|
break;
|
|
case DXBC::ShaderType::Compute:
|
|
context->CSGetShaderResources(texSlot, 1, &usedSRV);
|
|
context->CSGetSamplers(samplerSlot, 1, &usedSamp);
|
|
break;
|
|
default: RDCERR("Unhandled shader type %d", GetShaderType()); break;
|
|
}
|
|
|
|
texSlot = (cbufferData.debugSampleTexDim - 1) + 5 * (cbufferData.debugSampleRetType - 1);
|
|
|
|
// set onto PS while we perform the sample
|
|
context->PSSetShaderResources(texSlot, 1, &usedSRV);
|
|
if(opcode == OPCODE_SAMPLE_B && samplerData.bias != 0.0f)
|
|
{
|
|
D3D11_SAMPLER_DESC desc = {};
|
|
|
|
if(usedSamp)
|
|
{
|
|
usedSamp->GetDesc(&desc);
|
|
}
|
|
else
|
|
{
|
|
desc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR;
|
|
desc.AddressU = desc.AddressV = desc.AddressW = D3D11_TEXTURE_ADDRESS_CLAMP;
|
|
desc.MipLODBias = 0.0f;
|
|
desc.MaxAnisotropy = 1;
|
|
desc.ComparisonFunc = D3D11_COMPARISON_NEVER;
|
|
desc.BorderColor[0] = desc.BorderColor[1] = desc.BorderColor[2] = desc.BorderColor[3] = 1.0f;
|
|
desc.MinLOD = -FLT_MAX;
|
|
desc.MaxLOD = FLT_MAX;
|
|
}
|
|
|
|
desc.MipLODBias = RDCCLAMP(desc.MipLODBias + samplerData.bias, -15.99f, 15.99f);
|
|
|
|
ID3D11SamplerState *replacementSamp = NULL;
|
|
HRESULT hr = m_pDevice->CreateSamplerState(&desc, &replacementSamp);
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to create new sampler state in debugging HRESULT: %s",
|
|
ToStr(hr).c_str()); // @NoCoverage
|
|
}
|
|
else
|
|
{
|
|
context->PSSetSamplers(0, 1, &replacementSamp);
|
|
SAFE_RELEASE(replacementSamp);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(opcode == OPCODE_SAMPLE_C || opcode == OPCODE_SAMPLE_C_LZ || opcode == OPCODE_GATHER4_C ||
|
|
opcode == OPCODE_GATHER4_PO_C)
|
|
context->PSSetSamplers(1, 1, &usedSamp);
|
|
else
|
|
context->PSSetSamplers(0, 1, &usedSamp);
|
|
}
|
|
|
|
context->IASetInputLayout(NULL);
|
|
context->IASetPrimitiveTopology(D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
|
|
|
|
context->VSSetShader(debugData.SampleVS, NULL, 0);
|
|
context->PSSetShader(debugData.GetSamplePS(texelOffsets), NULL, 0);
|
|
|
|
D3D11_MAPPED_SUBRESOURCE mapped;
|
|
HRESULT hr = context->Map(debugData.ParamBuf, 0, D3D11_MAP_WRITE_DISCARD, 0, &mapped);
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to map parameters HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return false; // @NoCoverage
|
|
}
|
|
|
|
memcpy(mapped.pData, &cbufferData, sizeof(cbufferData));
|
|
|
|
context->Unmap(debugData.ParamBuf, 0);
|
|
|
|
context->VSSetConstantBuffers(0, 1, &debugData.ParamBuf);
|
|
context->PSSetConstantBuffers(0, 1, &debugData.ParamBuf);
|
|
|
|
D3D11_VIEWPORT view = {0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 1.0f};
|
|
context->RSSetViewports(1, &view);
|
|
|
|
context->GSSetShader(NULL, NULL, 0);
|
|
context->DSSetShader(NULL, NULL, 0);
|
|
context->HSSetShader(NULL, NULL, 0);
|
|
context->CSSetShader(NULL, NULL, 0);
|
|
|
|
context->SOSetTargets(0, NULL, NULL);
|
|
|
|
context->RSSetState(NULL);
|
|
context->OMSetBlendState(NULL, NULL, (UINT)~0);
|
|
context->OMSetDepthStencilState(NULL, 0);
|
|
|
|
UINT uavCount = ~0U;
|
|
context->OMSetRenderTargetsAndUnorderedAccessViews(1, &debugData.DummyRTV, NULL, 1, 1,
|
|
&debugData.OutUAV, &uavCount);
|
|
context->Draw(3, 0);
|
|
|
|
context->CopyResource(debugData.OutStageBuf, debugData.OutBuf);
|
|
|
|
hr = context->Map(debugData.OutStageBuf, 0, D3D11_MAP_READ, 0, &mapped);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to map results HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return false; // @NoCoverage
|
|
}
|
|
|
|
ShaderVariable lookupResult("tex", 0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
float *retFloats = (float *)mapped.pData;
|
|
uint32_t *retUInts = (uint32_t *)(retFloats + 8);
|
|
int32_t *retSInts = (int32_t *)(retUInts + 8);
|
|
|
|
if(cbufferData.debugSampleRetType == DEBUG_SAMPLE_UINT)
|
|
{
|
|
for(int i = 0; i < 4; i++)
|
|
lookupResult.value.u32v[i] = retUInts[swizzle[i]];
|
|
}
|
|
else if(cbufferData.debugSampleRetType == DEBUG_SAMPLE_INT)
|
|
{
|
|
for(int i = 0; i < 4; i++)
|
|
lookupResult.value.s32v[i] = retSInts[swizzle[i]];
|
|
}
|
|
else
|
|
{
|
|
for(int i = 0; i < 4; i++)
|
|
lookupResult.value.f32v[i] = retFloats[swizzle[i]];
|
|
}
|
|
|
|
context->Unmap(debugData.OutStageBuf, 0);
|
|
|
|
SAFE_RELEASE(context);
|
|
|
|
SAFE_RELEASE(usedSRV);
|
|
SAFE_RELEASE(usedSamp);
|
|
|
|
output = lookupResult;
|
|
return true;
|
|
}
|
|
|
|
bool D3D11DebugAPIWrapper::CalculateMathIntrinsic(DXBCBytecode::OpcodeType opcode,
|
|
const ShaderVariable &input,
|
|
ShaderVariable &output1, ShaderVariable &output2)
|
|
{
|
|
D3D11RenderStateTracker tracker(m_pDevice->GetImmediateContext());
|
|
|
|
int mathOp = 0;
|
|
switch(opcode)
|
|
{
|
|
case DXBCBytecode::OPCODE_RCP: mathOp = DEBUG_SAMPLE_MATH_DXBC_RCP; break;
|
|
case DXBCBytecode::OPCODE_RSQ: mathOp = DEBUG_SAMPLE_MATH_DXBC_RSQ; break;
|
|
case DXBCBytecode::OPCODE_EXP: mathOp = DEBUG_SAMPLE_MATH_DXBC_EXP; break;
|
|
case DXBCBytecode::OPCODE_LOG: mathOp = DEBUG_SAMPLE_MATH_DXBC_LOG; break;
|
|
case DXBCBytecode::OPCODE_SINCOS: mathOp = DEBUG_SAMPLE_MATH_DXBC_SINCOS; break;
|
|
default:
|
|
// To support a new instruction, the shader created in
|
|
// ShaderDebugging::Init() will need updating
|
|
RDCERR("Unsupported instruction for CalculateMathIntrinsic: %u", opcode);
|
|
return false;
|
|
}
|
|
|
|
ID3D11DeviceContext *context = NULL;
|
|
m_pDevice->GetImmediateContext(&context);
|
|
|
|
const ShaderDebugging &debugData = m_pDevice->GetReplay()->GetShaderDebuggingData();
|
|
|
|
D3D11_MAPPED_SUBRESOURCE mapped;
|
|
HRESULT hr = context->Map(debugData.ParamBuf, 0, D3D11_MAP_WRITE_DISCARD, 0, &mapped);
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to map parameters HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return false; // @NoCoverage
|
|
}
|
|
|
|
DebugMathOperation data;
|
|
data.mathOp = mathOp;
|
|
memcpy(&data.mathInVal, &input.value.u32v[0], sizeof(Vec4f));
|
|
|
|
memcpy(mapped.pData, &data, sizeof(data));
|
|
|
|
context->Unmap(debugData.ParamBuf, 0);
|
|
|
|
context->CSSetConstantBuffers(0, 1, &debugData.ParamBuf);
|
|
context->CSSetShader(debugData.MathCS, NULL, 0);
|
|
context->CSSetUnorderedAccessViews(1, 1, &debugData.OutUAV, NULL);
|
|
context->Dispatch(1, 1, 1);
|
|
|
|
context->CopyResource(debugData.OutStageBuf, debugData.OutBuf);
|
|
|
|
hr = context->Map(debugData.OutStageBuf, 0, D3D11_MAP_READ, 0, &mapped);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to map results HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return false; // @NoCoverage
|
|
}
|
|
|
|
uint32_t *resA = (uint32_t *)mapped.pData;
|
|
uint32_t *resB = resA + 4;
|
|
|
|
memcpy(output1.value.u32v.data(), resA, sizeof(uint32_t) * 4);
|
|
memcpy(output2.value.u32v.data(), resB, sizeof(uint32_t) * 4);
|
|
|
|
context->Unmap(debugData.OutStageBuf, 0);
|
|
|
|
SAFE_RELEASE(context);
|
|
|
|
return true;
|
|
}
|
|
|
|
void AddCBuffersToGlobalState(const DXBCBytecode::Program &program, D3D11DebugManager &debugManager,
|
|
DXBCDebug::GlobalState &global,
|
|
rdcarray<SourceVariableMapping> &sourceVars,
|
|
const D3D11RenderState::Shader &shader, const ShaderReflection &refl)
|
|
{
|
|
bytebuf cbufData;
|
|
for(int i = 0; i < D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT; i++)
|
|
{
|
|
if(shader.ConstantBuffers[i])
|
|
{
|
|
DXBCDebug::BindingSlot slot(i, 0);
|
|
cbufData.clear();
|
|
debugManager.GetBufferData(shader.ConstantBuffers[i], shader.CBOffsets[i] * sizeof(Vec4f),
|
|
shader.CBCounts[i] * sizeof(Vec4f), cbufData);
|
|
|
|
AddCBufferToGlobalState(program, global, sourceVars, refl, slot, cbufData);
|
|
}
|
|
}
|
|
}
|
|
|
|
ShaderDebugTrace *D3D11Replay::DebugVertex(uint32_t eventId, uint32_t vertid, uint32_t instid,
|
|
uint32_t idx, uint32_t view)
|
|
{
|
|
D3D11MarkerRegion region(
|
|
StringFormat::Fmt("DebugVertex @ %u of (%u,%u,%u)", eventId, vertid, instid, idx));
|
|
|
|
const ActionDescription *action = m_pDevice->GetAction(eventId);
|
|
|
|
D3D11RenderStateTracker tracker(m_pImmediateContext);
|
|
|
|
ID3D11VertexShader *stateVS = NULL;
|
|
m_pImmediateContext->VSGetShader(&stateVS, NULL, NULL);
|
|
|
|
WrappedID3D11Shader<ID3D11VertexShader> *vs = (WrappedID3D11Shader<ID3D11VertexShader> *)stateVS;
|
|
|
|
SAFE_RELEASE(stateVS);
|
|
|
|
if(!vs)
|
|
return new ShaderDebugTrace;
|
|
|
|
DXBC::DXBCContainer *dxbc = vs->GetDXBC();
|
|
const ShaderReflection &refl = vs->GetDetails();
|
|
|
|
if(!dxbc)
|
|
return new ShaderDebugTrace;
|
|
|
|
dxbc->GetDisassembly(false);
|
|
|
|
D3D11RenderState *rs = m_pImmediateContext->GetCurrentPipelineState();
|
|
|
|
rdcarray<D3D11_INPUT_ELEMENT_DESC> inputlayout = m_pDevice->GetLayoutDesc(rs->IA.Layout);
|
|
|
|
std::set<UINT> vertexbuffers;
|
|
uint32_t trackingOffs[32] = {0};
|
|
|
|
UINT MaxStepRate = 1U;
|
|
|
|
// need special handling for other step rates
|
|
for(size_t i = 0; i < inputlayout.size(); i++)
|
|
{
|
|
if(inputlayout[i].InputSlotClass == D3D11_INPUT_PER_INSTANCE_DATA &&
|
|
inputlayout[i].InstanceDataStepRate < action->numInstances)
|
|
MaxStepRate = RDCMAX(inputlayout[i].InstanceDataStepRate, MaxStepRate);
|
|
|
|
UINT slot =
|
|
RDCCLAMP(inputlayout[i].InputSlot, 0U, UINT(D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT - 1));
|
|
|
|
vertexbuffers.insert(slot);
|
|
|
|
if(inputlayout[i].AlignedByteOffset == ~0U)
|
|
{
|
|
inputlayout[i].AlignedByteOffset = trackingOffs[slot];
|
|
}
|
|
else
|
|
{
|
|
trackingOffs[slot] = inputlayout[i].AlignedByteOffset;
|
|
}
|
|
|
|
ResourceFormat fmt = MakeResourceFormat(inputlayout[i].Format);
|
|
|
|
trackingOffs[slot] += fmt.compByteWidth * fmt.compCount;
|
|
}
|
|
|
|
bytebuf vertData[D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT];
|
|
bytebuf *instData = new bytebuf[MaxStepRate * D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT];
|
|
bytebuf staticData[D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT];
|
|
|
|
for(auto it = vertexbuffers.begin(); it != vertexbuffers.end(); ++it)
|
|
{
|
|
UINT i = *it;
|
|
if(rs->IA.VBs[i])
|
|
{
|
|
GetDebugManager()->GetBufferData(
|
|
rs->IA.VBs[i], rs->IA.Offsets[i] + rs->IA.Strides[i] * (action->vertexOffset + idx),
|
|
rs->IA.Strides[i], vertData[i]);
|
|
|
|
for(UINT isr = 1; isr <= MaxStepRate; isr++)
|
|
{
|
|
GetDebugManager()->GetBufferData(
|
|
rs->IA.VBs[i],
|
|
rs->IA.Offsets[i] + rs->IA.Strides[i] * (action->instanceOffset + (instid / isr)),
|
|
rs->IA.Strides[i], instData[i * MaxStepRate + isr - 1]);
|
|
}
|
|
|
|
GetDebugManager()->GetBufferData(
|
|
rs->IA.VBs[i], rs->IA.Offsets[i] + rs->IA.Strides[i] * action->instanceOffset,
|
|
rs->IA.Strides[i], staticData[i]);
|
|
}
|
|
}
|
|
|
|
DXBCDebug::InterpretDebugger *interpreter = new DXBCDebug::InterpretDebugger;
|
|
interpreter->eventId = eventId;
|
|
ShaderDebugTrace *ret = interpreter->BeginDebug(dxbc, refl, 0);
|
|
DXBCDebug::GlobalState &global = interpreter->global;
|
|
DXBCDebug::ThreadState &state = interpreter->activeLane();
|
|
|
|
AddCBuffersToGlobalState(*dxbc->GetDXBCByteCode(), *GetDebugManager(), global, ret->sourceVars,
|
|
rs->VS, refl);
|
|
|
|
for(size_t i = 0; i < state.inputs.size(); i++)
|
|
{
|
|
if(dxbc->GetReflection()->InputSig[i].systemValue == ShaderBuiltin::Undefined ||
|
|
dxbc->GetReflection()->InputSig[i].systemValue ==
|
|
ShaderBuiltin::Position) // SV_Position seems to get promoted
|
|
// automatically, but it's invalid for
|
|
// vertex input
|
|
{
|
|
const D3D11_INPUT_ELEMENT_DESC *el = NULL;
|
|
|
|
rdcstr signame = strlower(dxbc->GetReflection()->InputSig[i].semanticName);
|
|
|
|
for(size_t l = 0; l < inputlayout.size(); l++)
|
|
{
|
|
rdcstr layoutname = strlower(inputlayout[l].SemanticName);
|
|
|
|
if(signame == layoutname &&
|
|
dxbc->GetReflection()->InputSig[i].semanticIndex == inputlayout[l].SemanticIndex)
|
|
{
|
|
el = &inputlayout[l];
|
|
break;
|
|
}
|
|
if(signame == layoutname + ToStr(inputlayout[l].SemanticIndex))
|
|
{
|
|
el = &inputlayout[l];
|
|
break;
|
|
}
|
|
}
|
|
|
|
RDCASSERT(el);
|
|
|
|
if(!el)
|
|
continue;
|
|
|
|
byte *srcData = NULL;
|
|
size_t dataSize = 0;
|
|
|
|
if(el->InputSlotClass == D3D11_INPUT_PER_VERTEX_DATA)
|
|
{
|
|
if(vertData[el->InputSlot].size() >= el->AlignedByteOffset)
|
|
{
|
|
srcData = &vertData[el->InputSlot][el->AlignedByteOffset];
|
|
dataSize = vertData[el->InputSlot].size() - el->AlignedByteOffset;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(el->InstanceDataStepRate == 0 || el->InstanceDataStepRate >= action->numInstances)
|
|
{
|
|
if(staticData[el->InputSlot].size() >= el->AlignedByteOffset)
|
|
{
|
|
srcData = &staticData[el->InputSlot][el->AlignedByteOffset];
|
|
dataSize = staticData[el->InputSlot].size() - el->AlignedByteOffset;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
UINT isrIdx = el->InputSlot * MaxStepRate + (el->InstanceDataStepRate - 1);
|
|
if(instData[isrIdx].size() >= el->AlignedByteOffset)
|
|
{
|
|
srcData = &instData[isrIdx][el->AlignedByteOffset];
|
|
dataSize = instData[isrIdx].size() - el->AlignedByteOffset;
|
|
}
|
|
}
|
|
}
|
|
|
|
ResourceFormat fmt = MakeResourceFormat(el->Format);
|
|
|
|
// more data needed than is provided
|
|
if(dxbc->GetReflection()->InputSig[i].compCount > fmt.compCount)
|
|
{
|
|
state.inputs[i].value.u32v[3] = 1;
|
|
|
|
if(fmt.compType == CompType::Float)
|
|
state.inputs[i].value.f32v[3] = 1.0f;
|
|
}
|
|
|
|
// interpret resource format types
|
|
if(fmt.Special())
|
|
{
|
|
Vec3f *v3 = (Vec3f *)state.inputs[i].value.f32v.data();
|
|
Vec4f *v4 = (Vec4f *)state.inputs[i].value.f32v.data();
|
|
|
|
// only pull in all or nothing from these,
|
|
// if there's only e.g. 3 bytes remaining don't read and unpack some of
|
|
// a 4-byte resource format type
|
|
size_t packedsize = 4;
|
|
if(fmt.type == ResourceFormatType::R5G5B5A1 || fmt.type == ResourceFormatType::R5G6B5 ||
|
|
fmt.type == ResourceFormatType::R4G4B4A4)
|
|
packedsize = 2;
|
|
|
|
if(srcData == NULL || packedsize > dataSize)
|
|
{
|
|
state.inputs[i].value.u32v[0] = state.inputs[i].value.u32v[1] =
|
|
state.inputs[i].value.u32v[2] = 0;
|
|
if(fmt.compType == CompType::UInt || fmt.compType == CompType::SInt)
|
|
state.inputs[i].value.u32v[3] = 1;
|
|
else
|
|
state.inputs[i].value.f32v[3] = 1.0f;
|
|
}
|
|
else if(fmt.type == ResourceFormatType::R5G5B5A1)
|
|
{
|
|
RDCASSERT(fmt.BGRAOrder());
|
|
uint16_t packed = ((uint16_t *)srcData)[0];
|
|
*v4 = ConvertFromB5G5R5A1(packed);
|
|
}
|
|
else if(fmt.type == ResourceFormatType::R5G6B5)
|
|
{
|
|
RDCASSERT(fmt.BGRAOrder());
|
|
uint16_t packed = ((uint16_t *)srcData)[0];
|
|
*v3 = ConvertFromB5G6R5(packed);
|
|
}
|
|
else if(fmt.type == ResourceFormatType::R4G4B4A4)
|
|
{
|
|
RDCASSERT(fmt.BGRAOrder());
|
|
uint16_t packed = ((uint16_t *)srcData)[0];
|
|
*v4 = ConvertFromB4G4R4A4(packed);
|
|
}
|
|
else if(fmt.type == ResourceFormatType::R10G10B10A2)
|
|
{
|
|
uint32_t packed = ((uint32_t *)srcData)[0];
|
|
|
|
if(fmt.compType == CompType::UInt)
|
|
{
|
|
state.inputs[i].value.u32v[2] = (packed >> 0) & 0x3ff;
|
|
state.inputs[i].value.u32v[1] = (packed >> 10) & 0x3ff;
|
|
state.inputs[i].value.u32v[0] = (packed >> 20) & 0x3ff;
|
|
state.inputs[i].value.u32v[3] = (packed >> 30) & 0x003;
|
|
}
|
|
else
|
|
{
|
|
*v4 = ConvertFromR10G10B10A2(packed);
|
|
}
|
|
}
|
|
else if(fmt.type == ResourceFormatType::R11G11B10)
|
|
{
|
|
uint32_t packed = ((uint32_t *)srcData)[0];
|
|
*v3 = ConvertFromR11G11B10(packed);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(srcData == NULL || size_t(fmt.compByteWidth * fmt.compCount) > dataSize)
|
|
{
|
|
state.inputs[i].value.u32v[0] = state.inputs[i].value.u32v[1] =
|
|
state.inputs[i].value.u32v[2] = 0;
|
|
if(fmt.compType == CompType::UInt || fmt.compType == CompType::SInt)
|
|
state.inputs[i].value.u32v[3] = 1;
|
|
else
|
|
state.inputs[i].value.f32v[3] = 1.0f;
|
|
}
|
|
else
|
|
{
|
|
for(uint32_t c = 0; c < fmt.compCount; c++)
|
|
{
|
|
if(fmt.compByteWidth == 1)
|
|
{
|
|
byte *src = srcData + c * fmt.compByteWidth;
|
|
|
|
if(fmt.compType == CompType::UInt)
|
|
state.inputs[i].value.u32v[c] = *src;
|
|
else if(fmt.compType == CompType::SInt)
|
|
state.inputs[i].value.s32v[c] = *((int8_t *)src);
|
|
else if(fmt.compType == CompType::UNorm || fmt.compType == CompType::UNormSRGB)
|
|
state.inputs[i].value.f32v[c] = float(*src) / 255.0f;
|
|
else if(fmt.compType == CompType::SNorm)
|
|
{
|
|
signed char *schar = (signed char *)src;
|
|
|
|
// -128 is mapped to -1, then -127 to -127 are mapped to -1 to 1
|
|
if(*schar == -128)
|
|
state.inputs[i].value.f32v[c] = -1.0f;
|
|
else
|
|
state.inputs[i].value.f32v[c] = float(*schar) / 127.0f;
|
|
}
|
|
else
|
|
RDCERR("Unexpected component type");
|
|
}
|
|
else if(fmt.compByteWidth == 2)
|
|
{
|
|
uint16_t *src = (uint16_t *)(srcData + c * fmt.compByteWidth);
|
|
|
|
if(fmt.compType == CompType::Float)
|
|
state.inputs[i].value.f32v[c] = ConvertFromHalf(*src);
|
|
else if(fmt.compType == CompType::UInt)
|
|
state.inputs[i].value.u32v[c] = *src;
|
|
else if(fmt.compType == CompType::SInt)
|
|
state.inputs[i].value.s32v[c] = *((int16_t *)src);
|
|
else if(fmt.compType == CompType::UNorm || fmt.compType == CompType::UNormSRGB)
|
|
state.inputs[i].value.f32v[c] = float(*src) / float(UINT16_MAX);
|
|
else if(fmt.compType == CompType::SNorm)
|
|
{
|
|
int16_t *sint = (int16_t *)src;
|
|
|
|
// -32768 is mapped to -1, then -32767 to -32767 are mapped to -1 to 1
|
|
if(*sint == -32768)
|
|
state.inputs[i].value.f32v[c] = -1.0f;
|
|
else
|
|
state.inputs[i].value.f32v[c] = float(*sint) / 32767.0f;
|
|
}
|
|
else
|
|
RDCERR("Unexpected component type");
|
|
}
|
|
else if(fmt.compByteWidth == 4)
|
|
{
|
|
uint32_t *src = (uint32_t *)(srcData + c * fmt.compByteWidth);
|
|
|
|
if(fmt.compType == CompType::Float || fmt.compType == CompType::UInt ||
|
|
fmt.compType == CompType::SInt)
|
|
memcpy(&state.inputs[i].value.u32v[c], src, 4);
|
|
else
|
|
RDCERR("Unexpected component type");
|
|
}
|
|
}
|
|
|
|
if(fmt.BGRAOrder())
|
|
{
|
|
RDCASSERT(fmt.compCount == 4);
|
|
std::swap(state.inputs[i].value.f32v[2], state.inputs[i].value.f32v[0]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if(dxbc->GetReflection()->InputSig[i].systemValue == ShaderBuiltin::VertexIndex)
|
|
{
|
|
uint32_t sv_vertid = vertid;
|
|
|
|
if(action->flags & ActionFlags::Indexed)
|
|
{
|
|
sv_vertid = idx - action->baseVertex;
|
|
}
|
|
|
|
if(dxbc->GetReflection()->InputSig[i].varType == VarType::Float)
|
|
state.inputs[i].value.f32v[0] = state.inputs[i].value.f32v[1] =
|
|
state.inputs[i].value.f32v[2] = state.inputs[i].value.f32v[3] = (float)sv_vertid;
|
|
else
|
|
state.inputs[i].value.u32v[0] = state.inputs[i].value.u32v[1] =
|
|
state.inputs[i].value.u32v[2] = state.inputs[i].value.u32v[3] = sv_vertid;
|
|
}
|
|
else if(dxbc->GetReflection()->InputSig[i].systemValue == ShaderBuiltin::InstanceIndex)
|
|
{
|
|
if(dxbc->GetReflection()->InputSig[i].varType == VarType::Float)
|
|
state.inputs[i].value.f32v[0] = state.inputs[i].value.f32v[1] =
|
|
state.inputs[i].value.f32v[2] = state.inputs[i].value.f32v[3] = (float)instid;
|
|
else
|
|
state.inputs[i].value.u32v[0] = state.inputs[i].value.u32v[1] =
|
|
state.inputs[i].value.u32v[2] = state.inputs[i].value.u32v[3] = instid;
|
|
}
|
|
else
|
|
{
|
|
RDCERR("Unhandled system value semantic on VS input");
|
|
}
|
|
}
|
|
|
|
ret->constantBlocks = global.constantBlocks;
|
|
ret->inputs = state.inputs;
|
|
|
|
delete[] instData;
|
|
|
|
dxbc->FillTraceLineInfo(*ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
ShaderDebugTrace *D3D11Replay::DebugPixel(uint32_t eventId, uint32_t x, uint32_t y,
|
|
const DebugPixelInputs &inputs)
|
|
{
|
|
uint32_t sample = inputs.sample;
|
|
uint32_t primitive = inputs.primitive;
|
|
|
|
D3D11MarkerRegion region(
|
|
StringFormat::Fmt("DebugPixel @ %u of (%u,%u) %u / %u", eventId, x, y, sample, primitive));
|
|
|
|
D3D11RenderStateTracker tracker(m_pImmediateContext);
|
|
|
|
ID3D11PixelShader *statePS = NULL;
|
|
m_pImmediateContext->PSGetShader(&statePS, NULL, NULL);
|
|
|
|
WrappedID3D11Shader<ID3D11PixelShader> *ps = (WrappedID3D11Shader<ID3D11PixelShader> *)statePS;
|
|
|
|
SAFE_RELEASE(statePS);
|
|
|
|
ID3D11GeometryShader *stateGS = NULL;
|
|
m_pImmediateContext->GSGetShader(&stateGS, NULL, NULL);
|
|
|
|
WrappedID3D11Shader<ID3D11GeometryShader> *gs =
|
|
(WrappedID3D11Shader<ID3D11GeometryShader> *)stateGS;
|
|
|
|
SAFE_RELEASE(stateGS);
|
|
|
|
ID3D11DomainShader *stateDS = NULL;
|
|
m_pImmediateContext->DSGetShader(&stateDS, NULL, NULL);
|
|
|
|
WrappedID3D11Shader<ID3D11DomainShader> *ds = (WrappedID3D11Shader<ID3D11DomainShader> *)stateDS;
|
|
|
|
SAFE_RELEASE(stateDS);
|
|
|
|
ID3D11VertexShader *stateVS = NULL;
|
|
m_pImmediateContext->VSGetShader(&stateVS, NULL, NULL);
|
|
|
|
WrappedID3D11Shader<ID3D11VertexShader> *vs = (WrappedID3D11Shader<ID3D11VertexShader> *)stateVS;
|
|
|
|
SAFE_RELEASE(stateVS);
|
|
|
|
if(!ps)
|
|
return new ShaderDebugTrace;
|
|
|
|
D3D11RenderState *rs = m_pImmediateContext->GetCurrentPipelineState();
|
|
|
|
DXBC::DXBCContainer *dxbc = ps->GetDXBC();
|
|
const ShaderReflection &refl = ps->GetDetails();
|
|
|
|
if(!dxbc)
|
|
return new ShaderDebugTrace;
|
|
|
|
dxbc->GetDisassembly(false);
|
|
|
|
DXBC::DXBCContainer *prevdxbc = NULL;
|
|
|
|
if(prevdxbc == NULL && gs != NULL)
|
|
prevdxbc = gs->GetDXBC();
|
|
if(prevdxbc == NULL && ds != NULL)
|
|
prevdxbc = ds->GetDXBC();
|
|
if(prevdxbc == NULL && vs != NULL)
|
|
prevdxbc = vs->GetDXBC();
|
|
RDCASSERT(prevdxbc);
|
|
|
|
DXDebug::InputFetcherConfig cfg;
|
|
DXDebug::InputFetcher fetcher;
|
|
|
|
cfg.x = x;
|
|
cfg.y = y;
|
|
cfg.maxWaveSize = 4;
|
|
|
|
ID3D11DepthStencilView *depthView = NULL;
|
|
ID3D11RenderTargetView *rtView = NULL;
|
|
// preserve at least one render target and/or the depth view, so that
|
|
// we have the right multisample level on output either way
|
|
m_pImmediateContext->OMGetRenderTargets(1, &rtView, &depthView);
|
|
if(rtView != NULL)
|
|
cfg.uavslot = 1;
|
|
else
|
|
cfg.uavslot = 0;
|
|
cfg.uavspace = 0;
|
|
|
|
// get the multisample count
|
|
cfg.outputSampleCount = 1;
|
|
|
|
{
|
|
ID3D11Resource *res = NULL;
|
|
|
|
if(depthView)
|
|
depthView->GetResource(&res);
|
|
else if(rtView)
|
|
rtView->GetResource(&res);
|
|
|
|
if(res)
|
|
{
|
|
D3D11_RESOURCE_DIMENSION dim = D3D11_RESOURCE_DIMENSION_UNKNOWN;
|
|
res->GetType(&dim);
|
|
|
|
if(dim == D3D11_RESOURCE_DIMENSION_TEXTURE2D)
|
|
{
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
((ID3D11Texture2D *)res)->GetDesc(&desc);
|
|
|
|
cfg.outputSampleCount = RDCMAX(1U, desc.SampleDesc.Count);
|
|
}
|
|
|
|
SAFE_RELEASE(res);
|
|
}
|
|
}
|
|
|
|
DXDebug::CreateInputFetcher(dxbc, prevdxbc, cfg, fetcher);
|
|
|
|
ID3D11PixelShader *extract =
|
|
m_pDevice->GetShaderCache()->MakePShader(fetcher.hlsl.c_str(), "ExtractInputs", "ps_5_0");
|
|
|
|
uint32_t structStride = fetcher.hitBufferStride;
|
|
RDCASSERT(fetcher.laneDataBufferStride == 0);
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
D3D11_BUFFER_DESC bdesc;
|
|
bdesc.BindFlags = D3D11_BIND_UNORDERED_ACCESS;
|
|
bdesc.CPUAccessFlags = 0;
|
|
bdesc.MiscFlags = D3D11_RESOURCE_MISC_BUFFER_STRUCTURED;
|
|
bdesc.Usage = D3D11_USAGE_DEFAULT;
|
|
bdesc.StructureByteStride = structStride;
|
|
bdesc.ByteWidth = structStride * (DXDebug::maxPixelHits + 1);
|
|
|
|
ID3D11Buffer *initialBuf = NULL;
|
|
hr = m_pDevice->CreateBuffer(&bdesc, NULL, &initialBuf);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to create buffer HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return new ShaderDebugTrace; // @NoCoverage
|
|
}
|
|
|
|
ID3D11Buffer *evalBuf = NULL;
|
|
if(!fetcher.evalSampleCacheData.empty())
|
|
{
|
|
bdesc.StructureByteStride = 0;
|
|
bdesc.MiscFlags = 0;
|
|
bdesc.ByteWidth =
|
|
UINT(fetcher.evalSampleCacheData.size() * sizeof(Vec4f) * (DXDebug::maxPixelHits + 1));
|
|
|
|
hr = m_pDevice->CreateBuffer(&bdesc, NULL, &evalBuf);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to create buffer HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return new ShaderDebugTrace; // @NoCoverage
|
|
}
|
|
}
|
|
|
|
bdesc.BindFlags = 0;
|
|
bdesc.MiscFlags = 0;
|
|
bdesc.CPUAccessFlags = D3D11_CPU_ACCESS_READ;
|
|
bdesc.Usage = D3D11_USAGE_STAGING;
|
|
bdesc.StructureByteStride = 0;
|
|
bdesc.ByteWidth = structStride * (DXDebug::maxPixelHits + 1);
|
|
|
|
ID3D11Buffer *initialStageBuf = NULL;
|
|
hr = m_pDevice->CreateBuffer(&bdesc, NULL, &initialStageBuf);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to create buffer HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return new ShaderDebugTrace; // @NoCoverage
|
|
}
|
|
|
|
uint32_t evalStructStride = uint32_t(fetcher.evalSampleCacheData.size() * sizeof(Vec4f));
|
|
|
|
ID3D11Buffer *evalStageBuf = NULL;
|
|
if(evalBuf)
|
|
{
|
|
bdesc.ByteWidth = evalStructStride * (DXDebug::maxPixelHits + 1);
|
|
|
|
hr = m_pDevice->CreateBuffer(&bdesc, NULL, &evalStageBuf);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to create buffer HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return new ShaderDebugTrace; // @NoCoverage
|
|
}
|
|
}
|
|
|
|
D3D11_UNORDERED_ACCESS_VIEW_DESC uavdesc;
|
|
uavdesc.Format = DXGI_FORMAT_UNKNOWN;
|
|
uavdesc.Buffer.FirstElement = 0;
|
|
uavdesc.Buffer.Flags = 0;
|
|
uavdesc.Buffer.NumElements = DXDebug::maxPixelHits + 1;
|
|
uavdesc.ViewDimension = D3D11_UAV_DIMENSION_BUFFER;
|
|
|
|
ID3D11UnorderedAccessView *initialUAV = NULL;
|
|
hr = m_pDevice->CreateUnorderedAccessView(initialBuf, &uavdesc, &initialUAV);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to create buffer HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return new ShaderDebugTrace; // @NoCoverage
|
|
}
|
|
|
|
ID3D11UnorderedAccessView *evalUAV = NULL;
|
|
if(evalBuf)
|
|
{
|
|
uavdesc.Buffer.NumElements =
|
|
(DXDebug::maxPixelHits + 1) * (uint32_t)fetcher.evalSampleCacheData.size();
|
|
uavdesc.Format = DXGI_FORMAT_R32G32B32A32_FLOAT;
|
|
hr = m_pDevice->CreateUnorderedAccessView(evalBuf, &uavdesc, &evalUAV);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to create buffer HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return new ShaderDebugTrace; // @NoCoverage
|
|
}
|
|
}
|
|
|
|
UINT zero = 0;
|
|
m_pImmediateContext->ClearUnorderedAccessViewUint(initialUAV, &zero);
|
|
if(evalUAV)
|
|
m_pImmediateContext->ClearUnorderedAccessViewUint(evalUAV, &zero);
|
|
|
|
ID3D11UnorderedAccessView *uavs[] = {initialUAV, evalUAV};
|
|
|
|
UINT count = (UINT)-1;
|
|
m_pImmediateContext->OMSetRenderTargetsAndUnorderedAccessViews(cfg.uavslot, &rtView, depthView,
|
|
cfg.uavslot, 2, uavs, &count);
|
|
m_pImmediateContext->PSSetShader(extract, NULL, 0);
|
|
|
|
SAFE_RELEASE(rtView);
|
|
SAFE_RELEASE(depthView);
|
|
|
|
{
|
|
D3D11MarkerRegion initState("Replaying event for initial states");
|
|
|
|
m_pDevice->ReplayLog(0, eventId, eReplay_OnlyDraw);
|
|
|
|
m_pImmediateContext->CopyResource(initialStageBuf, initialBuf);
|
|
if(evalStageBuf)
|
|
m_pImmediateContext->CopyResource(evalStageBuf, evalBuf);
|
|
}
|
|
|
|
D3D11_MAPPED_SUBRESOURCE mapped;
|
|
hr = m_pImmediateContext->Map(initialStageBuf, 0, D3D11_MAP_READ, 0, &mapped);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to map stage buff HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return new ShaderDebugTrace; // @NoCoverage
|
|
}
|
|
|
|
bytebuf initialData;
|
|
initialData.resize(structStride * (DXDebug::maxPixelHits + 1));
|
|
memcpy(initialData.data(), mapped.pData, structStride * (DXDebug::maxPixelHits + 1));
|
|
|
|
m_pImmediateContext->Unmap(initialStageBuf, 0);
|
|
|
|
bytebuf evalData;
|
|
|
|
if(evalStageBuf)
|
|
{
|
|
hr = m_pImmediateContext->Map(evalStageBuf, 0, D3D11_MAP_READ, 0, &mapped);
|
|
|
|
if(FAILED(hr))
|
|
{
|
|
RDCERR("Failed to map stage buff HRESULT: %s", ToStr(hr).c_str()); // @NoCoverage
|
|
return new ShaderDebugTrace; // @NoCoverage
|
|
}
|
|
|
|
evalData.resize(evalStructStride * (DXDebug::maxPixelHits + 1));
|
|
memcpy(evalData.data(), mapped.pData, evalStructStride * (DXDebug::maxPixelHits + 1));
|
|
|
|
m_pImmediateContext->Unmap(evalStageBuf, 0);
|
|
}
|
|
|
|
SAFE_RELEASE(initialUAV);
|
|
SAFE_RELEASE(initialBuf);
|
|
SAFE_RELEASE(initialStageBuf);
|
|
|
|
SAFE_RELEASE(evalUAV);
|
|
SAFE_RELEASE(evalBuf);
|
|
SAFE_RELEASE(evalStageBuf);
|
|
|
|
SAFE_RELEASE(extract);
|
|
|
|
DXDebug::DebugHit *buf = (DXDebug::DebugHit *)initialData.data();
|
|
|
|
D3D11MarkerRegion::Set(StringFormat::Fmt("Got %u hits", buf[0].numHits));
|
|
|
|
if(buf[0].numHits == 0)
|
|
{
|
|
RDCLOG("No hit for this event");
|
|
return new ShaderDebugTrace;
|
|
}
|
|
|
|
// if we encounter multiple hits at our destination pixel co-ord (or any other) we
|
|
// check to see if a specific primitive was requested (via primitive parameter not
|
|
// being set to ~0U). If it was, debug that pixel, otherwise do a best-estimate
|
|
// of which fragment was the last to successfully depth test and debug that, just by
|
|
// checking if the depth test is ordered and picking the final fragment in the series
|
|
|
|
D3D11_COMPARISON_FUNC depthFunc = D3D11_COMPARISON_LESS;
|
|
|
|
if(rs->OM.DepthStencilState)
|
|
{
|
|
D3D11_DEPTH_STENCIL_DESC desc;
|
|
rs->OM.DepthStencilState->GetDesc(&desc);
|
|
depthFunc = desc.DepthFunc;
|
|
}
|
|
|
|
DXDebug::DebugHit *winner = NULL;
|
|
float *evalSampleCache = (float *)evalData.data();
|
|
size_t winnerIdx = 0;
|
|
|
|
if(sample == ~0U)
|
|
sample = 0;
|
|
|
|
if(primitive != ~0U)
|
|
{
|
|
for(size_t i = 0; i < buf[0].numHits && i < DXDebug::maxPixelHits; i++)
|
|
{
|
|
DXDebug::DebugHit *hit = (DXDebug::DebugHit *)(initialData.data() + i * structStride);
|
|
|
|
if(hit->primitive == primitive && hit->sample == sample)
|
|
{
|
|
winner = hit;
|
|
winnerIdx = i;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(winner == NULL)
|
|
{
|
|
for(size_t i = 0; i < buf[0].numHits && i < DXDebug::maxPixelHits; i++)
|
|
{
|
|
DXDebug::DebugHit *hit = (DXDebug::DebugHit *)(initialData.data() + i * structStride);
|
|
|
|
if(winner == NULL)
|
|
{
|
|
// If we haven't picked a winner at all yet, use the first one
|
|
winner = hit;
|
|
winnerIdx = i;
|
|
}
|
|
else if(hit->sample == sample)
|
|
{
|
|
// If this hit is for the sample we want, check whether it's a better pick
|
|
if(winner->sample != sample)
|
|
{
|
|
// The previously selected winner was for the wrong sample, use this one
|
|
winner = hit;
|
|
winnerIdx = i;
|
|
}
|
|
else if((depthFunc == D3D11_COMPARISON_ALWAYS || depthFunc == D3D11_COMPARISON_NEVER ||
|
|
depthFunc == D3D11_COMPARISON_NOT_EQUAL || depthFunc == D3D11_COMPARISON_EQUAL))
|
|
{
|
|
// For depth functions without an inequality comparison, use the last sample encountered
|
|
winner = hit;
|
|
winnerIdx = i;
|
|
}
|
|
else if((depthFunc == D3D11_COMPARISON_LESS && hit->depth < winner->depth) ||
|
|
(depthFunc == D3D11_COMPARISON_LESS_EQUAL && hit->depth <= winner->depth) ||
|
|
(depthFunc == D3D11_COMPARISON_GREATER && hit->depth > winner->depth) ||
|
|
(depthFunc == D3D11_COMPARISON_GREATER_EQUAL && hit->depth >= winner->depth))
|
|
{
|
|
// For depth functions with an inequality, find the hit that "wins" the most
|
|
winner = hit;
|
|
winnerIdx = i;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
evalSampleCache =
|
|
(float *)(evalData.data() + fetcher.evalSampleCacheData.size() * sizeof(Vec4f) * 4 * winnerIdx);
|
|
|
|
if(winner == NULL)
|
|
{
|
|
RDCLOG("Couldn't find any pixels that passed depth test at target co-ordinates");
|
|
return new ShaderDebugTrace;
|
|
}
|
|
|
|
tracker.State().ApplyState(m_pImmediateContext);
|
|
|
|
DXDebug::DebugHit *hit = winner;
|
|
|
|
// ddx(SV_Position.x) MUST be 1.0
|
|
if(hit->derivValid != 1.0f)
|
|
{
|
|
RDCERR("Derivatives invalid");
|
|
return new ShaderDebugTrace;
|
|
}
|
|
|
|
DXBCDebug::InterpretDebugger *interpreter = new DXBCDebug::InterpretDebugger;
|
|
interpreter->eventId = eventId;
|
|
ShaderDebugTrace *ret = interpreter->BeginDebug(dxbc, refl, hit->quadLaneIndex);
|
|
DXBCDebug::GlobalState &global = interpreter->global;
|
|
|
|
AddCBuffersToGlobalState(*dxbc->GetDXBCByteCode(), *GetDebugManager(), global, ret->sourceVars,
|
|
rs->PS, refl);
|
|
|
|
global.sampleEvalRegisterMask = fetcher.sampleEvalRegisterMask;
|
|
|
|
byte *data = (byte *)(hit + 1);
|
|
|
|
for(uint32_t q = 0; q < 4; q++)
|
|
{
|
|
DXDebug::PSLaneData *lane = (DXDebug::PSLaneData *)data;
|
|
|
|
DXBCDebug::ThreadState &state = interpreter->workgroup[q];
|
|
rdcarray<ShaderVariable> &ins = state.inputs;
|
|
|
|
if(q != hit->quadLaneIndex)
|
|
ins = interpreter->workgroup[hit->quadLaneIndex].inputs;
|
|
|
|
state.semantics.coverage = lane->coverage;
|
|
state.semantics.primID = lane->primitive;
|
|
state.semantics.isFrontFace = lane->isFrontFace;
|
|
|
|
if(!ins.empty() && ins.back().name == dxbc->GetDXBCByteCode()->GetRegisterName(
|
|
DXBCBytecode::TYPE_INPUT_COVERAGE_MASK, 0))
|
|
ins.back().value.u32v[0] = lane->coverage;
|
|
|
|
if(lane->isHelper)
|
|
state.SetHelper();
|
|
|
|
data += sizeof(DXDebug::PSLaneData);
|
|
|
|
for(size_t i = 0; i < fetcher.inputs.size(); i++)
|
|
{
|
|
if(fetcher.inputs[i].reg >= 0)
|
|
{
|
|
ShaderVariable &invar = ins[fetcher.inputs[i].reg];
|
|
|
|
if(fetcher.inputs[i].sysattribute == ShaderBuiltin::PrimitiveIndex)
|
|
{
|
|
invar.value.u32v[fetcher.inputs[i].elem] = lane->primitive;
|
|
}
|
|
else if(fetcher.inputs[i].sysattribute == ShaderBuiltin::MSAASampleIndex)
|
|
{
|
|
invar.value.u32v[fetcher.inputs[i].elem] = lane->sample;
|
|
}
|
|
else if(fetcher.inputs[i].sysattribute == ShaderBuiltin::MSAACoverage)
|
|
{
|
|
invar.value.u32v[fetcher.inputs[i].elem] = lane->coverage;
|
|
}
|
|
else if(fetcher.inputs[i].sysattribute == ShaderBuiltin::IsFrontFace)
|
|
{
|
|
invar.value.u32v[fetcher.inputs[i].elem] = lane->isFrontFace ? ~0U : 0;
|
|
}
|
|
else
|
|
{
|
|
int32_t *rawout = &invar.value.s32v[fetcher.inputs[i].elem];
|
|
|
|
memcpy(rawout, data, fetcher.inputs[i].numwords * 4);
|
|
}
|
|
}
|
|
|
|
if(fetcher.inputs[i].included)
|
|
data += fetcher.inputs[i].numwords * sizeof(uint32_t);
|
|
}
|
|
|
|
// fetch any inputs that were evaluated at sample granularity
|
|
for(const DXDebug::SampleEvalCacheKey &key : fetcher.evalSampleCacheData)
|
|
{
|
|
// start with the basic input value
|
|
ShaderVariable var = state.inputs[key.inputRegisterIndex];
|
|
|
|
// copy over the value into the variable
|
|
memcpy(var.value.f32v.data(), evalSampleCache, var.columns * sizeof(float));
|
|
|
|
// store in the global cache for this thread
|
|
DXDebug::SampleEvalCacheKey k = key;
|
|
k.quadIndex = q;
|
|
global.sampleEvalCache[k] = var;
|
|
|
|
// advance past this data - always by float4 as that's the buffer stride
|
|
evalSampleCache += 4;
|
|
}
|
|
}
|
|
|
|
ret->inputs = interpreter->activeLane().inputs;
|
|
ret->constantBlocks = global.constantBlocks;
|
|
|
|
dxbc->FillTraceLineInfo(*ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
ShaderDebugTrace *D3D11Replay::DebugThread(uint32_t eventId,
|
|
const rdcfixedarray<uint32_t, 3> &groupid,
|
|
const rdcfixedarray<uint32_t, 3> &threadid)
|
|
{
|
|
D3D11MarkerRegion region(StringFormat::Fmt("DebugThread @ %u: [%u, %u, %u] (%u, %u, %u)", eventId,
|
|
groupid[0], groupid[1], groupid[2], threadid[0],
|
|
threadid[1], threadid[2]));
|
|
|
|
D3D11RenderStateTracker tracker(m_pImmediateContext);
|
|
|
|
ID3D11ComputeShader *stateCS = NULL;
|
|
m_pImmediateContext->CSGetShader(&stateCS, NULL, NULL);
|
|
|
|
WrappedID3D11Shader<ID3D11ComputeShader> *cs = (WrappedID3D11Shader<ID3D11ComputeShader> *)stateCS;
|
|
|
|
SAFE_RELEASE(stateCS);
|
|
|
|
if(!cs)
|
|
return new ShaderDebugTrace;
|
|
|
|
DXBC::DXBCContainer *dxbc = cs->GetDXBC();
|
|
const ShaderReflection &refl = cs->GetDetails();
|
|
|
|
if(!dxbc)
|
|
return new ShaderDebugTrace;
|
|
|
|
dxbc->GetDisassembly(false);
|
|
|
|
D3D11RenderState *rs = m_pImmediateContext->GetCurrentPipelineState();
|
|
|
|
uint32_t activeIndex = 0;
|
|
if(dxbc->GetThreadScope() == DXBC::ThreadScope::Workgroup)
|
|
{
|
|
if(D3D_Hack_EnableGroups())
|
|
activeIndex = threadid[0] + threadid[1] * refl.dispatchThreadsDimension[0] +
|
|
threadid[2] * refl.dispatchThreadsDimension[0] * refl.dispatchThreadsDimension[1];
|
|
}
|
|
|
|
DXBCDebug::InterpretDebugger *interpreter = new DXBCDebug::InterpretDebugger;
|
|
interpreter->eventId = eventId;
|
|
ShaderDebugTrace *ret = interpreter->BeginDebug(dxbc, refl, activeIndex);
|
|
DXBCDebug::GlobalState &global = interpreter->global;
|
|
DXBCDebug::ThreadState &state = interpreter->activeLane();
|
|
|
|
AddCBuffersToGlobalState(*dxbc->GetDXBCByteCode(), *GetDebugManager(), global, ret->sourceVars,
|
|
rs->CS, refl);
|
|
|
|
for(int i = 0; i < 3; i++)
|
|
{
|
|
state.semantics.GroupID[i] = groupid[i];
|
|
state.semantics.ThreadID[i] = threadid[i];
|
|
}
|
|
|
|
ret->constantBlocks = global.constantBlocks;
|
|
|
|
dxbc->FillTraceLineInfo(*ret);
|
|
|
|
// add fake inputs for semantics
|
|
for(size_t i = 0; i < dxbc->GetDXBCByteCode()->GetNumDeclarations(); i++)
|
|
{
|
|
const DXBCBytecode::Declaration &decl = dxbc->GetDXBCByteCode()->GetDeclaration(i);
|
|
|
|
if(decl.declaration == DXBCBytecode::OPCODE_DCL_INPUT &&
|
|
(decl.operand.type == DXBCBytecode::TYPE_INPUT_THREAD_ID ||
|
|
decl.operand.type == DXBCBytecode::TYPE_INPUT_THREAD_GROUP_ID ||
|
|
decl.operand.type == DXBCBytecode::TYPE_INPUT_THREAD_ID_IN_GROUP ||
|
|
decl.operand.type == DXBCBytecode::TYPE_INPUT_THREAD_ID_IN_GROUP_FLATTENED))
|
|
{
|
|
ShaderVariable v;
|
|
|
|
v.name = decl.operand.toString(dxbc->GetReflection(), DXBCBytecode::ToString::IsDecl);
|
|
v.rows = 1;
|
|
v.type = VarType::UInt;
|
|
|
|
switch(decl.operand.type)
|
|
{
|
|
case DXBCBytecode::TYPE_INPUT_THREAD_GROUP_ID:
|
|
memcpy(v.value.u32v.data(), state.semantics.GroupID, sizeof(uint32_t) * 3);
|
|
v.columns = 3;
|
|
break;
|
|
case DXBCBytecode::TYPE_INPUT_THREAD_ID_IN_GROUP:
|
|
memcpy(v.value.u32v.data(), state.semantics.ThreadID, sizeof(uint32_t) * 3);
|
|
v.columns = 3;
|
|
break;
|
|
case DXBCBytecode::TYPE_INPUT_THREAD_ID:
|
|
v.value.u32v[0] =
|
|
state.semantics.GroupID[0] * dxbc->GetReflection()->DispatchThreadsDimension[0] +
|
|
state.semantics.ThreadID[0];
|
|
v.value.u32v[1] =
|
|
state.semantics.GroupID[1] * dxbc->GetReflection()->DispatchThreadsDimension[1] +
|
|
state.semantics.ThreadID[1];
|
|
v.value.u32v[2] =
|
|
state.semantics.GroupID[2] * dxbc->GetReflection()->DispatchThreadsDimension[2] +
|
|
state.semantics.ThreadID[2];
|
|
v.columns = 3;
|
|
break;
|
|
case DXBCBytecode::TYPE_INPUT_THREAD_ID_IN_GROUP_FLATTENED:
|
|
v.value.u32v[0] =
|
|
state.semantics.ThreadID[2] * dxbc->GetReflection()->DispatchThreadsDimension[0] *
|
|
dxbc->GetReflection()->DispatchThreadsDimension[1] +
|
|
state.semantics.ThreadID[1] * dxbc->GetReflection()->DispatchThreadsDimension[0] +
|
|
state.semantics.ThreadID[0];
|
|
v.columns = 1;
|
|
break;
|
|
default: v.columns = 4; break;
|
|
}
|
|
|
|
ret->inputs.push_back(v);
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
ShaderDebugTrace *D3D11Replay::DebugMeshThread(uint32_t eventId,
|
|
const rdcfixedarray<uint32_t, 3> &groupid,
|
|
const rdcfixedarray<uint32_t, 3> &threadid)
|
|
{
|
|
// Not supported
|
|
return new ShaderDebugTrace;
|
|
}
|
|
|
|
rdcarray<ShaderDebugState> D3D11Replay::ContinueDebug(ShaderDebugger *debugger)
|
|
{
|
|
DXBCDebug::InterpretDebugger *interpreter = (DXBCDebug::InterpretDebugger *)debugger;
|
|
|
|
if(!interpreter)
|
|
return {};
|
|
|
|
D3D11DebugAPIWrapper apiWrapper(m_pDevice, interpreter->dxbc, interpreter->global,
|
|
interpreter->eventId);
|
|
|
|
D3D11MarkerRegion region("ContinueDebug Simulation Loop");
|
|
|
|
return interpreter->ContinueDebug(&apiWrapper);
|
|
}
|
|
|
|
void D3D11Replay::FreeDebugger(ShaderDebugger *debugger)
|
|
{
|
|
delete debugger;
|
|
}
|