src/hotspot/share/runtime/vmOperations.cpp
branchstuefe-new-metaspace-branch
changeset 58494 54c1ba464b78
parent 58063 bdf136b8ae0e
parent 58226 408c445d04e8
--- a/src/hotspot/share/runtime/vmOperations.cpp	Mon Oct 07 15:48:26 2019 +0200
+++ b/src/hotspot/share/runtime/vmOperations.cpp	Mon Oct 07 16:48:42 2019 +0200
@@ -116,18 +116,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();
 }