< prev index next >

src/hotspot/os_cpu/bsd_x86/orderAccess_bsd_x86.inline.hpp

Print this page

        

@@ -63,11 +63,10 @@
   compiler_barrier();
 }
 
 template<>
 struct OrderAccess::PlatformOrderedStore<1, RELEASE_X_FENCE>
-  VALUE_OBJ_CLASS_SPEC
 {
   template <typename T>
   void operator()(T v, volatile T* p) const {
     __asm__ volatile (  "xchgb (%2),%0"
                       : "=q" (v)

@@ -76,11 +75,10 @@
   }
 };
 
 template<>
 struct OrderAccess::PlatformOrderedStore<2, RELEASE_X_FENCE>
-  VALUE_OBJ_CLASS_SPEC
 {
   template <typename T>
   void operator()(T v, volatile T* p) const {
     __asm__ volatile (  "xchgw (%2),%0"
                       : "=r" (v)

@@ -89,11 +87,10 @@
   }
 };
 
 template<>
 struct OrderAccess::PlatformOrderedStore<4, RELEASE_X_FENCE>
-  VALUE_OBJ_CLASS_SPEC
 {
   template <typename T>
   void operator()(T v, volatile T* p) const {
     __asm__ volatile (  "xchgl (%2),%0"
                       : "=r" (v)

@@ -103,11 +100,10 @@
 };
 
 #ifdef AMD64
 template<>
 struct OrderAccess::PlatformOrderedStore<8, RELEASE_X_FENCE>
-  VALUE_OBJ_CLASS_SPEC
 {
   template <typename T>
   void operator()(T v, volatile T* p) const {
     __asm__ volatile (  "xchgq (%2), %0"
                       : "=r" (v)
< prev index next >