< prev index next >

src/share/vm/ci/ciMethod.cpp

Print this page

        

*** 574,590 **** } void ciMethod::assert_virtual_call_type_ok(int bci) { assert(java_code_at_bci(bci) == Bytecodes::_invokevirtual || ! java_code_at_bci(bci) == Bytecodes::_invokeinterface, err_msg("unexpected bytecode %s", Bytecodes::name(java_code_at_bci(bci)))); } void ciMethod::assert_call_type_ok(int bci) { assert(java_code_at_bci(bci) == Bytecodes::_invokestatic || java_code_at_bci(bci) == Bytecodes::_invokespecial || ! java_code_at_bci(bci) == Bytecodes::_invokedynamic, err_msg("unexpected bytecode %s", Bytecodes::name(java_code_at_bci(bci)))); } /** * Check whether profiling provides a type for the argument i to the * call at bci bci --- 574,590 ---- } void ciMethod::assert_virtual_call_type_ok(int bci) { assert(java_code_at_bci(bci) == Bytecodes::_invokevirtual || ! java_code_at_bci(bci) == Bytecodes::_invokeinterface, "unexpected bytecode %s", Bytecodes::name(java_code_at_bci(bci))); } void ciMethod::assert_call_type_ok(int bci) { assert(java_code_at_bci(bci) == Bytecodes::_invokestatic || java_code_at_bci(bci) == Bytecodes::_invokespecial || ! java_code_at_bci(bci) == Bytecodes::_invokedynamic, "unexpected bytecode %s", Bytecodes::name(java_code_at_bci(bci))); } /** * Check whether profiling provides a type for the argument i to the * call at bci bci
< prev index next >