1
0
mirror of https://github.com/wolfpld/tracy synced 2025-01-15 20:08:00 +00:00

Compare commits

...

6 Commits

Author SHA1 Message Date
Bartosz Taudul
5cada49780
Update NEWS. 2021-04-01 20:18:24 +02:00
Bartosz Taudul
592644ae43
Don't issue warning if only disconnect is in send queue. 2021-04-01 20:16:47 +02:00
Bartosz Taudul
9b7f759347
Allow checking if disconnect was requested. 2021-04-01 20:16:29 +02:00
Bartosz Taudul
e6398250ca
Update NEWS. 2021-04-01 18:49:37 +02:00
Bartosz Taudul
450013bc27
Update to current uops.info xml file.
This updates ZEN3 and adds Tiger Lake.
2021-04-01 18:46:00 +02:00
Bartosz Taudul
da29ec975b
Release 0.7.7. 2021-04-01 18:15:07 +02:00
6 changed files with 119271 additions and 102034 deletions

8
NEWS
View File

@ -9,6 +9,14 @@ a mistake.
v0.x.x (xxxx-xx-xx)
-------------------
- Updated Zen 3 and added Tiger Lake microarchitectural data.
- Manually disconnecting from the server will no longer display erroneous
warning message.
v0.7.7 (2021-04-01)
-------------------
- Linux crash handler will now also catch SIGABRT.
- Fixed invalid name assignment to source files discovered client-side.
- Added ability to check if a zone is active (which may be used to avoid

File diff suppressed because one or more lines are too long

View File

@ -48,9 +48,10 @@ static constexpr MicroArchUx s_uArchUx[] = {
{ "Cannon Lake", "Core i3-8121U", "CNL" },
{ "Ice Lake", "Core i5-1035G1", "ICL" },
{ "Cascade Lake", "Core i9-10980XE", "CLX" },
{ "Tiger Lake", "Core i7-1165G7", "TGL" },
{ "AMD Zen+", "Ryzen 5 2600", "ZEN+" },
{ "AMD Zen 2", "Ryzen 7 3700X", "ZEN2" },
{ "AMD Zen 3", "Ryzen 9 5950X", "ZEN3" },
{ "AMD Zen 3", "Ryzen 5 5600X", "ZEN3" },
};
static constexpr const char* s_regNameX86[] = {

View File

@ -7,7 +7,7 @@ namespace Version
{
enum { Major = 0 };
enum { Minor = 7 };
enum { Patch = 6 };
enum { Patch = 7 };
}
}

View File

@ -1133,7 +1133,8 @@ bool View::DrawImpl()
if( m_reactToLostConnection && !m_worker.IsConnected() )
{
m_reactToLostConnection = false;
if( m_worker.GetSendInFlight() > 0 )
const auto inFlight = m_worker.GetSendInFlight();
if( inFlight > 1 || ( inFlight == 1 && !m_worker.WasDisconnectIssued() ) )
{
ImGui::OpenPopup( "Connection lost!" );
}

View File

@ -569,6 +569,7 @@ public:
bool IsBackgroundDone() const { return m_backgroundDone.load( std::memory_order_relaxed ); }
void Shutdown() { m_shutdown.store( true, std::memory_order_relaxed ); }
void Disconnect();
bool WasDisconnectIssued() const { return m_disconnect; }
void Write( FileWrite& f );
int GetTraceVersion() const { return m_traceVersion; }