mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
0% miss rates are fine too.
This commit is contained in:
parent
f0f3babacf
commit
5a7e9cdbdd
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user