Due to the way our codegen works, we must emit a bunch of unreachable code in our continuation methods. ASM replaces them with long stretches of NOP, NOP, ... ATHROW. They take up a lot of space in the print output of --print-code switch. They should be replaced with an ellipse, e.g.
17 nop
18 nop
19 nop
20 nop
21 nop
22 nop
23 athrow
becomes:
17 nop
...
23 athrow