src/hotspot/share/prims/jvmtiTagMap.cpp
changeset 54121 fce463e39f72
parent 52877 9e041366c764
child 54376 2a2fab6fb3a5
--- a/src/hotspot/share/prims/jvmtiTagMap.cpp	Thu Mar 14 09:08:17 2019 +0100
+++ b/src/hotspot/share/prims/jvmtiTagMap.cpp	Thu Mar 14 09:14:20 2019 +0100
@@ -28,7 +28,6 @@
 #include "classfile/symbolTable.hpp"
 #include "classfile/systemDictionary.hpp"
 #include "classfile/vmSymbols.hpp"
-#include "code/codeCache.hpp"
 #include "jvmtifiles/jvmtiEnv.hpp"
 #include "logging/log.hpp"
 #include "memory/allocation.inline.hpp"
@@ -3044,11 +3043,6 @@
   blk.set_kind(JVMTI_HEAP_REFERENCE_OTHER);
   Universe::oops_do(&blk);
 
-  // If there are any non-perm roots in the code cache, visit them.
-  blk.set_kind(JVMTI_HEAP_REFERENCE_OTHER);
-  CodeBlobToOopClosure look_in_blobs(&blk, !CodeBlobToOopClosure::FixRelocations);
-  CodeCache::scavenge_root_nmethods_do(&look_in_blobs);
-
   return true;
 }