8217400: Optimized build is broken by Shenandoah changes
authorvlivanov
Fri, 18 Jan 2019 17:34:36 -0800
changeset 53400 6a3586523418
parent 53399 bf806003a4de
child 53401 3f224e4a891e
8217400: Optimized build is broken by Shenandoah changes Reviewed-by: shade
src/hotspot/share/gc/shenandoah/shenandoahCodeRoots.hpp
src/hotspot/share/gc/shenandoah/shenandoahFreeSet.hpp
src/hotspot/share/gc/shenandoah/shenandoahHeap.hpp
--- a/src/hotspot/share/gc/shenandoah/shenandoahCodeRoots.hpp	Fri Jan 18 17:34:31 2019 -0800
+++ b/src/hotspot/share/gc/shenandoah/shenandoahCodeRoots.hpp	Fri Jan 18 17:34:36 2019 -0800
@@ -77,8 +77,8 @@
 
   bool has_cset_oops(ShenandoahHeap* heap);
 
-  void assert_alive_and_correct() PRODUCT_RETURN;
-  void assert_same_oops(GrowableArray<oop*>* oops) PRODUCT_RETURN;
+  void assert_alive_and_correct() NOT_DEBUG_RETURN;
+  void assert_same_oops(GrowableArray<oop*>* oops) NOT_DEBUG_RETURN;
 
   static bool find_with_nmethod(void* nm, ShenandoahNMethod* other) {
     return other->_nm == nm;
--- a/src/hotspot/share/gc/shenandoah/shenandoahFreeSet.hpp	Fri Jan 18 17:34:31 2019 -0800
+++ b/src/hotspot/share/gc/shenandoah/shenandoahFreeSet.hpp	Fri Jan 18 17:34:36 2019 -0800
@@ -42,9 +42,9 @@
   size_t _capacity;
   size_t _used;
 
-  void assert_bounds() const PRODUCT_RETURN;
-  void assert_heaplock_owned_by_current_thread() const PRODUCT_RETURN;
-  void assert_heaplock_not_owned_by_current_thread() const PRODUCT_RETURN;
+  void assert_bounds() const NOT_DEBUG_RETURN;
+  void assert_heaplock_owned_by_current_thread() const NOT_DEBUG_RETURN;
+  void assert_heaplock_not_owned_by_current_thread() const NOT_DEBUG_RETURN;
 
   bool is_mutator_free(size_t idx) const;
   bool is_collector_free(size_t idx) const;
--- a/src/hotspot/share/gc/shenandoah/shenandoahHeap.hpp	Fri Jan 18 17:34:31 2019 -0800
+++ b/src/hotspot/share/gc/shenandoah/shenandoahHeap.hpp	Fri Jan 18 17:34:36 2019 -0800
@@ -163,9 +163,9 @@
     return &_lock;
   }
 
-  void assert_heaplock_owned_by_current_thread()     PRODUCT_RETURN;
-  void assert_heaplock_not_owned_by_current_thread() PRODUCT_RETURN;
-  void assert_heaplock_or_safepoint()                PRODUCT_RETURN;
+  void assert_heaplock_owned_by_current_thread()     NOT_DEBUG_RETURN;
+  void assert_heaplock_not_owned_by_current_thread() NOT_DEBUG_RETURN;
+  void assert_heaplock_or_safepoint()                NOT_DEBUG_RETURN;
 
 // ---------- Initialization, termination, identification, printing routines
 //
@@ -231,7 +231,7 @@
 
 public:
   uint max_workers();
-  void assert_gc_workers(uint nworker) PRODUCT_RETURN;
+  void assert_gc_workers(uint nworker) NOT_DEBUG_RETURN;
 
   WorkGang* workers() const;
   WorkGang* get_safepoint_workers();