hotspot/src/share/vm/runtime/sweeper.cpp
changeset 36816 987a22271911
parent 36802 18b1db5a7e70
child 36844 ce97bc269a80
--- a/hotspot/src/share/vm/runtime/sweeper.cpp	Wed Mar 30 08:00:51 2016 +0200
+++ b/hotspot/src/share/vm/runtime/sweeper.cpp	Wed Mar 30 08:04:59 2016 +0200
@@ -631,7 +631,10 @@
       // Code cache state change is tracked in make_zombie()
       nm->make_zombie();
       SWEEP(nm);
-      if (nm->is_osr_method()) {
+      // The nmethod may have been locked by JVMTI after being made zombie (see
+      // JvmtiDeferredEvent::compiled_method_unload_event()). If so, we cannot
+      // flush the osr nmethod directly but have to wait for a later sweeper cycle.
+      if (nm->is_osr_method() && !nm->is_locked_by_vm()) {
         // No inline caches will ever point to osr methods, so we can just remove it.
         // Make sure that we unregistered the nmethod with the heap and flushed all
         // dependencies before removing the nmethod (done in make_zombie()).