X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Futil.h;h=acb2d8f5a22834e628ae33ead0a19a56b791fa54;hb=ac60863f78e412004c5b69f5a64a49bc6f0bc46d;hp=a899065a3af3ad9cc37a789dbd414a5baeeb8b8e;hpb=878f1972909b33f27b32ad2ded208eb465b98a9b;p=sliver-openvswitch.git diff --git a/lib/util.h b/lib/util.h index a899065a3..acb2d8f5a 100644 --- a/lib/util.h +++ b/lib/util.h @@ -222,7 +222,7 @@ void set_program_name__(const char *name, const char *version, set_program_name__(name, VERSION, __DATE__, __TIME__) const char *get_subprogram_name(void); -void set_subprogram_name(const char *name); +void set_subprogram_name(const char *format, ...) PRINTF_FORMAT(1, 2); const char *get_program_version(void); void ovs_print_version(uint8_t min_ofp, uint8_t max_ofp); @@ -264,6 +264,8 @@ bool str_to_uint(const char *, int base, unsigned int *); bool str_to_ulong(const char *, int base, unsigned long *); bool str_to_ullong(const char *, int base, unsigned long long *); +bool ovs_scan(const char *s, const char *template, ...) SCANF_FORMAT(2, 3); + bool str_to_double(const char *, double *); int hexit_value(int c); @@ -283,20 +285,25 @@ void ignore(bool x OVS_UNUSED); /* Bitwise tests. */ -/* Returns the number of trailing 0-bits in 'n'. Undefined if 'n' == 0. - * - * This compiles to a single machine instruction ("bsf") with GCC on x86. */ -#if !defined(UINT_MAX) || !defined(UINT32_MAX) -#error "Someone screwed up the #includes." -#elif __GNUC__ >= 4 && UINT_MAX == UINT32_MAX +int log_2_floor(uint32_t); +int log_2_ceil(uint32_t); +unsigned int count_1bits(uint64_t); + +/* Returns the number of trailing 0-bits in 'n'. Undefined if 'n' == 0. */ +#if __GNUC__ >= 4 static inline int -raw_ctz(uint32_t n) +raw_ctz(uint64_t n) { - return __builtin_ctz(n); + /* With GCC 4.7 on 32-bit x86, if a 32-bit integer is passed as 'n', using + * a plain __builtin_ctzll() here always generates an out-of-line function + * call. The test below helps it to emit a single 'bsf' instruction. */ + return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX + ? __builtin_ctz(n) + : __builtin_ctzll(n)); } #else /* Defined in util.c. */ -int raw_ctz(uint32_t n); +int raw_ctz(uint64_t n); #endif /* Returns the number of trailing 0-bits in 'n', or 32 if 'n' is 0. */ @@ -306,9 +313,12 @@ ctz(uint32_t n) return n ? raw_ctz(n) : 32; } -int log_2_floor(uint32_t); -int log_2_ceil(uint32_t); -unsigned int popcount(uint32_t); +/* Returns the number of trailing 0-bits in 'n', or 64 if 'n' is 0. */ +static inline int +ctz64(uint64_t n) +{ + return n ? raw_ctz(n) : 64; +} /* Returns the rightmost 1-bit in 'x' (e.g. 01011000 => 00001000), or 0 if 'x' * is 0. */