diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index c11d89de..b193dc4c 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -2636,21 +2636,21 @@ void SourceView::RenderAsmLine( AsmLine& line, const AddrStat& ipcnt, const Addr } if( hw->cycles ) TextFocused( "Cycles:", RealToString( hw->cycles ) ); if( hw->retired ) TextFocused( "Retirements:", RealToString( hw->retired ) ); - if( hw->cacheRef && hw->cacheMiss ) + if( hw->cacheRef ) { TextDisabledUnformatted( "Cache miss rate:" ); ImGui::SameLine(); PrintPercentage( float( 100 * hw->cacheMiss ) / hw->cacheRef ); + TextFocused( "Cache references:", RealToString( hw->cacheRef ) ); } - if( hw->cacheRef ) TextFocused( "Cache references:", RealToString( hw->cacheRef ) ); if( hw->cacheMiss ) TextFocused( "Cache misses:", RealToString( hw->cacheMiss ) ); - if( hw->branchRetired && hw->branchMiss ) + if( hw->branchRetired ) { TextDisabledUnformatted( "Branch mispredictions rate:" ); ImGui::SameLine(); PrintPercentage( float( 100 * hw->branchMiss ) / hw->branchRetired ); + TextFocused( "Retired branches:", RealToString( hw->branchRetired ) ); } - if( hw->branchRetired ) TextFocused( "Retired branches:", RealToString( hw->branchRetired ) ); if( hw->branchMiss ) TextFocused( "Branch mispredictions:", RealToString( hw->branchMiss ) ); } const auto& stats = *worker.GetSymbolStats( symAddrParents );