-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
drbregma
committed
Mar 9, 2016
0 parents
commit e99ca98
Showing
13 changed files
with
1,347 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
//-------------------------------------------------------------------------------------- | ||
// Copyright 2015 Intel Corporation | ||
// All Rights Reserved | ||
// | ||
// Permission is granted to use, copy, distribute and prepare derivative works of this | ||
// software for any purpose and without fee, provided, that the above copyright notice | ||
// and this statement appear in all copies. Intel makes no representations about the | ||
// suitability of this software for any purpose. THIS SOFTWARE IS PROVIDED "AS IS." | ||
// INTEL SPECIFICALLY DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, AND ALL LIABILITY, | ||
// INCLUDING CONSEQUENTIAL AND OTHER INDIRECT DAMAGES, FOR THE USE OF THIS SOFTWARE, | ||
// INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PROPRIETARY RIGHTS, AND INCLUDING THE | ||
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Intel does not | ||
// assume any responsibility for any errors which may appear in this software nor any | ||
// responsibility to update it. | ||
//-------------------------------------------------------------------------------------- | ||
|
||
#include "PresentMon.hpp" | ||
#include "Util.hpp" | ||
#include <algorithm> | ||
#include <ctime> | ||
|
||
#include <windows.h> | ||
#include <psapi.h> | ||
#include <shlwapi.h> | ||
|
||
#pragma comment(lib, "psapi.lib") | ||
#pragma comment(lib, "shlwapi.lib") | ||
|
||
enum { | ||
MAX_HISTORY_LENGTH = 60, | ||
CHAIN_TIMEOUT_THRESHOLD_TICKS = 10000 // 10 sec | ||
}; | ||
|
||
template <typename Map, typename F> | ||
static void map_erase_if(Map& m, F pred) | ||
{ | ||
typename Map::iterator i = m.begin(); | ||
while ((i = std::find_if(i, m.end(), pred)) != m.end()) | ||
m.erase(i++); | ||
} | ||
|
||
static void UpdateProcessInfo(ProcessInfo& info, uint64_t now, uint32_t thisPid) | ||
{ | ||
if (now - info.mLastRefreshTicks > 1000) { | ||
info.mLastRefreshTicks = now; | ||
char path[MAX_PATH] = "<error>"; | ||
HANDLE h = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, thisPid); | ||
if (h) { | ||
GetModuleFileNameExA(h, NULL, path, sizeof(path) - 1); | ||
std::string name = PathFindFileNameA(path); | ||
if (name != info.mModuleName) { | ||
info.mChainMap.clear(); | ||
info.mModuleName = name; | ||
} | ||
CloseHandle(h); | ||
} else { | ||
info.mChainMap.clear(); | ||
} | ||
} | ||
// remove chains without recent updates | ||
map_erase_if(info.mChainMap, [now](const std::pair<const uint64_t, SwapChainData>& entry) { | ||
return now - entry.second.mLastUpdateTicks > CHAIN_TIMEOUT_THRESHOLD_TICKS; | ||
}); | ||
} | ||
|
||
void AddPresent(PresentMonData& pm, PresentEvent& p, uint64_t now, uint64_t perfFreq) | ||
{ | ||
auto& proc = pm.mProcessMap[p.ProcessId]; | ||
if (!proc.mLastRefreshTicks) { | ||
UpdateProcessInfo(proc, now, p.ProcessId); | ||
} | ||
|
||
if (pm.mArgs->mTargetProcessName && strcmp(pm.mArgs->mTargetProcessName, "*") && | ||
_stricmp(pm.mArgs->mTargetProcessName, proc.mModuleName.c_str())) { | ||
// process name does not match | ||
return; | ||
} | ||
if (pm.mArgs->mTargetPid && p.ProcessId != pm.mArgs->mTargetPid) { | ||
return; | ||
} | ||
|
||
auto& chain = proc.mChainMap[p.SwapChainAddress]; | ||
if (chain.mPresentHistory.size() > MAX_HISTORY_LENGTH) { | ||
chain.mPresentHistory.pop_front(); | ||
} | ||
chain.mPresentHistory.push_back(p); | ||
chain.mLastUpdateTicks = now; | ||
chain.mLastSyncInterval = p.SyncInterval; | ||
chain.mLastFlags = p.PresentFlags; | ||
|
||
if (pm.mOutputFile) { | ||
auto len = chain.mPresentHistory.size(); | ||
if (len > 2) { | ||
auto& curr = chain.mPresentHistory[len - 1]; | ||
auto& prev = chain.mPresentHistory[len - 2]; | ||
double deltaMilliseconds = 1000 * double(curr.QpcTime - prev.QpcTime) / perfFreq; | ||
fprintf(pm.mOutputFile, "%s,%d,0x%016llX,%.3lf,%d,%d\n", | ||
proc.mModuleName.c_str(), p.ProcessId, p.SwapChainAddress, deltaMilliseconds, curr.SyncInterval, curr.PresentFlags); | ||
} | ||
} | ||
} | ||
|
||
static double ComputeFps(SwapChainData& stats, uint64_t qpcFreq) | ||
{ | ||
// TODO: better method | ||
auto start = stats.mPresentHistory.front().QpcTime; | ||
auto end = stats.mPresentHistory.back().QpcTime; | ||
auto count = stats.mPresentHistory.size(); | ||
|
||
double deltaT = double(end - start) / qpcFreq; | ||
return count / deltaT; | ||
} | ||
|
||
void PresentMon_Init(const PresentMonArgs& args, PresentMonData& pm) | ||
{ | ||
pm.mArgs = &args; | ||
|
||
if (args.mOutputFileName) { | ||
fopen_s(&pm.mOutputFile, args.mOutputFileName, "w"); | ||
} else if (args.mTargetProcessName) { | ||
struct tm tm; | ||
time_t time_now = time(NULL); | ||
localtime_s(&tm, &time_now); | ||
std::string date = FormatString("%4d-%02d-%02d-%02d-%02d", | ||
tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, | ||
tm.tm_hour, tm.tm_min, tm.tm_sec); | ||
std::string path; | ||
if (strchr(args.mTargetProcessName, '*')) { | ||
path = FormatString("PresentMon-%s.csv", date.c_str()); | ||
} else { | ||
path = FormatString("PresentMon-%s-%s.csv", args.mTargetProcessName, date.c_str()); | ||
} | ||
fopen_s(&pm.mOutputFile, path.c_str(), "w"); | ||
} | ||
|
||
if (pm.mOutputFile) { | ||
fprintf(pm.mOutputFile, "module,pid,chain,delta,vsync,flags\n"); | ||
} | ||
} | ||
|
||
void PresentMon_Update(PresentMonData& pm, std::vector<PresentEvent> presents, uint64_t perfFreq) | ||
{ | ||
std::string display; | ||
uint64_t now = GetTickCount64(); | ||
|
||
// store the new presents into processes | ||
for (auto& p : presents) | ||
{ | ||
AddPresent(pm, p, now, perfFreq); | ||
} | ||
|
||
// update all processes | ||
for (auto& proc : pm.mProcessMap) | ||
{ | ||
UpdateProcessInfo(proc.second, now, proc.first); | ||
if (proc.second.mModuleName.empty() || | ||
proc.second.mChainMap.empty()) | ||
{ | ||
// don't display empty processes | ||
continue; | ||
} | ||
display += FormatString("%s[%d]:\n", proc.second.mModuleName.c_str(),proc.first); | ||
for (auto& chain : proc.second.mChainMap) | ||
{ | ||
double fps = ComputeFps(chain.second, perfFreq); | ||
display += FormatString("\t%016llX: SyncInterval %d | Flags %d | %.2lf ms/frame (%.1lf fps)%s\n", | ||
chain.first, chain.second.mLastSyncInterval, chain.second.mLastFlags, 1000.0/fps, fps, | ||
(now - chain.second.mLastUpdateTicks) > 1000 ? " [STALE]" : ""); | ||
} | ||
} | ||
|
||
// refresh the console | ||
ClearConsole(); | ||
printf(display.c_str()); | ||
} | ||
|
||
void PresentMon_Shutdown(PresentMonData& pm) | ||
{ | ||
if (pm.mOutputFile) | ||
{ | ||
fclose(pm.mOutputFile); | ||
pm.mOutputFile = nullptr; | ||
} | ||
pm.mProcessMap.clear(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
//-------------------------------------------------------------------------------------- | ||
// Copyright 2015 Intel Corporation | ||
// All Rights Reserved | ||
// | ||
// Permission is granted to use, copy, distribute and prepare derivative works of this | ||
// software for any purpose and without fee, provided, that the above copyright notice | ||
// and this statement appear in all copies. Intel makes no representations about the | ||
// suitability of this software for any purpose. THIS SOFTWARE IS PROVIDED "AS IS." | ||
// INTEL SPECIFICALLY DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, AND ALL LIABILITY, | ||
// INCLUDING CONSEQUENTIAL AND OTHER INDIRECT DAMAGES, FOR THE USE OF THIS SOFTWARE, | ||
// INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PROPRIETARY RIGHTS, AND INCLUDING THE | ||
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Intel does not | ||
// assume any responsibility for any errors which may appear in this software nor any | ||
// responsibility to update it. | ||
//-------------------------------------------------------------------------------------- | ||
|
||
#pragma once | ||
|
||
#include <cstdint> | ||
#include <vector> | ||
#include <string> | ||
#include <map> | ||
#include <deque> | ||
|
||
struct PresentEvent { | ||
uint64_t QpcTime; | ||
uint64_t SwapChainAddress; | ||
uint32_t SyncInterval; | ||
uint32_t PresentFlags; | ||
uint32_t ProcessId; | ||
}; | ||
|
||
struct SwapChainData { | ||
uint64_t mLastUpdateTicks = 0; | ||
uint32_t mLastSyncInterval = -1; | ||
uint32_t mLastFlags = -1; | ||
std::deque<PresentEvent> mPresentHistory; | ||
}; | ||
|
||
struct ProcessInfo { | ||
uint64_t mLastRefreshTicks = 0; // GetTickCount64 | ||
std::string mModuleName; | ||
std::map<uint64_t, SwapChainData> mChainMap; | ||
}; | ||
|
||
struct PresentMonArgs { | ||
const char *mOutputFileName = nullptr; | ||
const char *mTargetProcessName = nullptr; | ||
int mTargetPid = 0; | ||
}; | ||
|
||
struct PresentMonData { | ||
const PresentMonArgs *mArgs = nullptr; | ||
FILE *mOutputFile = nullptr; | ||
std::map<uint32_t, ProcessInfo> mProcessMap; | ||
}; | ||
|
||
void PresentMonEtw(PresentMonArgs args); | ||
|
||
void PresentMon_Init(const PresentMonArgs& args, PresentMonData& data); | ||
void PresentMon_Update(PresentMonData& data, std::vector<PresentEvent> presents, uint64_t perfFreq); | ||
void PresentMon_Shutdown(PresentMonData& data); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 14 | ||
VisualStudioVersion = 14.0.24720.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PresentMon", "PresentMon.vcxproj", "{4EB9794B-1F12-48CE-ADC1-917E9810F29E}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|x64 = Debug|x64 | ||
Debug|x86 = Debug|x86 | ||
Release|x64 = Release|x64 | ||
Release|x86 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{4EB9794B-1F12-48CE-ADC1-917E9810F29E}.Debug|x64.ActiveCfg = Debug|x64 | ||
{4EB9794B-1F12-48CE-ADC1-917E9810F29E}.Debug|x64.Build.0 = Debug|x64 | ||
{4EB9794B-1F12-48CE-ADC1-917E9810F29E}.Debug|x86.ActiveCfg = Debug|Win32 | ||
{4EB9794B-1F12-48CE-ADC1-917E9810F29E}.Debug|x86.Build.0 = Debug|Win32 | ||
{4EB9794B-1F12-48CE-ADC1-917E9810F29E}.Release|x64.ActiveCfg = Release|x64 | ||
{4EB9794B-1F12-48CE-ADC1-917E9810F29E}.Release|x64.Build.0 = Release|x64 | ||
{4EB9794B-1F12-48CE-ADC1-917E9810F29E}.Release|x86.ActiveCfg = Release|Win32 | ||
{4EB9794B-1F12-48CE-ADC1-917E9810F29E}.Release|x86.Build.0 = Release|Win32 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.