Using CPU branch prediction in Java
CPU branch prediction is when the CPU tries to guess the outcome of a conditional
operation, eg: an if
statement, before it is executed. If it guesses correct then
the CPU can continue executing instructions without interuption.