__builtin_expect from GCC can be used by programmer to show which variants are expected to be very often and which are rare. But __builtin_expect have only "true" and "false" (0% or 100% probability)

For some big projects it is vary hard to get profile feedback (-fprofile-arcs), and sometimes programmer does know, what probability of branch he have in some point of program.

It is possible to give a hint to compiler that a branch have probability >0% and <100% ?

link|improve this question

If "true" and "false" really meant 100% or 0%, the compiler could just drop the impossible branch altogether. It makes more sense if they already mean 0<P<0.5 and 0.5<P<1. – aschepler Nov 16 '10 at 14:32
feedback

2 Answers

up vote 3 down vote accepted

True and false really mean that "the first variant is more likely" and "the second variant is more likely". There's no practical need for any values other than these. The compiler won't be able to use that information.

link|improve this answer
user434507, are you sure about "The compiler won't be able to use that information." ? – osgx Nov 17 '10 at 2:25
feedback

Non-determinism is not a desirable trait for compiler output, let alone language features. There is no real benefit to only partial optimization preferring one branch, and no compiler I'm aware of can do this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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