--- deliantra/server/include/util.h 2008/12/27 02:33:32 1.82 +++ deliantra/server/include/util.h 2009/05/05 04:51:56 1.88 @@ -30,10 +30,12 @@ # define is_constant(c) __builtin_constant_p (c) # define expect(expr,value) __builtin_expect ((expr),(value)) # define prefetch(addr,rw,locality) __builtin_prefetch (addr, rw, locality) +# define noinline __attribute__((__noinline__)) #else # define is_constant(c) 0 # define expect(expr,value) (expr) # define prefetch(addr,rw,locality) +# define noinline #endif #if __GNUC__ < 4 || (__GNUC__ == 4 || __GNUC_MINOR__ < 4) @@ -43,8 +45,8 @@ // put into ifs if you are very sure that the expression // is mostly true or mosty false. note that these return // booleans, not the expression. -#define expect_false(expr) expect ((expr) != 0, 0) -#define expect_true(expr) expect ((expr) != 0, 1) +#define expect_false(expr) expect ((expr) ? 1 : 0, 0) +#define expect_true(expr) expect ((expr) ? 1 : 0, 1) #include @@ -118,13 +120,25 @@ template static inline T sign0 (T v) { return v ? sign (v) : 0; } +// div* only work correctly for div > 0 // div, with correct rounding (< 0.5 downwards, >=0.5 upwards) -template static inline T div (T val, T div) { return (val + div / 2) / div; } +template static inline T div (T val, T div) +{ + return expect_false (val < 0) ? - ((-val + (div - 1) / 2) / div) : (val + div / 2) / div; +} // div, round-up -template static inline T div_ru (T val, T div) { return (val + div - 1) / div; } +template static inline T div_ru (T val, T div) +{ + return expect_false (val < 0) ? - ((-val ) / div) : (val + div - 1) / div; +} // div, round-down -template static inline T div_rd (T val, T div) { return (val ) / div; } +template static inline T div_rd (T val, T div) +{ + return expect_false (val < 0) ? - ((-val + (div - 1) ) / div) : (val ) / div; +} +// lerp* only work correctly for min_in < max_in +// Linear intERPolate, scales val from min_in..max_in to min_out..max_out template static inline T lerp (T val, T min_in, T max_in, T min_out, T max_out) @@ -391,7 +405,6 @@ // http://www.iro.umontreal.ca/~lecuyer/myftp/papers/tausme2.ps struct tausworthe_random_generator { - // generator uint32_t state [4]; void operator =(const tausworthe_random_generator &src) @@ -404,13 +417,47 @@ void seed (uint32_t seed); uint32_t next (); +}; + +// Xorshift RNGs, George Marsaglia +// http://www.jstatsoft.org/v08/i14/paper +// this one is about 40% faster than the tausworthe one above (i.e. not much), +// despite the inlining, and has the issue of only creating 2**32-1 numbers. +// see also http://www.iro.umontreal.ca/~lecuyer/myftp/papers/xorshift.pdf +struct xorshift_random_generator +{ + uint32_t x, y; + + void operator =(const xorshift_random_generator &src) + { + x = src.x; + y = src.y; + } + void seed (uint32_t seed) + { + x = seed; + y = seed * 69069U; + } + + uint32_t next () + { + uint32_t t = x ^ (x << 10); + x = y; + y = y ^ (y >> 13) ^ t ^ (t >> 10); + return y; + } +}; + +template +struct random_number_generator : generator +{ // uniform distribution, 0 .. max (0, num - 1) uint32_t operator ()(uint32_t num) { - return !is_constant (num) ? get_range (num) // non-constant - : num & (num - 1) ? (next () * (uint64_t)num) >> 32U // constant, non-power-of-two - : next () & (num - 1); // constant, power-of-two + return !is_constant (num) ? get_range (num) // non-constant + : num & (num - 1) ? (this->next () * (uint64_t)num) >> 32U // constant, non-power-of-two + : this->next () & (num - 1); // constant, power-of-two } // return a number within (min .. max) @@ -431,7 +478,7 @@ int get_range (int r_min, int r_max); }; -typedef tausworthe_random_generator rand_gen; +typedef random_number_generator rand_gen; extern rand_gen rndm, rmg_rndm; @@ -510,7 +557,8 @@ { std::size_t operator ()(const char *s) const { - unsigned long hash = 0; +#if 0 + uint32_t hash = 0; /* use the one-at-a-time hash function, which supposedly is * better than the djb2-like one used by perl5.005, but @@ -527,6 +575,17 @@ hash += hash << 3; hash ^= hash >> 11; hash += hash << 15; +#else + // use FNV-1a hash (http://isthe.com/chongo/tech/comp/fnv/) + // it is about twice as fast as the one-at-a-time one, + // with good distribution. + // FNV-1a is faster on many cpus because the multiplication + // runs concurrent with the looping logic. + uint32_t hash = 2166136261; + + while (*s) + hash = (hash ^ *s++) * 16777619; +#endif return hash; } @@ -631,13 +690,14 @@ }; // basically does what strncpy should do, but appends "..." to strings exceeding length -void assign (char *dst, const char *src, int maxlen); +// returns the number of bytes actually used (including \0) +int assign (char *dst, const char *src, int maxsize); // type-safe version of assign template -inline void assign (char (&dst)[N], const char *src) +inline int assign (char (&dst)[N], const char *src) { - assign ((char *)&dst, src, N); + return assign ((char *)&dst, src, N); } typedef double tstamp;