Files
compute-runtime/shared/source/os_interface/windows/wddm/wddm_residency_logger.h
2025-02-17 14:19:10 +01:00

227 lines
8.2 KiB
C++

/*
* Copyright (C) 2020-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/helpers/debug_helpers.h"
#include "shared/source/helpers/non_copyable_or_moveable.h"
#include "shared/source/os_interface/windows/windows_wrapper.h"
#include "shared/source/utilities/io_functions.h"
#include <chrono>
#include <cstring>
#include <sstream>
namespace NEO {
#if defined(_RELEASE_INTERNAL) || (_DEBUG)
constexpr bool wddmResidencyLoggingAvailable = true;
#else
constexpr bool wddmResidencyLoggingAvailable = false;
#endif
class WddmResidencyLogger : NonCopyableAndNonMovableClass {
public:
WddmResidencyLogger(unsigned int device, volatile void *fenceValueCpuVirtualAddress, std::string outDirectory) {
const char *wddmResidencyLoggerDefaultDirectory = "unk";
std::stringstream id;
id << std::hex;
id << "device-0x" << device << "_"
<< "pfencecpu-0x" << fenceValueCpuVirtualAddress;
std::stringstream filename;
if (std::strcmp(wddmResidencyLoggerDefaultDirectory, outDirectory.c_str()) != 0) {
filename << outDirectory;
if (outDirectory.back() != '\\') {
filename << "\\";
}
}
filename << "pagingfence_" << id.str() << ".log";
pagingLog = IoFunctions::fopenPtr(filename.str().c_str(), "at");
UNRECOVERABLE_IF(pagingLog == nullptr);
IoFunctions::fprintf(pagingLog, "%s\n", id.str().c_str());
}
MOCKABLE_VIRTUAL ~WddmResidencyLogger() {
IoFunctions::fclosePtr(pagingLog);
}
void reportAllocations(uint32_t count, size_t size) {
IoFunctions::fprintf(pagingLog, "residency for: handles %u size %zu\n", count, size);
}
void makeResidentLog(bool pendingMakeResident, UINT64 makeResidentPagingFence) {
this->pendingMakeResident = pendingMakeResident;
this->makeResidentPagingFence = makeResidentPagingFence;
makeResidentCall = true;
pendingTime = std::chrono::high_resolution_clock::now();
}
MOCKABLE_VIRTUAL void startWaitTime(UINT64 startWaitPagingFence) {
waitStartTime = std::chrono::high_resolution_clock::now();
this->startWaitPagingFence = startWaitPagingFence;
}
void enteredWait() {
enterWait = true;
}
void waitPagingeFenceLog(UINT64 stopWaitPagingFence, bool gpuWait) {
endTime = std::chrono::high_resolution_clock::now();
int64_t timeDiff = 0;
IoFunctions::fprintf(pagingLog, "makeResidentPagingFence: %lld startWaitPagingFence: %lld stopWaitPagingFence: %lld\n",
makeResidentPagingFence,
startWaitPagingFence,
stopWaitPagingFence);
timeDiff = std::chrono::duration_cast<std::chrono::microseconds>(endTime - pendingTime).count();
IoFunctions::fprintf(pagingLog, "makeResidentCall: %x pending return: %x delta time makeResident: %lld [us]\n",
makeResidentCall,
pendingMakeResident,
timeDiff);
timeDiff = std::chrono::duration_cast<std::chrono::microseconds>(endTime - waitStartTime).count();
IoFunctions::fprintf(pagingLog, "waiting: %x delta time wait loop: %lld [us] wait on GPU: %d\n", enterWait, timeDiff, gpuWait);
if (trimBudgetTime != std::chrono::high_resolution_clock::time_point::max()) {
timeDiff = std::chrono::duration_cast<std::chrono::microseconds>(endTime - trimBudgetTime).count();
IoFunctions::fprintf(pagingLog, "waiting delta time trim to budget: %lld [us]\n", timeDiff);
}
makeResidentCall = false;
enterWait = false;
makeResidentPagingFence = 0;
startWaitPagingFence = 0;
trimBudgetTime = std::chrono::high_resolution_clock::time_point::max();
}
void trimRequired(UINT64 numBytesToTrim) {
IoFunctions::fprintf(pagingLog, "trimming required: bytes to trim: %llu\n", numBytesToTrim);
trimBudgetTime = std::chrono::high_resolution_clock::now();
}
void variadicLog(char const *const formatStr, va_list arg) {
IoFunctions::vfprintfPtr(pagingLog, formatStr, arg);
}
MOCKABLE_VIRTUAL void trimCallbackBegin(std::chrono::high_resolution_clock::time_point &callbackStart) {
callbackStart = std::chrono::high_resolution_clock::now();
}
MOCKABLE_VIRTUAL void trimCallbackEnd(UINT callbackFlag, void *controllerObject, std::chrono::high_resolution_clock::time_point &callbackStart) {
auto callbackEnd = std::chrono::high_resolution_clock::now();
int64_t timeDiff = std::chrono::duration_cast<std::chrono::microseconds>(callbackEnd - callbackStart).count();
IoFunctions::fprintf(pagingLog, "trim callback object %p, flags: %u, duration %lld [us]\n", callbackFlag, controllerObject, timeDiff);
}
MOCKABLE_VIRTUAL void trimToBudget(UINT64 numBytesToTrim, void *controllerObject) {
IoFunctions::fprintf(pagingLog, "trimming required: bytes to trim: %llu on object: %p\n", numBytesToTrim, controllerObject);
}
protected:
std::chrono::high_resolution_clock::time_point pendingTime;
std::chrono::high_resolution_clock::time_point waitStartTime;
std::chrono::high_resolution_clock::time_point endTime;
std::chrono::high_resolution_clock::time_point trimBudgetTime = std::chrono::high_resolution_clock::time_point::max();
UINT64 makeResidentPagingFence = 0ull;
UINT64 startWaitPagingFence = 0ull;
FILE *pagingLog = nullptr;
bool pendingMakeResident = false;
bool enterWait = false;
bool makeResidentCall = false;
};
inline void perfLogResidencyMakeResident(WddmResidencyLogger *log, bool pendingMakeResident, UINT64 makeResidentPagingFence) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
log->makeResidentLog(pendingMakeResident, makeResidentPagingFence);
}
}
}
inline void perfLogResidencyReportAllocations(WddmResidencyLogger *log, uint32_t count, size_t size) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
log->reportAllocations(count, size);
}
}
}
inline void perfLogStartWaitTime(WddmResidencyLogger *log, UINT64 startWaitPagingFence) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
log->startWaitTime(startWaitPagingFence);
}
}
}
inline void perfLogResidencyEnteredWait(WddmResidencyLogger *log) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
log->enteredWait();
}
}
}
inline void perfLogResidencyWaitPagingeFenceLog(WddmResidencyLogger *log, UINT64 stopWaitPagingFence, bool gpuWait) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
log->waitPagingeFenceLog(stopWaitPagingFence, gpuWait);
}
}
}
inline void perfLogResidencyTrimRequired(WddmResidencyLogger *log, UINT64 numBytesToTrim) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
log->trimRequired(numBytesToTrim);
}
}
}
inline void perfLogResidencyTrimCallbackBegin(WddmResidencyLogger *log, std::chrono::high_resolution_clock::time_point &callbackStart) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
log->trimCallbackBegin(callbackStart);
}
}
}
inline void perfLogResidencyTrimCallbackEnd(WddmResidencyLogger *log, UINT callbackFlag, void *controllerObject, std::chrono::high_resolution_clock::time_point &callbackStart) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
log->trimCallbackEnd(callbackFlag, controllerObject, callbackStart);
}
}
}
inline void perfLogResidencyTrimToBudget(WddmResidencyLogger *log, UINT64 numBytesToTrim, void *controllerObject) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
log->trimToBudget(numBytesToTrim, controllerObject);
}
}
}
inline void perfLogResidencyVariadicLog(WddmResidencyLogger *log, char const *const format, ...) {
if constexpr (wddmResidencyLoggingAvailable) {
if (log) {
va_list args;
va_start(args, format);
log->variadicLog(format, args);
va_end(args);
}
}
}
} // namespace NEO