hotspot/src/share/vm/interpreter/bytecodeTracer.cpp
changeset 4567 7fc02fbe5c7a
parent 4429 d7eb4e2099aa
child 5688 9052dc91ea67
child 5547 f4b087cbb361
equal deleted inserted replaced
4566:b363f6ef4068 4567:7fc02fbe5c7a
   268     st->print_cr(" <unresolved string at %d>", i);
   268     st->print_cr(" <unresolved string at %d>", i);
   269   } else if (tag.is_klass()) {
   269   } else if (tag.is_klass()) {
   270     st->print_cr(" %s", constants->resolved_klass_at(i)->klass_part()->external_name());
   270     st->print_cr(" %s", constants->resolved_klass_at(i)->klass_part()->external_name());
   271   } else if (tag.is_unresolved_klass()) {
   271   } else if (tag.is_unresolved_klass()) {
   272     st->print_cr(" <unresolved klass at %d>", i);
   272     st->print_cr(" <unresolved klass at %d>", i);
       
   273   } else if (tag.is_object()) {
       
   274     st->print_cr(" " PTR_FORMAT, constants->object_at(i));
   273   } else {
   275   } else {
   274     st->print_cr(" bad tag=%d at %d", tag.value(), i);
   276     st->print_cr(" bad tag=%d at %d", tag.value(), i);
   275   }
   277   }
   276 }
   278 }
   277 
   279