< prev index next >

src/hotspot/share/interpreter/bytecodeTracer.cpp

Print this page
@@ -496,10 +496,11 @@
  
      case Bytecodes::_putstatic:
      case Bytecodes::_getstatic:
      case Bytecodes::_putfield:
      case Bytecodes::_getfield:
+     case Bytecodes::_withfield:
        {
          int cp_index;
          if (is_linked()) {
            int cpcache_index = get_native_index_u2();
            cp_index = cpcache()->entry_at(cpcache_index)->constant_pool_index();

@@ -567,10 +568,11 @@
        break;
  
      case Bytecodes::_new:
      case Bytecodes::_checkcast:
      case Bytecodes::_instanceof:
+     case Bytecodes::_aconst_init:
        { int i = get_Java_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 >