Created
March 3, 2016 12:41
-
-
Save dmlloyd/5b540887e0967e3cf602 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| case Bytecodes::_invokevirtual : | |
| case Bytecodes::_invokespecial : | |
| case Bytecodes::_invokestatic : | |
| verify_invoke_instructions( | |
| &bcs, code_length, ¤t_frame, (bci >= ex_min && bci < ex_max), | |
| &this_uninit, return_type, cp, &stackmap_table, CHECK_VERIFY(this)); | |
| no_control_flow = false; break; | |
| case Bytecodes::_invokeinterface : | |
| case Bytecodes::_invokedynamic : | |
| verify_invoke_instructions( | |
| &bcs, code_length, ¤t_frame, (bci >= ex_min && bci < ex_max), | |
| &this_uninit, return_type, cp, &stackmap_table, CHECK_VERIFY(this)); | |
| no_control_flow = false; break; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment