From 014bcea452ec8dc7a547f5a7307482eac1db458d Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Wed, 13 May 2020 15:37:13 +0200 Subject: [PATCH] manual-core.xml: Fix various xmllint issues. Wrap bare CDATA text in a para and make sure that all listitems contain paras. --- docs/xml/manual-core.xml | 50 ++++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/docs/xml/manual-core.xml b/docs/xml/manual-core.xml index 50904ff82a..b36009ed90 100644 --- a/docs/xml/manual-core.xml +++ b/docs/xml/manual-core.xml @@ -578,13 +578,13 @@ lines in a suppression. fun:main } ]]> -This suppresses Memcheck memory-leak errors, in the case where +This suppresses Memcheck memory-leak errors, in the case where the allocation was done by main calling (though any number of intermediaries, including zero) ccc, calling onwards via ddd and eventually -to malloc.. +to malloc.. @@ -2646,35 +2646,35 @@ PROGRESS: U 130s, W 134s, 97.0% CPU, EvC 574.90M, TIn 657.5k, TOut 3.0k, #thr 63 ]]> Each line shows: - U: total user time - W: total wallclock time - CPU: overall average cpu use - EvC: number of event checks. An event + U: total user time + W: total wallclock time + CPU: overall average cpu use + EvC: number of event checks. An event check is a backwards branch in the simulated program, so this is a - measure of forward progress of the program - TIn: number of code blocks instrumented - by the JIT - TOut: number of instrumented code - blocks that have been thrown away - #thr: number of threads in the - program + measure of forward progress of the program + TIn: number of code blocks instrumented + by the JIT + TOut: number of instrumented code + blocks that have been thrown away + #thr: number of threads in the + program From the progress of these, it is possible to observe: - when the program is compute bound (TIn - rises slowly, EvC rises rapidly) - when the program is in a spinloop + when the program is compute bound (TIn + rises slowly, EvC rises rapidly) + when the program is in a spinloop (TIn/TOut - fixed, EvC rises rapidly) - when the program is JIT-bound (TIn - rises rapidly) - when the program is rapidly discarding code - (TOut rises rapidly) - when the program is about to achieve some expected state + fixed, EvC rises rapidly) + when the program is JIT-bound (TIn + rises rapidly) + when the program is rapidly discarding code + (TOut rises rapidly) + when the program is about to achieve some expected state (EvC arrives at some value you - expect) - when the program is idling (U rises - more slowly than W) + expect) + when the program is idling (U rises + more slowly than W) -- 2.47.2