2019-07-17 20:34:25 +02:00
|
|
|
# libprof: A performance profiling library for gint
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
libprof is a small gint library that times and profiles the execution of an
|
|
|
|
add-in. It is useful to record the time spent in one or several functions and
|
|
|
|
to identify performance bottlenecks in an application.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
libprof's measurements are accurate down to the microsecond-level thanks to
|
|
|
|
precise hardware timers, so it can also be used to time even small portions of
|
|
|
|
code.
|
|
|
|
|
2021-01-25 15:58:52 +01:00
|
|
|
## Installing with GiteaPC
|
|
|
|
|
|
|
|
libprof can be built and installed with [GiteaPC](https://gitea.planet-casio.com/Lephenixnoir/GiteaPC), an automation tool for the fxSDK.
|
|
|
|
|
|
|
|
```
|
|
|
|
% giteapc install Lephenixnoir/libprof
|
|
|
|
```
|
|
|
|
|
2019-07-17 20:34:25 +02:00
|
|
|
## Building
|
|
|
|
|
2020-02-18 07:51:47 +01:00
|
|
|
libprof is built and installed only once for both fx-9860G and fx-CG 50. The
|
2020-10-13 19:30:45 +02:00
|
|
|
dependencies are:
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
* A GCC cross-compiler for a SuperH architecture
|
|
|
|
* The [gint kernel](/Lephenixnoir/gint)
|
|
|
|
|
2020-02-18 07:51:47 +01:00
|
|
|
The Makefile will build and install the library without further instructions.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
```sh
|
|
|
|
% make
|
2020-02-18 07:51:47 +01:00
|
|
|
% make install
|
2019-07-17 20:34:25 +02:00
|
|
|
```
|
|
|
|
|
2020-02-18 07:51:47 +01:00
|
|
|
By default `sh-elf` is used to build; you can override this by setting the
|
2019-07-17 20:34:25 +02:00
|
|
|
`target` variable.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
% make target=sh4eb-elf
|
|
|
|
% make install target=sh4eb-elf
|
|
|
|
```
|
|
|
|
|
2020-02-18 07:51:47 +01:00
|
|
|
If you have the older setup with two toolchains (`sh3eb-elf` and `sh4eb-elf`),
|
|
|
|
instead of the new one with two targets on the same toolchain (`sh-elf`), you
|
|
|
|
will need to make and install twice.
|
|
|
|
|
2019-07-17 20:34:25 +02:00
|
|
|
## Basic use
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
To access the library, include the `<libprof.h>` header file and call
|
|
|
|
`prof_init()` somewhere so that libprof has access to a precise timer. If no
|
|
|
|
such timer is available, `prof_init()` returns non-zero (but normally either 2
|
|
|
|
or 3 of the TMU are available when an add-in starts).
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
```c
|
|
|
|
#include <libprof.h>
|
2020-10-13 19:30:45 +02:00
|
|
|
prof_init();
|
2019-07-17 20:34:25 +02:00
|
|
|
```
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
To measure execution time, create a profiling context with `prof_make()`, then
|
|
|
|
call `prof_enter()` at the beginning of the code to time and `prof_leave()` at
|
|
|
|
the end.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
```c
|
2020-10-13 19:30:45 +02:00
|
|
|
void function_to_time(void)
|
2019-07-17 20:34:25 +02:00
|
|
|
{
|
2020-10-13 19:30:45 +02:00
|
|
|
prof_t prof = prof_make();
|
|
|
|
prof_enter(prof);
|
|
|
|
|
2019-07-17 20:34:25 +02:00
|
|
|
/* Do stuff... */
|
2020-10-13 19:30:45 +02:00
|
|
|
|
|
|
|
prof_leave(prof);
|
2019-07-17 20:34:25 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
The context records the time spent between calls to `prof_enter()` and
|
|
|
|
`prof_leave()`. It can be entered multiple times and will simply accumulate the
|
|
|
|
time spent in its counter. When the counter is not running, you can query
|
|
|
|
recorded time with `prof_time()`.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
```c
|
2020-10-13 19:30:45 +02:00
|
|
|
uint32_t total_function_us = prof_time(prof);
|
2019-07-17 20:34:25 +02:00
|
|
|
```
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
This time is returned in microseconds, even though the timers are slightly more
|
2019-07-17 20:34:25 +02:00
|
|
|
precise than this. Note that the overhead of `prof_enter()` and `prof_leave()`
|
2020-10-13 19:30:45 +02:00
|
|
|
is usually less than 1 microsecond, so the measure is very close to the
|
|
|
|
wall-clock time spent in the function even if the context is frequently used.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
At the end of the program or whenever you need the timer that libprof is
|
|
|
|
holding, call `prof_quit()` to free the resources. This will make the timer
|
|
|
|
available to `timer_setup()` again.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
```c
|
|
|
|
prof_quit();
|
|
|
|
```
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
## Recursive functions
|
2019-07-17 20:34:25 +02:00
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
The profiler context keeps track of recursive calls so that functions that
|
|
|
|
enter and leave recursively can be timed as well. The only difference with the
|
|
|
|
basic example is that we need to make sure a single context is used (instead
|
|
|
|
of creating a new one in each stack frame). Making it static is enough.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
```c
|
2020-10-13 19:30:45 +02:00
|
|
|
void recursive_function_to_time(void)
|
|
|
|
{
|
|
|
|
static prof_t prof = prof_make();
|
|
|
|
prof_enter(prof);
|
2019-07-17 20:34:25 +02:00
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
/* Stuff... */
|
|
|
|
recursive_function_to_time();
|
|
|
|
/* Stuff... */
|
2019-07-17 20:34:25 +02:00
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
prof_leave(prof);
|
|
|
|
}
|
2019-07-17 20:34:25 +02:00
|
|
|
```
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
However it makes it somewhat difficult to retrieve the elapsed time because it
|
|
|
|
is hidden withing the function's name scope. Making it global can help.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
## Timing a single execution
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
In many cases applications just need to measure a single piece of code once and
|
|
|
|
get the resulting time. `prof_exec()` is a shortcut macro that does exactly
|
|
|
|
that, creating a temporary context and returning elapsed time.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
```
|
|
|
|
uint32_t elapsed_us = prof_exec({
|
|
|
|
scene_graph_render();
|
|
|
|
});
|
2019-07-17 20:34:25 +02:00
|
|
|
```
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
The macro expands to a short code block that wraps the argument and returns
|
|
|
|
the `prof_time()` of the temporary context.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
## Using the timers's full precision
|
2019-07-17 20:34:25 +02:00
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
Hardware timers run at 7-15 MHz depending on the calculator model, so the time
|
|
|
|
measure it slightly more precise than what `prof_time()` shows you. You can
|
|
|
|
access that value through the `elapsed` field of a context object.
|
2019-07-17 20:34:25 +02:00
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
The value is a count of ticks that occur at a frequency of PΦ/4, where the
|
|
|
|
value of PΦ can be obtained by querying gint's CPG driver:
|
2019-07-17 20:34:25 +02:00
|
|
|
|
|
|
|
```c
|
|
|
|
#include <gint/clock.h>
|
|
|
|
uint32_t tick_freq = clock_freq()->Pphi_f / 4;
|
|
|
|
```
|
|
|
|
|
2020-10-13 19:30:45 +02:00
|
|
|
Note that the overhead of `prof_enter()` and `prof_leave()` is usually less
|
|
|
|
than a microsecond, but more than a few timer ticks.
|
|
|
|
|
|
|
|
Due in part to caching effects, the first measurement for a given code sequence
|
|
|
|
is likely to be larger than the other ones. I have seen effects such as 3 µs
|
|
|
|
for a no-op (cache misses in libprof's code) and 100 µs for real cases (cache
|
|
|
|
misses in the code itself). Make sure to make several measurements and use
|
|
|
|
serious statistical methods!
|
|
|
|
|
|
|
|
## Overclock interference
|
|
|
|
|
|
|
|
Contexts store timer tick counts, which are converted to microsecond delays
|
|
|
|
only when `prof_time()` is called. Do not mix measurements performed at
|
|
|
|
different overclock settings as the results will be erroneous.
|
|
|
|
|
|
|
|
What you can do is call `prof_time()` and reset the context (by assigning it
|
|
|
|
`prof_make()`) before switching clock settings, then add up the microsecond
|
|
|
|
delays when the execution is over.
|