begnuas: let user specify elf variants
[libfirm] / ir / common / timing.c
index 83f9adf..9ec076f 100644 (file)
 #include <stdio.h>
 #include <string.h>
 
-#ifndef _WIN32
-#include <unistd.h>
-#endif
-
 #include "timing.h"
-#include "set.h"
-#include "hashptr.h"
+#include "xmalloc.h"
 
 #ifdef _WIN32
 #define WIN32_LEAN_AND_MEAN
@@ -48,6 +43,7 @@ typedef union {
 
 #else
 
+#include <unistd.h>
 #define HAVE_GETTIMEOFDAY
 
 /*
@@ -66,66 +62,36 @@ typedef struct timeval ir_timer_val_t;
 
 #include <stddef.h>
 
-static inline void _time_get(ir_timer_val_t *val);
 static inline void _time_reset(ir_timer_val_t *val);
-static inline unsigned long _time_to_msec(const ir_timer_val_t *val);
-static inline ir_timer_val_t *_time_add(ir_timer_val_t *res,
-               const ir_timer_val_t *lhs, const ir_timer_val_t *rhs);
-static inline ir_timer_val_t *_time_sub(ir_timer_val_t *res,
-               const ir_timer_val_t *lhs, const ir_timer_val_t *rhs);
 
 /**
  * A timer.
  */
-struct _ir_timer_t {
+struct ir_timer_t {
        ir_timer_val_t elapsed;     /**< the elapsed time so far */
        ir_timer_val_t start;       /**< the start value of the timer */
        ir_timer_t     *link;       /**< link to the next entry in the timer stack */
-       const char     *name;       /**< the name of the timer used for identification */
-       const char     *desc;       /**< a description if the timer */
        unsigned       running : 1; /**< set if this timer is running */
 };
 
-/**
- * Compare two timers.
- */
-static int ir_timer_cmp(const void *a, const void *b, size_t size)
-{
-       const ir_timer_t *t1 = a;
-       const ir_timer_t *t2 = b;
-       (void) size;
-       return strcmp(t1->name, t2->name);
-}
-
-/** The set containing all currently registered timers. */
-static set *timers = NULL;
-
 /** The top of the timer stack */
 static ir_timer_t *timer_stack;
 
-/** Initialize the timer module. */
-static void timing_init(void)
+ir_timer_t *ir_timer_new(void)
 {
-       timers      = new_set(ir_timer_cmp, 16);
-       timer_stack = NULL;
-}
+       ir_timer_t *timer = XMALLOCZ(ir_timer_t);
 
-ir_timer_t *ir_timer_register(const char *name, const char *desc)
-{
-       unsigned hash = HASH_STR(name, strlen(name));
-       ir_timer_t timer;
-
-       _time_reset(&timer.elapsed);
-       _time_reset(&timer.start);
-       timer.link = NULL;
-       timer.name = name;
-    timer.desc = desc;
-       timer.running = 0;
+       _time_reset(&timer->elapsed);
+       _time_reset(&timer->start);
+       timer->link    = NULL;
+       timer->running = 0;
 
-       if (!timers)
-               timing_init();
+       return timer;
+}
 
-       return set_insert(timers, &timer, sizeof(timer), hash);
+void ir_timer_free(ir_timer_t *timer)
+{
+       xfree(timer);
 }
 
 #ifdef HAVE_GETTIMEOFDAY
@@ -170,7 +136,7 @@ static inline ir_timer_val_t *_time_sub(ir_timer_val_t *res,
 
 static inline void _time_get(ir_timer_val_t *val)
 {
-       if(!QueryPerformanceCounter(&val->hi_prec))
+       if (!QueryPerformanceCounter(&val->hi_prec))
                val->lo_prec = timeGetTime();
 }
 
@@ -183,7 +149,7 @@ static inline unsigned long _time_to_msec(const ir_timer_val_t *elapsed)
 {
        LARGE_INTEGER freq;
 
-       if(!QueryPerformanceFrequency(&freq))
+       if (!QueryPerformanceFrequency(&freq))
                return (unsigned long) elapsed->lo_prec;
 
        return (unsigned long) ((elapsed->hi_prec.QuadPart * 1000) / freq.QuadPart);
@@ -193,7 +159,7 @@ static inline unsigned long _time_to_usec(const ir_timer_val_t *elapsed)
 {
        LARGE_INTEGER freq;
 
-       if(!QueryPerformanceFrequency(&freq))
+       if (!QueryPerformanceFrequency(&freq))
                return (unsigned long) elapsed->lo_prec;
 
        return (unsigned long) ((elapsed->hi_prec.QuadPart * 1000000) / freq.QuadPart);
@@ -202,7 +168,7 @@ static inline unsigned long _time_to_usec(const ir_timer_val_t *elapsed)
 static inline ir_timer_val_t *_time_add(ir_timer_val_t *res, const ir_timer_val_t *lhs, const ir_timer_val_t *rhs)
 {
        LARGE_INTEGER dummy;
-       if(QueryPerformanceFrequency(&dummy))
+       if (QueryPerformanceFrequency(&dummy))
                res->hi_prec.QuadPart = lhs->hi_prec.QuadPart + rhs->hi_prec.QuadPart;
        else
                res->lo_prec = lhs->lo_prec + rhs->lo_prec;
@@ -213,7 +179,7 @@ static inline ir_timer_val_t *_time_add(ir_timer_val_t *res, const ir_timer_val_
 static inline ir_timer_val_t *_time_sub(ir_timer_val_t *res, const ir_timer_val_t *lhs, const ir_timer_val_t *rhs)
 {
        LARGE_INTEGER dummy;
-       if(QueryPerformanceFrequency(&dummy))
+       if (QueryPerformanceFrequency(&dummy))
                res->hi_prec.QuadPart = lhs->hi_prec.QuadPart - rhs->hi_prec.QuadPart;
        else
                res->lo_prec = lhs->lo_prec - rhs->lo_prec;
@@ -238,7 +204,7 @@ int ir_timer_enter_high_priority(void)
        struct sched_param p;
        int res, max, algo;
 
-       if(!std_sched_param_init) {
+       if (!std_sched_param_init) {
                res = sched_getparam(pid, &std_sched_param);
                std_sched_param_init = 1;
        }
@@ -246,7 +212,7 @@ int ir_timer_enter_high_priority(void)
        algo = sched_getscheduler(pid);
        max  = sched_get_priority_max(algo);
 
-       memcpy(&p, &std_sched_param, sizeof(p));
+       p = std_sched_param;
        p.sched_priority = max;
        res = sched_setparam(pid, &p);
 
@@ -258,7 +224,7 @@ int ir_timer_leave_high_priority(void)
        int res   = 0;
        pid_t pid = getpid();
 
-       if(std_sched_param_init)
+       if (std_sched_param_init)
                res = sched_setparam(pid, &std_sched_param);
 
        return res;
@@ -271,7 +237,7 @@ static int initial_priority = THREAD_PRIORITY_NORMAL;
 int ir_timer_leave_high_priority(void)
 {
        int res = 0;
-       if(!SetThreadPriority(GetCurrentThread(), initial_priority)) {
+       if (!SetThreadPriority(GetCurrentThread(), initial_priority)) {
                fprintf(stderr, "Failed to leave high priority (%d)\n", GetLastError());
                res = GetLastError();
        }
@@ -283,7 +249,7 @@ int ir_timer_enter_high_priority(void)
 {
        int res = 0;
        initial_priority = GetThreadPriority(GetCurrentThread());
-       if(!SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_HIGHEST)) {
+       if (!SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_HIGHEST)) {
                fprintf(stderr, "Failed to enter high priority (%d)\n", GetLastError());
                res = GetLastError();
        }
@@ -327,7 +293,7 @@ size_t ir_get_heap_used_bytes(void)
        int heapstatus;
        size_t res = 0;
        hinfo._pentry = NULL;
-       while((heapstatus = _heapwalk(&hinfo)) == _HEAPOK)
+       while ((heapstatus = _heapwalk(&hinfo)) == _HEAPOK)
                res += hinfo._useflag == _USEDENTRY ? hinfo._size : 0;
        return res;
 }
@@ -369,7 +335,7 @@ void ir_timer_stop(ir_timer_t *timer)
 {
        /* If the timer is running stop, measure the time and add it to the
         * elapsed time. */
-       if(timer->running) {
+       if (timer->running) {
                ir_timer_val_t val;
                ir_timer_val_t tgt;
 
@@ -412,7 +378,7 @@ unsigned long ir_timer_elapsed_msec(const ir_timer_t *timer)
        ir_timer_val_t v;
        const ir_timer_val_t *elapsed = &timer->elapsed;
 
-       if(timer->running) {
+       if (timer->running) {
                elapsed = &v;
                _time_get(&v);
                _time_add(&v, &timer->elapsed, _time_sub(&v, &v, &timer->start));
@@ -425,18 +391,10 @@ unsigned long ir_timer_elapsed_usec(const ir_timer_t *timer)
        ir_timer_val_t v;
        const ir_timer_val_t *elapsed = &timer->elapsed;
 
-       if(timer->running) {
+       if (timer->running) {
                elapsed = &v;
                _time_get(&v);
                _time_add(&v, &timer->elapsed, _time_sub(&v, &v, &timer->start));
        }
        return _time_to_usec(elapsed);
 }
-
-const char *ir_timer_get_name(const ir_timer_t *timer) {
-       return timer->name;
-}
-
-const char *ir_timer_get_description(const ir_timer_t *timer) {
-       return timer->desc;
-}