< prev index next >

src/share/vm/gc/shared/cardTableModRefBS.inline.hpp

Print this page
rev 8362 : [mq]: hotspot

*** 20,33 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_MEMORY_CARDTABLEMODREFBS_INLINE_HPP ! #define SHARE_VM_MEMORY_CARDTABLEMODREFBS_INLINE_HPP ! #include "memory/cardTableModRefBS.hpp" #include "oops/oopsHierarchy.hpp" #include "runtime/orderAccess.inline.hpp" template <class T> inline void CardTableModRefBS::inline_write_ref_field(T* field, oop newVal, bool release) { jbyte* byte = byte_for((void*)field); --- 20,33 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_INLINE_HPP ! #define SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_INLINE_HPP ! #include "gc/shared/cardTableModRefBS.hpp" #include "oops/oopsHierarchy.hpp" #include "runtime/orderAccess.inline.hpp" template <class T> inline void CardTableModRefBS::inline_write_ref_field(T* field, oop newVal, bool release) { jbyte* byte = byte_for((void*)field);
*** 37,42 **** } else { *byte = dirty_card; } } ! #endif // SHARE_VM_MEMORY_CARDTABLEMODREFBS_INLINE_HPP --- 37,42 ---- } else { *byte = dirty_card; } } ! #endif // SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_INLINE_HPP
< prev index next >