2017-09-12 23:33:50 +00:00
|
|
|
#ifndef __TRACYVIEW_HPP__
|
|
|
|
#define __TRACYVIEW_HPP__
|
|
|
|
|
|
|
|
#include <atomic>
|
2017-10-24 20:30:43 +00:00
|
|
|
#include <map>
|
2017-09-12 23:33:50 +00:00
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
2017-09-14 00:00:13 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-09-15 18:17:39 +00:00
|
|
|
#include "TracyVector.hpp"
|
2018-02-13 13:57:47 +00:00
|
|
|
#include "TracyWorker.hpp"
|
2017-11-15 20:49:41 +00:00
|
|
|
#include "tracy_benaphore.h"
|
2017-11-15 22:15:59 +00:00
|
|
|
#include "tracy_flat_hash_map.hpp"
|
2017-09-12 23:33:50 +00:00
|
|
|
|
2017-09-23 22:07:06 +00:00
|
|
|
struct ImVec2;
|
|
|
|
|
2017-09-12 23:33:50 +00:00
|
|
|
namespace tracy
|
|
|
|
{
|
|
|
|
|
2017-09-13 21:40:28 +00:00
|
|
|
struct QueueItem;
|
2017-09-30 14:58:02 +00:00
|
|
|
class FileRead;
|
2017-09-13 21:40:28 +00:00
|
|
|
|
2017-09-12 23:33:50 +00:00
|
|
|
class View
|
|
|
|
{
|
2017-11-27 21:41:30 +00:00
|
|
|
struct Animation
|
|
|
|
{
|
|
|
|
bool active = false;
|
|
|
|
int64_t start0, start1;
|
|
|
|
int64_t end0, end1;
|
|
|
|
double progress;
|
|
|
|
double lenMod;
|
|
|
|
};
|
|
|
|
|
2018-03-04 21:21:35 +00:00
|
|
|
struct Region
|
|
|
|
{
|
|
|
|
bool active = false;
|
|
|
|
int64_t start;
|
|
|
|
int64_t end;
|
|
|
|
};
|
|
|
|
|
2017-09-12 23:33:50 +00:00
|
|
|
public:
|
|
|
|
View() : View( "127.0.0.1" ) {}
|
|
|
|
View( const char* addr );
|
2017-09-30 14:58:02 +00:00
|
|
|
View( FileRead& f );
|
2017-09-12 23:33:50 +00:00
|
|
|
~View();
|
|
|
|
|
2017-09-15 00:30:22 +00:00
|
|
|
static void Draw();
|
2017-09-13 00:08:35 +00:00
|
|
|
|
2017-09-12 23:33:50 +00:00
|
|
|
private:
|
2017-10-22 11:56:05 +00:00
|
|
|
enum class Namespace : uint8_t
|
|
|
|
{
|
|
|
|
Full,
|
|
|
|
Mid,
|
|
|
|
Short
|
|
|
|
};
|
|
|
|
|
|
|
|
const char* ShortenNamespace( const char* name ) const;
|
|
|
|
|
2018-01-17 11:49:50 +00:00
|
|
|
void DrawHelpMarker( const char* desc ) const;
|
|
|
|
|
2017-11-25 14:45:16 +00:00
|
|
|
void DrawTextContrast( ImDrawList* draw, const ImVec2& pos, uint32_t color, const char* text );
|
|
|
|
|
2017-09-15 00:30:22 +00:00
|
|
|
void DrawImpl();
|
2017-09-30 12:37:21 +00:00
|
|
|
void DrawConnection();
|
2017-09-18 00:37:25 +00:00
|
|
|
void DrawFrames();
|
2017-10-13 13:26:18 +00:00
|
|
|
bool DrawZoneFrames();
|
2017-09-20 22:57:26 +00:00
|
|
|
void DrawZones();
|
2017-10-22 13:37:24 +00:00
|
|
|
int DrawZoneLevel( const Vector<ZoneEvent*>& vec, bool hover, double pxns, const ImVec2& wpos, int offset, int depth );
|
2017-11-13 23:48:26 +00:00
|
|
|
int DrawGpuZoneLevel( const Vector<GpuEvent*>& vec, bool hover, double pxns, const ImVec2& wpos, int offset, int depth, uint64_t thread );
|
2017-10-08 21:03:38 +00:00
|
|
|
int DrawLocks( uint64_t tid, bool hover, double pxns, const ImVec2& wpos, int offset, LockHighlight& highlight );
|
2017-10-13 13:15:57 +00:00
|
|
|
int DrawPlots( int offset, double pxns, const ImVec2& wpos, bool hover );
|
2017-10-18 20:29:59 +00:00
|
|
|
void DrawPlotPoint( const ImVec2& wpos, float x, float y, int offset, uint32_t color, bool hover, bool hasPrev, double val, double prev, bool merged );
|
2017-10-13 11:32:23 +00:00
|
|
|
void DrawOptions();
|
2017-10-14 12:36:30 +00:00
|
|
|
void DrawMessages();
|
2018-01-17 11:49:50 +00:00
|
|
|
void DrawFindZone();
|
2017-09-15 00:30:22 +00:00
|
|
|
|
2017-11-12 00:25:44 +00:00
|
|
|
void DrawInfoWindow();
|
|
|
|
void DrawZoneInfoWindow();
|
|
|
|
void DrawGpuInfoWindow();
|
|
|
|
|
2017-10-12 20:27:17 +00:00
|
|
|
void HandleZoneViewMouse( int64_t timespan, const ImVec2& wpos, float w, double& pxns );
|
|
|
|
|
2017-10-22 13:37:24 +00:00
|
|
|
uint32_t GetZoneColor( const ZoneEvent& ev );
|
2017-11-11 21:56:05 +00:00
|
|
|
uint32_t GetZoneColor( const GpuEvent& ev );
|
2017-10-22 13:37:24 +00:00
|
|
|
uint32_t GetZoneHighlight( const ZoneEvent& ev, bool migration );
|
2017-11-11 21:56:05 +00:00
|
|
|
uint32_t GetZoneHighlight( const GpuEvent& ev );
|
2017-10-22 13:37:24 +00:00
|
|
|
float GetZoneThickness( const ZoneEvent& ev );
|
2017-11-11 21:56:05 +00:00
|
|
|
float GetZoneThickness( const GpuEvent& ev );
|
2017-10-01 17:31:22 +00:00
|
|
|
|
2017-10-22 13:37:24 +00:00
|
|
|
void ZoomToZone( const ZoneEvent& ev );
|
2017-11-11 21:56:05 +00:00
|
|
|
void ZoomToZone( const GpuEvent& ev );
|
2017-11-27 21:12:26 +00:00
|
|
|
void ZoomToRange( int64_t start, int64_t end );
|
|
|
|
|
2017-10-22 13:37:24 +00:00
|
|
|
void ZoneTooltip( const ZoneEvent& ev );
|
2017-11-11 21:56:05 +00:00
|
|
|
void ZoneTooltip( const GpuEvent& ev );
|
2017-10-22 14:15:27 +00:00
|
|
|
const ZoneEvent* GetZoneParent( const ZoneEvent& zone ) const;
|
2017-11-12 00:25:44 +00:00
|
|
|
const GpuEvent* GetZoneParent( const GpuEvent& zone ) const;
|
2017-09-29 19:57:00 +00:00
|
|
|
|
2018-01-17 11:49:50 +00:00
|
|
|
void FindZones();
|
2018-03-04 20:17:38 +00:00
|
|
|
void RecalcFindMatches();
|
|
|
|
void RecalcFindMatches( const Vector<ZoneEvent*> &events, Vector<ZoneEvent*> &out, const int maxdepth = 0 );
|
2018-01-17 11:49:50 +00:00
|
|
|
|
2018-02-13 13:57:47 +00:00
|
|
|
template <typename T>
|
|
|
|
bool& Visible( const T* ptr )
|
|
|
|
{
|
|
|
|
static std::map <const T*, bool> visible;
|
|
|
|
if( visible.find( ptr ) == visible.end() )
|
|
|
|
{
|
|
|
|
visible[ptr] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return visible[ptr];
|
|
|
|
}
|
2017-09-30 14:20:08 +00:00
|
|
|
|
2018-02-13 13:57:47 +00:00
|
|
|
template <typename T>
|
|
|
|
bool& ShowFull( const T* ptr )
|
|
|
|
{
|
|
|
|
static std::map <const T*, bool> showFull;
|
|
|
|
if( showFull.find( ptr ) == showFull.end() )
|
|
|
|
{
|
|
|
|
showFull[ptr] = true;
|
|
|
|
}
|
2018-02-20 11:40:12 +00:00
|
|
|
|
2018-02-13 13:57:47 +00:00
|
|
|
return showFull[ptr];
|
|
|
|
}
|
2017-09-12 23:33:50 +00:00
|
|
|
|
2018-02-13 13:57:47 +00:00
|
|
|
Worker m_worker;
|
2017-09-30 14:58:02 +00:00
|
|
|
bool m_staticView;
|
2017-09-12 23:54:22 +00:00
|
|
|
|
2017-09-18 00:37:25 +00:00
|
|
|
int m_frameScale;
|
2017-09-18 22:26:40 +00:00
|
|
|
bool m_pause;
|
|
|
|
int m_frameStart;
|
2017-09-20 19:21:21 +00:00
|
|
|
|
2017-09-20 23:13:23 +00:00
|
|
|
int64_t m_zvStart;
|
|
|
|
int64_t m_zvEnd;
|
2017-12-09 19:05:34 +00:00
|
|
|
int64_t m_lastTime;
|
2017-09-24 14:10:28 +00:00
|
|
|
|
2017-10-01 17:58:53 +00:00
|
|
|
int8_t m_lastCpu;
|
|
|
|
|
2017-10-28 19:50:06 +00:00
|
|
|
int m_zvHeight;
|
|
|
|
int m_zvScroll;
|
2017-10-12 20:27:17 +00:00
|
|
|
|
2017-10-22 13:37:24 +00:00
|
|
|
const ZoneEvent* m_zoneInfoWindow;
|
|
|
|
const ZoneEvent* m_zoneHighlight;
|
2017-10-08 21:03:38 +00:00
|
|
|
LockHighlight m_lockHighlight;
|
2017-10-14 13:47:06 +00:00
|
|
|
const MessageData* m_msgHighlight;
|
2017-11-12 00:25:44 +00:00
|
|
|
const GpuEvent* m_gpuInfoWindow;
|
2017-11-12 00:28:07 +00:00
|
|
|
const GpuEvent* m_gpuHighlight;
|
2017-11-13 23:48:26 +00:00
|
|
|
uint64_t m_gpuInfoWindowThread;
|
2017-10-13 11:32:23 +00:00
|
|
|
|
2018-03-04 21:21:35 +00:00
|
|
|
Region m_highlight;
|
2017-10-15 14:42:56 +00:00
|
|
|
|
2017-11-11 22:13:54 +00:00
|
|
|
uint64_t m_gpuThread;
|
|
|
|
int64_t m_gpuStart;
|
|
|
|
int64_t m_gpuEnd;
|
|
|
|
|
2017-10-13 11:32:23 +00:00
|
|
|
bool m_showOptions;
|
2017-10-14 12:36:30 +00:00
|
|
|
bool m_showMessages;
|
2017-11-11 21:56:05 +00:00
|
|
|
bool m_drawGpuZones;
|
2017-10-13 11:32:23 +00:00
|
|
|
bool m_drawZones;
|
|
|
|
bool m_drawLocks;
|
2017-10-13 12:54:32 +00:00
|
|
|
bool m_drawPlots;
|
2017-10-22 11:32:27 +00:00
|
|
|
bool m_onlyContendedLocks;
|
2017-10-18 16:48:51 +00:00
|
|
|
|
2017-10-22 11:56:05 +00:00
|
|
|
Namespace m_namespace;
|
2017-11-27 21:41:30 +00:00
|
|
|
Animation m_zoomAnim;
|
2017-10-22 11:56:05 +00:00
|
|
|
|
2018-01-17 11:49:50 +00:00
|
|
|
struct {
|
|
|
|
bool show;
|
|
|
|
std::vector<std::unique_ptr<ThreadData>> result;
|
2018-03-04 21:11:50 +00:00
|
|
|
flat_hash_map<int32_t, bool> match;
|
2018-01-17 11:49:50 +00:00
|
|
|
char pattern[1024] = { "" };
|
2018-03-04 15:07:10 +00:00
|
|
|
int maxZonesPerThread = -1;
|
|
|
|
int maxDepth = -1;
|
2018-02-16 12:28:40 +00:00
|
|
|
bool logVal = false;
|
2018-02-16 14:34:22 +00:00
|
|
|
bool logTime = false;
|
2018-03-04 21:52:36 +00:00
|
|
|
Region highlight;
|
|
|
|
|
|
|
|
void Reset()
|
|
|
|
{
|
|
|
|
result.clear();
|
|
|
|
match.clear();
|
|
|
|
highlight.active = false;
|
|
|
|
}
|
2018-01-17 11:49:50 +00:00
|
|
|
} m_findZone;
|
2017-09-12 23:33:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|