Let's say I have two alternative implementations of an algorithm, or two strategies. I could of course benchmark them with e.g. jmh. But is there any information I could get by looking at the decompiled bytecode?
A very native example would be counting if_*
instructions for complexity or aload_*
instructions for memory consumption.