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

From: Jamie Lokier
Date: Fri Aug 08 2003 - 19:25:38 EST


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).

-- Jamie
-
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/