Skip to content

Instantly share code, notes, and snippets.

@dmlloyd
Created March 3, 2016 12:41
Show Gist options
  • Select an option

  • Save dmlloyd/5b540887e0967e3cf602 to your computer and use it in GitHub Desktop.

Select an option

Save dmlloyd/5b540887e0967e3cf602 to your computer and use it in GitHub Desktop.
case Bytecodes::_invokevirtual :
case Bytecodes::_invokespecial :
case Bytecodes::_invokestatic :
verify_invoke_instructions(
&bcs, code_length, &current_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, &current_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