hotspot/src/share/vm/prims/jvmtiTagMap.cpp
changeset 33151 686d694f5c6a
parent 32817 acc2744fd84b
child 33628 09241459a8b8
child 33602 16053580a684
equal deleted inserted replaced
33150:9e514d10a7bf 33151:686d694f5c6a
   586 
   586 
   587     // get object tag
   587     // get object tag
   588     _obj_tag = (_entry == NULL) ? 0 : _entry->tag();
   588     _obj_tag = (_entry == NULL) ? 0 : _entry->tag();
   589 
   589 
   590     // get the class and the class's tag value
   590     // get the class and the class's tag value
   591     assert(SystemDictionary::Class_klass()->oop_is_instanceMirror(), "Is not?");
   591     assert(InstanceKlass::cast(SystemDictionary::Class_klass())->is_mirror_instance_klass(), "Is not?");
   592 
   592 
   593     _klass_tag = tag_for(tag_map, _o->klass()->java_mirror());
   593     _klass_tag = tag_for(tag_map, _o->klass()->java_mirror());
   594   }
   594   }
   595 
   595 
   596   ~CallbackWrapper() {
   596   ~CallbackWrapper() {