src/share/vm/gc/parallel/psParallelCompact.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/gc/parallel/psParallelCompact.cpp

src/share/vm/gc/parallel/psParallelCompact.cpp

Print this page

        

*** 21,30 **** --- 21,31 ---- * questions. * */ #include "precompiled.hpp" + #include "aot/aotLoader.hpp" #include "classfile/stringTable.hpp" #include "classfile/symbolTable.hpp" #include "classfile/systemDictionary.hpp" #include "code/codeCache.hpp" #include "gc/parallel/gcTaskManager.hpp"
*** 2181,2190 **** --- 2182,2192 ---- // Global (weak) JNI handles JNIHandles::weak_oops_do(&oop_closure); CodeBlobToOopClosure adjust_from_blobs(&oop_closure, CodeBlobToOopClosure::FixRelocations); CodeCache::blobs_do(&adjust_from_blobs); + AOTLoader::oops_do(&oop_closure); StringTable::oops_do(&oop_closure); ref_processor()->weak_oops_do(&oop_closure); // Roots were visited so references into the young gen in roots // may have been scanned. Process them also. // Should the reference processor have a span that excludes
src/share/vm/gc/parallel/psParallelCompact.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File