On 4/8/22 09:47, Alex Bennée wrote:
This gives a little more insight into what is going on as we
invalidate a range of TBs.

Signed-off-by: Alex Bennée <alex.ben...@linaro.org>
---
  accel/tcg/translate-all.c | 9 +++++++++
  accel/tcg/trace-events    | 1 +
  2 files changed, 10 insertions(+)

diff --git a/accel/tcg/translate-all.c b/accel/tcg/translate-all.c
index b0009177b9..625c46dd9b 100644
--- a/accel/tcg/translate-all.c
+++ b/accel/tcg/translate-all.c
@@ -1671,6 +1671,7 @@ tb_invalidate_phys_page_range__locked(struct 
page_collection *pages,
      TranslationBlock *tb;
      tb_page_addr_t tb_start, tb_end;
      int n;
+    int checked = 0, removed = 0;
  #ifdef TARGET_HAS_PRECISE_SMC
      CPUState *cpu = current_cpu;
      CPUArchState *env = NULL;
@@ -1695,6 +1696,7 @@ tb_invalidate_phys_page_range__locked(struct 
page_collection *pages,
         the code */
      PAGE_FOR_EACH_TB(p, tb, n) {
          assert_page_locked(p);
+        checked++;
          /* NOTE: this is subtle as a TB may span two physical pages */
          if (n == 0) {
              /* NOTE: tb_end may be after the end of the page, but
@@ -1728,13 +1730,20 @@ tb_invalidate_phys_page_range__locked(struct 
page_collection *pages,
              }
  #endif /* TARGET_HAS_PRECISE_SMC */
              tb_phys_invalidate__locked(tb);
+            removed++;
          }
      }
+
+
  #if !defined(CONFIG_USER_ONLY)

Spacing.

      /* if no code remaining, no need to continue to use slow writes */
      if (!p->first_tb) {
          invalidate_page_bitmap(p);
          tlb_unprotect_code(start);
+        trace_tb_invalidate_phys_page_range(checked, removed, 0);
+    } else {
+        TranslationBlock *tb = (TranslationBlock *) p->first_tb;
+        trace_tb_invalidate_phys_page_range(checked, removed, tb->pc);

Is this going to get us set without use warnings on CONFIG_USER_ONLY?


r~
r~

Reply via email to