The goal of this sample application is to measure the performance loss when a user thread has to go through a system call compared to a supervisor thread that calls the function directly. Signed-off-by: Nicolas Royer <nroyer@baylibre.com>
51 lines
998 B
C
51 lines
998 B
C
/*
|
|
* Copyright (c) 2020 BayLibre, SAS
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr.h>
|
|
#include <stdio.h>
|
|
|
|
#include "main.h"
|
|
|
|
/*
|
|
* 0xC00 is CSR cycle
|
|
* 0xC02 is CSR instret
|
|
*/
|
|
void user_thread_function(void *p1, void *p2, void *p3)
|
|
{
|
|
register unsigned long cycle_before, cycle_count;
|
|
register unsigned long inst_before, inst_count;
|
|
|
|
printf("User thread started\n");
|
|
|
|
while (1) {
|
|
k_sleep(K_MSEC(2000));
|
|
|
|
inst_before = csr_read(0xC02);
|
|
cycle_before = csr_read(0xC00);
|
|
k_current_get();
|
|
cycle_count = csr_read(0xC00);
|
|
inst_count = csr_read(0xC02);
|
|
|
|
if (cycle_count > cycle_before) {
|
|
cycle_count -= cycle_before;
|
|
} else {
|
|
cycle_count += 0xFFFFFFFF - cycle_before;
|
|
}
|
|
|
|
if (inst_count > inst_before) {
|
|
inst_count -= inst_before;
|
|
} else {
|
|
inst_count += 0xFFFFFFFF - inst_before;
|
|
}
|
|
|
|
/* Remove CSR accesses to be more accurate */
|
|
inst_count -= 3;
|
|
|
|
printf("User thread:\t\t%8lu cycles\t%8lu instructions\n",
|
|
cycle_count, inst_count);
|
|
}
|
|
}
|