| 411 | }; |
| 412 | |
| 413 | static inline bool isFunctionExit(u8 opcode) { |
| 414 | return opcode >= JVM_OPC_ireturn && opcode <= JVM_OPC_return; |
| 415 | } |
| 416 | |
| 417 | static inline bool isNarrowJump(u8 opcode) { |
| 418 | return (opcode >= JVM_OPC_ifeq && opcode <= JVM_OPC_jsr) || |
no outgoing calls
no test coverage detected