| /* | 
 |  * Copyright 2017, Data61 | 
 |  * Commonwealth Scientific and Industrial Research Organisation (CSIRO) | 
 |  * ABN 41 687 119 230. | 
 |  * | 
 |  * This software may be distributed and modified according to the terms of | 
 |  * the BSD 2-Clause license. Note that NO WARRANTY is provided. | 
 |  * See "LICENSE_BSD2.txt" for details. | 
 |  * | 
 |  * @TAG(DATA61_BSD) | 
 |  */ | 
 |  | 
 | #pragma once | 
 | #include <autoconf.h> | 
 | #include <sel4utils/gen_config.h> | 
 | #ifdef CONFIG_BENCHMARK_TRACEPOINTS | 
 | #include <inttypes.h> | 
 | #include <stdio.h> | 
 |  | 
 | #include <sel4/simple_types.h> | 
 | #include <sel4/benchmark_tracepoints_types.h> | 
 |  | 
 | /** | 
 |  * Dump the benchmark log. The kernel must be compiled with CONFIG_MAX_NUM_TRACE_POINTS > 0, | 
 |  * either edit .config manually or add it using "make menuconfig" by selecting | 
 |  * "Kernel" -> "seL4 System Parameters" -> "Adds a log buffer to the kernel for instrumentation." | 
 |  */ | 
 | static inline void seL4_BenchmarkTraceDumpFullLog(benchmark_tracepoint_log_entry_t *logBuffer, size_t logSize) | 
 | { | 
 |     seL4_Word index = 0; | 
 |     FILE *fd = stdout; | 
 |  | 
 |     while ((index * sizeof(benchmark_tracepoint_log_entry_t)) < logSize) { | 
 |         if (logBuffer[index].duration != 0) { | 
 |             fprintf(fd, "tracepoint id = %u \tduration = %u\n", logBuffer[index].id, logBuffer[index].duration); | 
 |         } | 
 |         index++; | 
 |     } | 
 |  | 
 |     fprintf(fd, "Dumped entire log, size %" PRIu32 "\n", index); | 
 | } | 
 | #endif /* CONFIG_BENCHMARK_TRACEPOINTS */ |