From 58450dff19558d075bb687aa970fae101f2ac412 Mon Sep 17 00:00:00 2001
From: Laurent THOMAS <laurent.thomas@open-cells.com>
Date: Fri, 5 Jan 2024 16:45:09 +0100
Subject: [PATCH] add a cpu measurement macro for test purpose

---
 common/utils/time_meas.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/common/utils/time_meas.h b/common/utils/time_meas.h
index 0735597633c..f791b485d1a 100644
--- a/common/utils/time_meas.h
+++ b/common/utils/time_meas.h
@@ -218,4 +218,10 @@ time_stats_t *register_meas(char *name);
 void send_meas(time_stats_t *ts, int msgid);
 void end_meas(void);
 
+#define timeIt(a)                                           \
+  {                                                         \
+    uint64_t deb = rdtsc_oai();                             \
+    a;                                                      \
+    LOG_W(UTIL, #a ": %llu\n", (rdtsc_oai() - deb) / 3000); \
+  }
 #endif
-- 
GitLab