show/hide this revision's text 2 sentence clarified

Either could be faster. It will actually depend on the data for For some processors, the actual input data may change the answer. You will need to profile both approaches with real data. Here are some things that can affect actual performance on x86 hardware.

Let's assume for the moment that you're using a late-model Pentium 4. That processor has two levels of branch predictors baked into the CPU. If the branch predictors can guess correctly the branch direction, I suspect that the first will be fastest. This is most likely to occur if the flags are nearly all the same value or if they alternate in a very simple pattern most of the time. If the flags are truly random, then the branch predictor will be wrong half the time. For our hypothetical 32-stage Pentium 4, this will kill performance. For Pentium 3 chips, Core 2 chips, Core i7, and most AMD chips, the pipelines are shorter, so the cost of bad branch prediction is much lower.

If your value vector is noticeably larger than the processor's cache, then either approach will be limited by memory bandwidth. They'll both have essentially identical performance characteristics. If the value vector fits comfortably in cache, be careful how you do any profiling so that one of the test loops isn't getting penalized for filling the cache and the other one benefits from it.

show/hide this revision's text 1

Either could be faster. It will actually depend on the data for some processors. You will need to profile both approaches with real data. Here are some things that can affect actual performance on x86 hardware.

Let's assume for the moment that you're using a late-model Pentium 4. That processor has two levels of branch predictors baked into the CPU. If the branch predictors can guess correctly the branch direction, I suspect that the first will be fastest. This is most likely to occur if the flags are nearly all the same value or if they alternate in a very simple pattern most of the time. If the flags are truly random, then the branch predictor will be wrong half the time. For our hypothetical 32-stage Pentium 4, this will kill performance. For Pentium 3 chips, Core 2 chips, Core i7, and most AMD chips, the pipelines are shorter, so the cost of bad branch prediction is much lower.

If your value vector is noticeably larger than the processor's cache, then either approach will be limited by memory bandwidth. They'll both have essentially identical performance characteristics. If the value vector fits comfortably in cache, be careful how you do any profiling so that one of the test loops isn't getting penalized for filling the cache and the other one benefits from it.