From 1a2e1fff7ce4b8fd8db46549d81e71e76b842da3 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 30 Aug 2024 18:56:49 +0300 Subject: add some basic benchmarks --- benchmarks/malloc/init.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 benchmarks/malloc/init.c (limited to 'benchmarks/malloc/init.c') diff --git a/benchmarks/malloc/init.c b/benchmarks/malloc/init.c new file mode 100644 index 0000000..d58eeb2 --- /dev/null +++ b/benchmarks/malloc/init.c @@ -0,0 +1,22 @@ +#include + +START(pid, tid, d0, d1, d2, d3) +{ + UNUSED(pid); + UNUSED(tid); + UNUSED(d0); + UNUSED(d1); + UNUSED(d2); + UNUSED(d3); + + uint64_t timebase = sys_timebase(); + uint64_t start = sys_ticks(); + + for (size_t i = 0; i < 1000; ++i) { + void *p = sys_req_mem(1, VM_R | VM_W); + sys_free_mem((uintptr_t)p); + } + + uint64_t end = sys_ticks(); + report(start, end, timebase); +} -- cgit v1.3