< prev index next >

src/hotspot/share/interpreter/bytecodeTracer.cpp

Print this page

        

@@ -433,17 +433,15 @@
     case Bytecodes::_iload:
     case Bytecodes::_lload:
     case Bytecodes::_fload:
     case Bytecodes::_dload:
     case Bytecodes::_aload:
-    case Bytecodes::_vload:
     case Bytecodes::_istore:
     case Bytecodes::_lstore:
     case Bytecodes::_fstore:
     case Bytecodes::_dstore:
     case Bytecodes::_astore:
-    case Bytecodes::_vstore:
       st->print_cr(" #%d", get_index_special());
       break;
 
     case Bytecodes::_iinc:
       { int index = get_index_special();

@@ -548,11 +546,11 @@
 
     case Bytecodes::_putstatic:
     case Bytecodes::_getstatic:
     case Bytecodes::_putfield:
     case Bytecodes::_getfield:
-    case Bytecodes::_vwithfield:
+    case Bytecodes::_withfield:
       print_field_or_method(get_index_u2_cpcache(), st);
       break;
 
     case Bytecodes::_invokevirtual:
     case Bytecodes::_invokespecial:

@@ -573,13 +571,11 @@
       break;
 
     case Bytecodes::_new:
     case Bytecodes::_checkcast:
     case Bytecodes::_instanceof:
-    case Bytecodes::_vbox:
-    case Bytecodes::_vunbox:
-    case Bytecodes::_vdefault:
+    case Bytecodes::_defaultvalue:
       { int i = get_index_u2();
         ConstantPool* constants = method()->constants();
         Symbol* name = constants->klass_name_at(i);
         st->print_cr(" %d <%s>", i, name->as_C_string());
       }
< prev index next >