< prev index next >

src/hotspot/share/runtime/stubRoutines.hpp

Print this page
rev 49096 : [mq]: eliminate_wb_stub.patch

@@ -224,12 +224,10 @@
   static address _safefetch32_continuation_pc;
   static address _safefetchN_entry;
   static address _safefetchN_fault_pc;
   static address _safefetchN_continuation_pc;
 
-  static address _shenandoah_wb_C;
-
  public:
   // Initialization/Testing
   static void    initialize1();                            // must happen before universe::genesis
   static void    initialize2();                            // must happen after  universe::genesis
 

@@ -451,15 +449,10 @@
   static void arrayof_jshort_copy    (HeapWord* src, HeapWord* dest, size_t count);
   static void arrayof_jint_copy      (HeapWord* src, HeapWord* dest, size_t count);
   static void arrayof_jlong_copy     (HeapWord* src, HeapWord* dest, size_t count);
   static void arrayof_oop_copy       (HeapWord* src, HeapWord* dest, size_t count);
   static void arrayof_oop_copy_uninit(HeapWord* src, HeapWord* dest, size_t count);
-
-  static address shenandoah_wb_C()
-  {
-    return _shenandoah_wb_C;
-  }
 };
 
 // Safefetch allows to load a value from a location that's not known
 // to be valid. If the load causes a fault, the error value is returned.
 inline int SafeFetch32(int* adr, int errValue) {
< prev index next >