2013-03-15 21:01:55 +04:00
|
|
|
#include "idris_stats.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <locale.h>
|
|
|
|
|
|
|
|
#ifdef IDRIS_ENABLE_STATS
|
|
|
|
|
|
|
|
void print_stats(const Stats * stats) {
|
|
|
|
clock_t total = clock() - stats->start_time;
|
|
|
|
clock_t mut = total - stats->init_time - stats->gc_time - stats->exit_time;
|
|
|
|
double mut_sec = (double)mut / CLOCKS_PER_SEC;
|
2013-03-17 20:50:51 +04:00
|
|
|
|
2014-11-30 23:58:20 +03:00
|
|
|
uint64_t avg_chunk = 0;
|
2013-03-17 20:50:51 +04:00
|
|
|
if (stats->alloc_count > 0) {
|
2014-11-30 23:58:20 +03:00
|
|
|
avg_chunk = (uint64_t)((double)stats->allocations / (double)stats->alloc_count);
|
2013-03-17 20:50:51 +04:00
|
|
|
}
|
|
|
|
|
2014-11-30 23:58:20 +03:00
|
|
|
uint64_t alloc_rate = 0;
|
2013-03-17 20:50:51 +04:00
|
|
|
if (mut > 0) {
|
2014-11-30 23:58:20 +03:00
|
|
|
alloc_rate = (uint64_t)((double)(stats->allocations) / mut_sec);
|
2013-03-17 20:50:51 +04:00
|
|
|
}
|
2014-11-30 23:58:20 +03:00
|
|
|
|
2013-03-19 02:43:44 +04:00
|
|
|
double gc_percent = 0.0;
|
|
|
|
double productivity = 0.0;
|
2013-03-17 20:50:51 +04:00
|
|
|
if (total > 0) {
|
|
|
|
gc_percent = 100 * (double)stats->gc_time / (double)total;
|
|
|
|
productivity = 100 * ((double)mut / (double)total);
|
|
|
|
}
|
2013-03-15 21:01:55 +04:00
|
|
|
|
|
|
|
setlocale(LC_NUMERIC, "");
|
|
|
|
printf("\n");
|
2014-11-30 23:58:20 +03:00
|
|
|
printf("%'20" PRIu64 " bytes allocated in the heap\n", stats->allocations);
|
|
|
|
printf("%'20" PRIu64 " bytes copied during GC\n", stats->copied);
|
|
|
|
printf("%'20" PRIu32 " maximum heap size\n", stats->max_heap_size);
|
|
|
|
printf("%'20" PRIu32 " chunks allocated in the heap\n", stats->alloc_count);
|
|
|
|
printf("%'20" PRIu64 " average chunk size\n\n", avg_chunk);
|
2013-03-15 21:01:55 +04:00
|
|
|
|
|
|
|
printf("GC called %d times\n\n", stats->collections);
|
|
|
|
|
|
|
|
printf("INIT time: %8.3fs\n", (double)stats->init_time / CLOCKS_PER_SEC);
|
|
|
|
printf("MUT time: %8.3fs\n", mut_sec);
|
|
|
|
printf("GC time: %8.3fs\n", (double)stats->gc_time / CLOCKS_PER_SEC);
|
|
|
|
printf("EXIT time: %8.3fs\n", (double)stats->exit_time / CLOCKS_PER_SEC);
|
|
|
|
printf("TOTAL time: %8.3fs\n\n", (double)total / CLOCKS_PER_SEC);
|
|
|
|
|
2013-03-17 20:50:51 +04:00
|
|
|
printf("%%GC time: %.2f%%\n\n", gc_percent);
|
2013-03-15 21:01:55 +04:00
|
|
|
|
2014-11-30 23:58:20 +03:00
|
|
|
printf("Alloc rate %'" PRIu64 " bytes per MUT sec\n\n", alloc_rate);
|
2013-03-15 21:01:55 +04:00
|
|
|
|
2013-03-17 20:50:51 +04:00
|
|
|
printf("Productivity %.2f%%\n", productivity);
|
2013-03-15 21:01:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void aggregate_stats(Stats * stats1, const Stats * stats2) {
|
|
|
|
fprintf(stderr, "RTS error: aggregate_stats not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void print_stats(const Stats * stats) {
|
|
|
|
fprintf(stderr, "RTS ERROR: Stats are disabled.\n" \
|
|
|
|
"By the way GC called %d times.\n", stats->collections);
|
|
|
|
}
|
|
|
|
|
|
|
|
void aggregate_stats(Stats * stats1, const Stats * stats2) {
|
|
|
|
stats1->collections += stats2->collections;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // IDRIS_ENABLE_STATS
|