diff options
Diffstat (limited to 'benchmarks/malloc')
| -rw-r--r-- | benchmarks/malloc/init.c | 22 | ||||
| -rw-r--r-- | benchmarks/malloc/source.mk | 1 |
2 files changed, 23 insertions, 0 deletions
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 <common/benchmark.h> + +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); +} diff --git a/benchmarks/malloc/source.mk b/benchmarks/malloc/source.mk new file mode 100644 index 0000000..3367314 --- /dev/null +++ b/benchmarks/malloc/source.mk @@ -0,0 +1 @@ +DO != ./scripts/gen-benchmark -n malloc |
