src/share/vm/oops/klass.cpp

changeset 2777
8ce625481709
parent 2708
1d1603768966
child 3391
069ab3f976d3
child 3427
94ec88ca68e2
equal deleted inserted replaced
2776:a534c140904e 2777:8ce625481709
451 instanceKlass* ik = (instanceKlass*)this; 451 instanceKlass* ik = (instanceKlass*)this;
452 if (ik->is_linked()) { 452 if (ik->is_linked()) {
453 ik->unlink_class(); 453 ik->unlink_class();
454 } 454 }
455 } 455 }
456 // Clear the Java vtable if the oop has one.
457 // The vtable isn't shareable because it's in the wrong order wrt the methods
458 // once the method names get moved and resorted.
459 klassVtable* vt = vtable();
460 if (vt != NULL) {
461 assert(oop_is_instance() || oop_is_array(), "nothing else has vtable");
462 vt->clear_vtable();
463 }
456 set_subklass(NULL); 464 set_subklass(NULL);
457 set_next_sibling(NULL); 465 set_next_sibling(NULL);
458 } 466 }
459 467
460 468

mercurial