src/hotspot/share/runtime/vmOperations.cpp
changeset 55005 9b70ebd131b4
parent 54786 ebf733a324d4
child 55479 80b27dc96ca3
child 58678 9cf78a70fa4f
--- a/src/hotspot/share/runtime/vmOperations.cpp	Thu May 23 09:46:49 2019 +0200
+++ b/src/hotspot/share/runtime/vmOperations.cpp	Thu May 23 10:13:29 2019 +0200
@@ -118,18 +118,6 @@
   }
 }
 
-void VM_Deoptimize::doit() {
-  // We do not want any GCs to happen while we are in the middle of this VM operation
-  ResourceMark rm;
-  DeoptimizationMarker dm;
-
-  // Deoptimize all activations depending on marked nmethods
-  Deoptimization::deoptimize_dependents();
-
-  // Make the dependent methods not entrant
-  CodeCache::make_marked_nmethods_not_entrant();
-}
-
 void VM_MarkActiveNMethods::doit() {
   NMethodSweeper::mark_active_nmethods();
 }