vote up 1 vote down star
1

I came across these 2 macros in Linux kernel code. I know they are instructions to compiler (gcc) for optimizations in case of branching. My question is, can we use these macros in user space code? Will it give any optimization? Any example will be very helpful.

flag

kerneltrap.org/node/4705 – pmg Nov 3 at 15:29
duplicate? stackoverflow.com/questions/109710/… – Aleksei Potov Nov 3 at 15:34
I checked these posts, but both again talks about kernel related stuff. I wanted to know whether same can be used in user code. – vinit dhatrak Nov 3 at 15:38
If you are programming for any reasonably powerful processor, you are unlikely to get any performance benefit. Modern dynamic branch predictors are quite good. – Jay Conrod Nov 3 at 15:50
@Jay I think programmer should not assume power of processor. Dynamic branch detection would be easier if programmer explicitly provide the information. – vinit dhatrak Nov 4 at 12:40

3 Answers

vote up 4 vote down check

Yes they can. In the Linux kernel, they are defined as

#define likely(x)       __builtin_expect((x),1)
#define unlikely(x)     __builtin_expect((x),0)

The __builtinexpect macros are GCC specific macros that use the branch prediction; they tell the processor whether a condition is likely to be true, so that the processor can prefetch instructions on the correct "side" of the branch.

You should wrap the defines in an ifdef to ensure compilation on other compilers:

#ifdef __GNUC__
#define likely(x)       __builtin_expect((x),1)
#define unlikely(x)     __builtin_expect((x),0)
#else
#define likely(x)       (x)
#define unlikely(x)     (x)
#endif

It will definitely give you optimizations if you use it for correct branch predictions.

link|flag
1  
In the #else part, shouldn't they evaluate to (x) and not empty? – kastauyra Nov 3 at 15:33
oops, yes of course. Edited – Tomas Nov 3 at 15:35
which header file contains this definition in user include directories ? – vinit dhatrak Nov 3 at 15:40
@vinit: lxr.linux.no/linux+v2.6.31/include/… – tonfa Nov 3 at 15:43
@tonfa i dont want kernel's header file. I want file which is in /usr/include so that I can include it in my user space code. – vinit dhatrak Nov 3 at 15:46
show 1 more comment
vote up 0 vote down

Take a look into What Every Programmer Should Know About Memory under "6.2.2 Optimizing Level 1 Instruction Cache Access" - there's a section about exactly this.

link|flag
@Nikolai Thank you for the link. – vinit dhatrak Nov 3 at 18:14
No problem. This is a very enlightening paper, even on a third read :) – Nikolai N Fetissov Nov 3 at 18:31
vote up 3 vote down

The likely() and unlikely() macros are pretty names defined in the kernel headers for something that is a real gcc feature

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.