Is there any performance gain/loss by using unsigned integers over signed integers?
If so, does this goes for short and long as well?
|
|
Division by powers of 2 is faster with
Here is the relevant
And here is the relevant
|
|||||||||
|
|
This will depend on exact implementation. In most cases there will be no difference however. If you really care you have to try all the variants you consider and measure performance. |
|||||
|
|
In C++ (and C), signed integer overflow is undefined, whereas unsigned integer overflow is defined to wrap around. Notice that e.g. in gcc, you can use the -fwrapv flag to make signed overflow defined (to wrap around). Undefined signed integer overflow allows the compiler to assume that overflows don't happen, which may introduce optimization opportunities. See e.g. this blog post for discussion. |
|||
|
|
|
This is pretty much dependent on the specific processor. On most processors, there are instructions for both signed and unsigned arithmetic, so the difference between using signed and unsigned integers comes down to which one the compiler uses. If any of the two is faster, it's completely processor specific, and most likely the difference is miniscule, if it exists at all. |
|||
|
|
|
At least x86 CPU's don't differentiate signedness of integers at all. There is no separate instructions to "add signed integers" and "add unsigned integers". There is only one instruction, "add integers", which, considering two's complement representation of negative numbers, works regardless of signedness. So on x86 you may expect no any performance penalties on using signed or unsigned integers. |
|||||||||||||
|
|
Note: some DSPs have fast multiplication instructions for the As for the difference between |
|||||
|
|
Traditionally EDIT: Things are slightly different on modern systems:
|
|||||
|
|
IIRC, on x86 signed/unsigned shouldn't make any difference. Short/long, on the other hand, is a different story, since the amount of data that has to be moved to/from RAM is bigger for longs (other reasons may include cast operations like extending a short to long). |
|||||
|