mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-17 12:06:38 +00:00
This adds the NVVulkanCounters class, which implements Vulkan counter collection on NVIDIA hardware via the NVIDIA Nsight Perf SDK. Some modifications are made to the NvPerfUtility headers in order to use the Vulkan dispatch tables from RenderDoc. On Windows, the VK_KHR_external_semaphore_win32 extension is required for synchronization with the NvPerf "service pending GPU operations" thread.
389 lines
11 KiB
C++
389 lines
11 KiB
C++
/******************************************************************************
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2019-2022 Baldur Karlsson
|
|
*
|
|
* 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 "strings/string_utils.h"
|
|
#include "vk_core.h"
|
|
#include "vk_replay.h"
|
|
|
|
#include <shlwapi.h>
|
|
|
|
static int dllLocator = 0;
|
|
|
|
void VulkanReplay::OutputWindow::SetWindowHandle(WindowingData window)
|
|
{
|
|
RDCASSERT(window.system == WindowingSystem::Win32, window.system);
|
|
wnd = window.win32.window;
|
|
}
|
|
|
|
void VulkanReplay::OutputWindow::CreateSurface(WrappedVulkan *driver, VkInstance inst)
|
|
{
|
|
VkWin32SurfaceCreateInfoKHR createInfo;
|
|
|
|
createInfo.sType = VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR;
|
|
createInfo.pNext = NULL;
|
|
createInfo.flags = 0;
|
|
createInfo.hwnd = wnd;
|
|
|
|
GetModuleHandleExA(
|
|
GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS | GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT,
|
|
(const char *)&dllLocator, (HMODULE *)&createInfo.hinstance);
|
|
|
|
VkResult vkr = ObjDisp(inst)->CreateWin32SurfaceKHR(Unwrap(inst), &createInfo, NULL, &surface);
|
|
driver->CheckVkResult(vkr);
|
|
}
|
|
|
|
void VulkanReplay::GetOutputWindowDimensions(uint64_t id, int32_t &w, int32_t &h)
|
|
{
|
|
if(id == 0 || m_OutputWindows.find(id) == m_OutputWindows.end())
|
|
return;
|
|
|
|
OutputWindow &outw = m_OutputWindows[id];
|
|
|
|
if(outw.m_WindowSystem == WindowingSystem::Headless)
|
|
{
|
|
w = outw.width;
|
|
h = outw.height;
|
|
return;
|
|
}
|
|
|
|
RECT rect = {0};
|
|
GetClientRect(outw.wnd, &rect);
|
|
w = rect.right - rect.left;
|
|
h = rect.bottom - rect.top;
|
|
}
|
|
|
|
bool VulkanReplay::IsOutputWindowVisible(uint64_t id)
|
|
{
|
|
if(id == 0 || m_OutputWindows.find(id) == m_OutputWindows.end())
|
|
return false;
|
|
|
|
if(m_OutputWindows[id].m_WindowSystem == WindowingSystem::Headless)
|
|
return true;
|
|
|
|
return (IsWindowVisible(m_OutputWindows[id].wnd) == TRUE);
|
|
}
|
|
|
|
void WrappedVulkan::AddRequiredExtensions(bool instance, rdcarray<rdcstr> &extensionList,
|
|
const std::set<rdcstr> &supportedExtensions)
|
|
{
|
|
bool device = !instance;
|
|
|
|
if(instance)
|
|
{
|
|
// for windows we require both extensions as there's no alternative
|
|
if(supportedExtensions.find(VK_KHR_SURFACE_EXTENSION_NAME) == supportedExtensions.end())
|
|
{
|
|
RDCERR("Unsupported required instance extension '%s'", VK_KHR_SURFACE_EXTENSION_NAME);
|
|
}
|
|
else
|
|
{
|
|
// don't add duplicates
|
|
if(!extensionList.contains(VK_KHR_SURFACE_EXTENSION_NAME))
|
|
extensionList.push_back(VK_KHR_SURFACE_EXTENSION_NAME);
|
|
}
|
|
|
|
if(supportedExtensions.find(VK_KHR_WIN32_SURFACE_EXTENSION_NAME) == supportedExtensions.end())
|
|
{
|
|
RDCERR("Unsupported required instance extension '%s'", VK_KHR_WIN32_SURFACE_EXTENSION_NAME);
|
|
}
|
|
else
|
|
{
|
|
m_SupportedWindowSystems.push_back(WindowingSystem::Win32);
|
|
|
|
if(!extensionList.contains(VK_KHR_WIN32_SURFACE_EXTENSION_NAME))
|
|
extensionList.push_back(VK_KHR_WIN32_SURFACE_EXTENSION_NAME);
|
|
}
|
|
}
|
|
else if(device)
|
|
{
|
|
if(supportedExtensions.find(VK_KHR_SWAPCHAIN_EXTENSION_NAME) == supportedExtensions.end())
|
|
{
|
|
RDCERR("Unsupported required device extension '%s'", VK_KHR_SWAPCHAIN_EXTENSION_NAME);
|
|
}
|
|
else
|
|
{
|
|
// don't add duplicates
|
|
if(!extensionList.contains(VK_KHR_SWAPCHAIN_EXTENSION_NAME))
|
|
extensionList.push_back(VK_KHR_SWAPCHAIN_EXTENSION_NAME);
|
|
}
|
|
if((supportedExtensions.find(VK_KHR_EXTERNAL_SEMAPHORE_WIN32_EXTENSION_NAME) ==
|
|
supportedExtensions.end()) ||
|
|
(supportedExtensions.find(VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME) ==
|
|
supportedExtensions.end()))
|
|
{
|
|
RDCWARN("Unsupported required instance extension for NVIDIA performance counters '%s'",
|
|
VK_KHR_EXTERNAL_SEMAPHORE_WIN32_EXTENSION_NAME);
|
|
}
|
|
else
|
|
{
|
|
if(!extensionList.contains(VK_KHR_EXTERNAL_SEMAPHORE_WIN32_EXTENSION_NAME))
|
|
extensionList.push_back(VK_KHR_EXTERNAL_SEMAPHORE_WIN32_EXTENSION_NAME);
|
|
if(!extensionList.contains(VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME))
|
|
extensionList.push_back(VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME);
|
|
}
|
|
}
|
|
}
|
|
|
|
#if !defined(VK_USE_PLATFORM_WIN32_KHR)
|
|
#error "Win32 KHR platform not defined"
|
|
#endif
|
|
|
|
void *LoadVulkanLibrary()
|
|
{
|
|
return Process::LoadModule("vulkan-1.dll");
|
|
}
|
|
|
|
rdcstr GetJSONPath(bool wow6432)
|
|
{
|
|
rdcstr libPath;
|
|
FileIO::GetLibraryFilename(libPath);
|
|
rdcstr jsonPath = get_dirname(FileIO::GetFullPathname(libPath));
|
|
|
|
const rdcwstr jsonWide = StringFormat::UTF82Wide(jsonPath);
|
|
|
|
if(jsonWide[1] == L':' && PathIsNetworkPathW(jsonWide.c_str()))
|
|
{
|
|
using PFN_WNetGetUniversalNameW = decltype(&WNetGetUniversalNameW);
|
|
|
|
HMODULE mpr = LoadLibraryA("mpr.dll");
|
|
if(mpr)
|
|
{
|
|
PFN_WNetGetUniversalNameW getUniversal =
|
|
(PFN_WNetGetUniversalNameW)GetProcAddress(mpr, "WNetGetUniversalNameW");
|
|
|
|
DWORD bufSize = 2048;
|
|
byte *buf = new byte[bufSize];
|
|
memset(buf, 0, bufSize);
|
|
DWORD result = getUniversal(jsonWide.c_str(), UNIVERSAL_NAME_INFO_LEVEL, buf, &bufSize);
|
|
if(result == NO_ERROR)
|
|
{
|
|
UNIVERSAL_NAME_INFOW *nameInfo = (UNIVERSAL_NAME_INFOW *)buf;
|
|
RDCLOG("Converted %ls network path to %ls", jsonWide.c_str(), nameInfo->lpUniversalName);
|
|
jsonPath = StringFormat::Wide2UTF8(nameInfo->lpUniversalName);
|
|
}
|
|
else
|
|
{
|
|
RDCERR("Error calling WNetGetUniversalNameW: %d", result);
|
|
}
|
|
|
|
delete[] buf;
|
|
}
|
|
else
|
|
{
|
|
RDCERR("Can't load mpr.dll for WNetGetUniversalNameW");
|
|
}
|
|
}
|
|
|
|
if(wow6432)
|
|
jsonPath += "\\x86";
|
|
|
|
jsonPath += "\\";
|
|
|
|
rdcstr module_name;
|
|
FileIO::GetLibraryFilename(module_name);
|
|
jsonPath += strip_extension(get_basename(module_name));
|
|
|
|
jsonPath += ".json";
|
|
|
|
return jsonPath;
|
|
}
|
|
|
|
static HKEY GetImplicitLayersKey(bool writeable, bool wow6432)
|
|
{
|
|
rdcstr basepath = "SOFTWARE\\";
|
|
|
|
if(wow6432)
|
|
basepath += "Wow6432Node\\";
|
|
|
|
basepath += "Khronos\\Vulkan\\ImplicitLayers";
|
|
|
|
HKEY key = NULL;
|
|
LSTATUS ret = ERROR_SUCCESS;
|
|
|
|
if(writeable)
|
|
ret = RegCreateKeyExA(HKEY_LOCAL_MACHINE, basepath.c_str(), 0, NULL, 0, KEY_READ | KEY_WRITE,
|
|
NULL, &key, NULL);
|
|
else
|
|
ret = RegOpenKeyExA(HKEY_LOCAL_MACHINE, basepath.c_str(), 0, KEY_READ, &key);
|
|
|
|
if(ret != ERROR_SUCCESS)
|
|
{
|
|
if(key)
|
|
RegCloseKey(key);
|
|
|
|
// find to fail to open for read, the key may not exist
|
|
if(writeable)
|
|
RDCERR("Couldn't open %s for write", basepath.c_str());
|
|
|
|
return NULL;
|
|
}
|
|
|
|
return key;
|
|
}
|
|
|
|
bool ProcessImplicitLayersKey(HKEY key, const rdcstr &path, rdcarray<rdcstr> *otherJSONs,
|
|
bool deleteOthers)
|
|
{
|
|
bool thisRegistered = false;
|
|
|
|
wchar_t name[1025] = {};
|
|
DWORD nameSize = 1024;
|
|
DWORD idx = 0;
|
|
|
|
LONG ret = RegEnumValueW(key, idx++, name, &nameSize, NULL, NULL, NULL, NULL);
|
|
|
|
rdcwstr myJSON = StringFormat::UTF82Wide(path);
|
|
for(size_t i = 0; i < myJSON.length(); i++)
|
|
myJSON[i] = towlower(myJSON[i]);
|
|
|
|
while(ret == ERROR_SUCCESS)
|
|
{
|
|
// convert the name here so we preserve casing
|
|
rdcstr utf8name = StringFormat::Wide2UTF8(name);
|
|
|
|
for(DWORD i = 0; i <= nameSize && name[i]; i++)
|
|
name[i] = towlower(name[i]);
|
|
|
|
if(wcscmp(name, myJSON.c_str()) == 0)
|
|
{
|
|
thisRegistered = true;
|
|
}
|
|
else if(wcsstr(name, L"renderdoc.json") != NULL)
|
|
{
|
|
if(otherJSONs)
|
|
otherJSONs->push_back(utf8name);
|
|
|
|
if(deleteOthers)
|
|
RegDeleteValueW(key, name);
|
|
}
|
|
|
|
nameSize = 1024;
|
|
ret = RegEnumValueW(key, idx++, name, &nameSize, NULL, NULL, NULL, NULL);
|
|
}
|
|
|
|
return thisRegistered;
|
|
}
|
|
|
|
bool VulkanReplay::CheckVulkanLayer(VulkanLayerFlags &flags, rdcarray<rdcstr> &myJSONs,
|
|
rdcarray<rdcstr> &otherJSONs)
|
|
{
|
|
rdcstr normalPath = GetJSONPath(false);
|
|
myJSONs.push_back(normalPath);
|
|
|
|
#if ENABLED(RDOC_X64)
|
|
rdcstr wow6432Path = GetJSONPath(true);
|
|
myJSONs.push_back(wow6432Path);
|
|
#endif
|
|
|
|
HKEY key = GetImplicitLayersKey(false, false);
|
|
|
|
// if we couldn't even get the ImplicitLayers reg key the system doesn't have the
|
|
// vulkan runtime, so we return as if we are not registered (as that's the case).
|
|
// People not using vulkan can either ignore the message, or click to set it up
|
|
// and it will go away as we'll have rights to create it.
|
|
if(!key)
|
|
{
|
|
flags = VulkanLayerFlags::NeedElevation | VulkanLayerFlags::RegisterAll;
|
|
return true;
|
|
}
|
|
|
|
bool thisRegistered = ProcessImplicitLayersKey(key, normalPath, &otherJSONs, false);
|
|
|
|
RegCloseKey(key);
|
|
|
|
#if ENABLED(RDOC_X64)
|
|
{
|
|
key = GetImplicitLayersKey(false, true);
|
|
|
|
if(key)
|
|
{
|
|
// if we're on 64-bit, the layer isn't registered unless both keys are registered.
|
|
thisRegistered &= ProcessImplicitLayersKey(key, wow6432Path, &otherJSONs, false);
|
|
|
|
RegCloseKey(key);
|
|
}
|
|
else
|
|
{
|
|
flags = VulkanLayerFlags::NeedElevation | VulkanLayerFlags::RegisterAll;
|
|
return true;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
flags = VulkanLayerFlags::NeedElevation | VulkanLayerFlags::RegisterAll;
|
|
|
|
if(thisRegistered)
|
|
flags |= VulkanLayerFlags::ThisInstallRegistered;
|
|
|
|
if(!otherJSONs.empty())
|
|
flags |= VulkanLayerFlags::OtherInstallsRegistered;
|
|
|
|
// return true if any changes are needed
|
|
return !otherJSONs.empty() || !thisRegistered;
|
|
}
|
|
|
|
void VulkanReplay::InstallVulkanLayer(bool systemLevel)
|
|
{
|
|
HKEY key = GetImplicitLayersKey(true, false);
|
|
|
|
const DWORD zero = 0;
|
|
|
|
if(key)
|
|
{
|
|
rdcstr path = GetJSONPath(false);
|
|
|
|
// this function will delete all non-matching renderdoc.json values, and return true if our own
|
|
// is registered
|
|
bool thisRegistered = ProcessImplicitLayersKey(key, path, NULL, true);
|
|
|
|
if(!thisRegistered)
|
|
RegSetValueExW(key, StringFormat::UTF82Wide(path).c_str(), 0, REG_DWORD, (const BYTE *)&zero,
|
|
sizeof(zero));
|
|
|
|
RegCloseKey(key);
|
|
}
|
|
|
|
// if we're a 64-bit process, update the 32-bit key
|
|
#if ENABLED(RDOC_X64)
|
|
{
|
|
key = GetImplicitLayersKey(true, true);
|
|
|
|
if(key)
|
|
{
|
|
rdcstr path = GetJSONPath(true);
|
|
|
|
// this function will delete all non-matching renderdoc.json values, and return true if our
|
|
// own is registered
|
|
bool thisRegistered = ProcessImplicitLayersKey(key, path, NULL, true);
|
|
|
|
if(!thisRegistered)
|
|
RegSetValueExW(key, StringFormat::UTF82Wide(path).c_str(), 0, REG_DWORD,
|
|
(const BYTE *)&zero, sizeof(zero));
|
|
|
|
RegCloseKey(key);
|
|
}
|
|
}
|
|
#endif
|
|
}
|