X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fstat%2Fcounter.h;h=0a2d3a2dc46f7b410f43d352f750eac0d54668b2;hb=728863e1722a5f97403d04855fc69667eea03268;hp=d8cfea17651df640c3d538bc764b62824f7ae1df;hpb=3987332e524edb7c3d9f1dc23de5a8ab21871d57;p=libfirm diff --git a/ir/stat/counter.h b/ir/stat/counter.h index d8cfea176..0a2d3a2dc 100644 --- a/ir/stat/counter.h +++ b/ir/stat/counter.h @@ -14,9 +14,11 @@ #include /* - * 32 bit should be enough for now + * 32 bit should be enough for most cases */ +#ifndef STAT_CNT_NUM #define STAT_CNT_NUM 1 +#endif typedef struct _counter_t { unsigned cnt[STAT_CNT_NUM]; @@ -64,34 +66,25 @@ static INLINE void cnt_add(counter_t *dst, const counter_t *src) int i, carry = 0; for (i = 0; i < STAT_CNT_NUM; ++i) { - unsigned a = dst->cnt[i] + src->cnt[i] + carry; + unsigned x = dst->cnt[i]; + unsigned y = src->cnt[i]; + unsigned a = x + y + carry; - if (carry) - carry = a <= dst->cnt[i]; - else - carry = a < dst->cnt[i]; + carry = (int)((x & y) | ((x | y) & ~a)) < 0 ? 1 : 0; dst->cnt[i] = a; - - if (! carry) - break; } } /** - * add an integer to an counter + * add an (positive) integer to an counter */ static INLINE void cnt_add_i(counter_t *dst, int src) { int i; - unsigned a = dst->cnt[0] + src; - unsigned carry = a < dst->cnt[0]; + unsigned carry = src; - dst->cnt[0] = a; - if (! carry) - return; - - for (i = 1; i < STAT_CNT_NUM; ++i) { + for (i = 0; i < STAT_CNT_NUM; ++i) { unsigned a = dst->cnt[i] + carry; carry = a < dst->cnt[i];