Tagged Questions
15
votes
7answers
942 views
Is there a Java bytecode optimizer that removes useless gotos?
Problem: I have a method that compiles to over 8000 bytes of Java bytecode. HotSpot has a magic limit that makes the JIT not kick in for methods that exceed 8000 bytes. (Yes, it is reasonable to have ...