I have heard a teacher drop this once, and it has been bugging me ever since. Let's say we want to check if the integer x is bigger than or equal to 0. There are two ways to check this:
if (x > -1){
//do stuff
}
and
if (x >= 0){
//do stuff
}
According to this teacher > would be slightly faster then >=. In this case it was Java, but according to him this also applied for C, c++ and other languages. Is there any truth to this statement?
There's no difference in any real-world sense.
Let's take a look at some code generated by various compilers for various targets.
-O2for GCC,/Oxfor MSVC,-Ohfor IAR)using the following module:
And here's what each of them produced for the comparison operations:
MSVC 11 targeting ARM:
MSVC 11 targeting x64:
MSVC 11 targeting x86:
GCC 4.6.1 targeting x64
GCC 4.6.1 targeting x86:
GCC 4.4.1 targeting ARM:
IAR 5.20 targeting an ARM Cortex-M3:
If you're still with me, here are the differences of any note between evaluating
(x > -1)and(x >= 0)that show up:cmp r0,#0xFFFFFFFFfor(x > -1)vscmp r0,#0for(x >= 0). The first instruction's opcode is two bytes longer. I suppose that may introduce some additional time, so we'll call this an advantage for(x >= 0)cmp ecx, -1for(x > -1)vstest ecx, ecxfor(x >= 0). The first instruction's opcode is one byte longer. I suppose that may introduce some additional time, so we'll call this an advantage for(x >= 0)Note that GCC and IAR generated identical machine code for the two kinds of comparison (with the possible exception of which register was used). So according to this survey, it appears that
(x >= 0)has an ever-so-slight chance of being 'faster'. But whatever advantage the minimally shorter opcode byte encoding might have (and I stress might have) will be certainly completely overshadowed by other factors.I'd be surprised if you found anything different for the jitted output of Java or C#. I doubt you'd find any difference of note even for a very small target like an 8 bit AVR.
In short, don't worry about this micro-optimization. I think my write up here has already spent more time than will be spent by any difference in the performance of these expressions accumulated across all the CPUs executing them in my lifetime. If you have the capability to measure the difference in performance, please apply your efforts to something more important like studying the behavior of sub-atomic particles or something.