Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-10-26 20:49:13 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-26 20:49:13 +0300
commitfbf0d47c1c828a4d7e342911183d481bc1774741 (patch)
treeef44182fae082599ce286f763fba0ebbe47b2694
parent762b3a810a26b40fda8e319d4bd307d651b80b57 (diff)
Condense some text labels.
-rw-r--r--manual/tracy.tex4
-rw-r--r--server/TracySourceView.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/manual/tracy.tex b/manual/tracy.tex
index b29362a0..07210ddd 100644
--- a/manual/tracy.tex
+++ b/manual/tracy.tex
@@ -3511,7 +3511,7 @@ Additionally, you may use the \emph{Mode} selector to decide what content should
\begin{itemize}
\item \emph{Source} -- only the source code will be displayed.
\item \emph{Assembly} -- only the machine code disassembly will be shown.
-\item \emph{Combined} -- both source code and disassembly will be listed next to each other.
+\item \emph{Both} -- selects combined mode, in which source code and disassembly will be listed next to each other.
\end{itemize}
Some modes may be unavailable in some circumstances (missing or outdated source files, lack of machine code). In case the \emph{Assembly} mode is unavailable, this might be due to the \texttt{capstone} disassembly engine failing to disassemble the machine instructions. See section~\ref{buildingserver} for more information.
@@ -3622,7 +3622,7 @@ As described in chapter~\ref{hardwaresampling}, on some platforms, Tracy can cap
\item The rest of the available selections just show raw values gathered from the hardware counters. These are: \emph{Retirements}, \emph{Branches taken}, \emph{Branch miss}, \emph{Cache access} and \emph{Cache miss}.
\end{itemize}
-If the \emph{\faHammer{}~Hardware samples} switch is enabled, the profiler will supplement the cost percentages column with three additional columns. The first added column displays the instructions per cycle (IPC) value. The two remaining columns show branch and cache data, as described below. The displayed values are color-coded, with green indicating good execution performance and red indicating that the code stalled the CPU pipeline for one reason or another.
+If the \emph{\faHammer{}~HW} (hardware samples) switch is enabled, the profiler will supplement the cost percentages column with three additional columns. The first added column displays the instructions per cycle (IPC) value. The two remaining columns show branch and cache data, as described below. The displayed values are color-coded, with green indicating good execution performance and red indicating that the code stalled the CPU pipeline for one reason or another.
If the \emph{\faCarCrash{}~Impact} switch is enabled, the branch and cache columns will show how much impact the branch mispredictions and cache misses have. The way these statistics are calculated is described in the list above. In the other case, the columns will show the raw branch and cache miss rate ratios, isolated to their respective source and assembly lines and not relative to the whole symbol.
diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp
index 9aa33a4f..d9718fac 100644
--- a/server/TracySourceView.cpp
+++ b/server/TracySourceView.cpp
@@ -1369,7 +1369,7 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
ImGui::SameLine();
ImGui::RadioButton( "Assembly", &m_displayMode, DisplayAsm );
ImGui::SameLine();
- ImGui::RadioButton( "Combined", &m_displayMode, DisplayMixed );
+ ImGui::RadioButton( "Both", &m_displayMode, DisplayMixed );
}
}
else
@@ -1429,7 +1429,7 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
ImGui::SameLine();
if( worker.GetHwSampleCountAddress() != 0 )
{
- SmallCheckbox( ICON_FA_HAMMER " Hw samples", &m_hwSamples );
+ SmallCheckbox( ICON_FA_HAMMER " HW", &m_hwSamples );
ImGui::SameLine();
SmallCheckbox( ICON_FA_CAR_BURST " Impact", &m_hwSamplesRelative );
ImGui::SameLine();