(no title)
throwawayadvsec | 2 years ago
compilers are usually optimizing these kind of statements so they end up similar or identical
if you wanna be sure, make two loops running a few million times with random if else / switches and time them
throwawayadvsec | 2 years ago
compilers are usually optimizing these kind of statements so they end up similar or identical
if you wanna be sure, make two loops running a few million times with random if else / switches and time them
Someone|2 years ago
If you want to be sure, you have to benchmark your production code with production data.
Look at the generated machine code may also help, but can be difficult, as the generated code may be different, but of similar performance, and judging whether two instruction sequences have similar performance is hard on modern hardware, with its out-of-order executing, multiple layers of caches, etc.
verdverm|2 years ago