Re: [PATCH] 2.4.22pre10: {,un}likely_p() macros for pointers

From: Willy Tarreau
Date: Sat Aug 09 2003 - 03:20:03 EST


On Sat, Aug 09, 2003 at 01:21:17AM +0100, Jamie Lokier wrote:
> Albert Cahalan wrote:
> > // tell gcc what to expect: if(unlikely(err)) die(err);
> > #define likely(x) __builtin_expect(!!(x),1)
> > #define unlikely(x) __builtin_expect(!!(x),0)
> > #define expected(x,y) __builtin_expect((x),(y))
>
> You may want to check that GCC generates the same code as for
>
> #define likely(x) __builtin_expect((x),1)
> #define unlikely(x) __builtin_expect((x),0)
>
> I tried this once, and I don't recall the precise result but I do
> recall it generating different code (i.e. not optimal for one of the
> definitions).

anyway, in __builtin_expect(!!(x),0) there is a useless conversion, because
it's totally equivalent to __builtin_expect((x),0) (how could !!x be 0 if x
isn't ?), but I'm pretty sure that the compiler will add the test.

Willy

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/