< prev index next >

src/share/vm/gc_implementation/shenandoah/shenandoahOopClosures.inline.hpp

Print this page
rev 9705 : [backport] Implement early update references phase.

@@ -30,6 +30,11 @@
 template<class T, UpdateRefsMode UPDATE_REFS>
 inline void ShenandoahMarkRefsSuperClosure::work(T *p) {
   ShenandoahConcurrentMark::mark_through_ref<T, UPDATE_REFS>(p, _heap, _queue);
 }
 
+template <class T>
+inline void ShenandoahUpdateHeapRefsClosure::do_oop_nv(T* p) {
+  _heap->maybe_update_oop_ref(p);
+}
+
 #endif // SHARE_VM_GC_SHENANDOAH_SHENANDOAHOOPCLOSURES_INLINE_HPP
< prev index next >