Lines Matching defs:bytecode

136 IRT_ENTRY(void, InterpreterRuntime::resolve_ldc(JavaThread* thread, Bytecodes::Code bytecode)) {
137 assert(bytecode == Bytecodes::_fast_aldc ||
138 bytecode == Bytecodes::_fast_aldc_w, "wrong bc");
145 // The bytecode wrappers aren't GC-safe so construct a new one
181 // because the _breakpoint bytecode would be lost.
239 // Force resolving; quicken the bytecode
243 // program we might have seen an unquick'd bytecode in the interpreter but have another
244 // thread quicken the bytecode before we get here.
507 IRT_ENTRY(void, InterpreterRuntime::resolve_get_put(JavaThread* thread, Bytecodes::Code bytecode))
511 bool is_put = (bytecode == Bytecodes::_putfield || bytecode == Bytecodes::_putstatic);
512 bool is_static = (bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic);
516 LinkResolver::resolve_field(info, pool, get_index_u2_cpcache(thread, bytecode),
517 bytecode, false, CHECK);
538 bool uninitialized_static = ((bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic) &&
659 IRT_ENTRY(void, InterpreterRuntime::resolve_invoke(JavaThread* thread, Bytecodes::Code bytecode)) {
662 if (bytecode == Bytecodes::_invokevirtual || bytecode == Bytecodes::_invokeinterface) {
683 get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
694 get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
702 if (bytecode == Bytecodes::_invokeinterface) {
715 cache_entry(thread)->set_method(bytecode, rm, info.vtable_index());
723 bytecode,
734 const Bytecodes::Code bytecode = Bytecodes::_invokehandle;
743 get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
758 const Bytecodes::Code bytecode = Bytecodes::_invokedynamic;
766 int index = get_index_u4(thread, bytecode);
771 index, bytecode, CHECK);