From c34062cd786a0924263ee216c7f1d39e0b2a2095 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 9 Oct 2022 21:21:54 +0200 Subject: [PATCH] Update NEWS. --- NEWS | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/NEWS b/NEWS index e25f3c08..e3c73ebe 100644 --- a/NEWS +++ b/NEWS @@ -95,6 +95,17 @@ v0.x.x (xxxx-xx-xx) - The profiler UI will no longer unnecessarily redraw the screen if nothing was changed. This should have a profound impact on power usage. - Added microarchitecture data for Zen 4. +- Implemented optional propagation of inline cost down the local call stack. + - This feature may be useful when trying to get a general outlook of the + cost at the top-level function in the symbol. + - This only has effect on the displayed source cost. It is not currently + possible to dig deeper into this data. + - It is possible to get nonsense data when this is enabled, for example + total cost exceeding 100%. This is by design. + - The feature only works for the "sample count" data, as it has call stacks + attached. Hardware sample data does not, and thus does not support cost + propagation. + - Assembly line costs are not affected. v0.8.2 (2022-06-28)