blob: fb2dac8b293cba92850c271130a0276d32debf69 [file] [log] [blame]
/*
* Copyright 2014, NICTA
*
* 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(NICTA_BSD)
*/
#include <sel4utils/profile.h>
#include <stdio.h>
/*
* __start_SECTION_NAME and __stop_SECTION_NAME are magic symbols inserted by the gcc
* linker
*/
extern profile_var_t __start__profile_var[];
extern profile_var_t __stop__profile_var[];
void profile_print32(uint32_t value, const char *varname, const char *description, void *cookie)
{
printf("%s: %u %s\n", varname, value, description);
}
void profile_print64(uint64_t value, const char *varname, const char *description, void *cookie)
{
printf("%s: %llu %s\n", varname, value, description);
}
void profile_scrape(profile_callback32 callback32, profile_callback64 callback64, void *cookie)
{
profile_var_t *i;
for (i = __start__profile_var; i < __stop__profile_var; i++) {
switch (i->type) {
case PROFILE_VAR_TYPE_INT32:
callback32(*(uint32_t*)i->var, i->varname, i->description, cookie);
break;
case PROFILE_VAR_TYPE_INT64:
callback64(*(uint64_t*)i->var, i->varname, i->description, cookie);
break;
default:
LOG_ERROR("Unknown profile var. Probable memory corruption or linker failure!");
break;
}
}
}