1 /*
   2  * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_SHARED_MODREFBARRIERSET_HPP
  26 #define SHARE_VM_GC_SHARED_MODREFBARRIERSET_HPP
  27 
  28 #include "gc/shared/barrierSet.hpp"
  29 #include "memory/memRegion.hpp"
  30 
  31 class Klass;
  32 
  33 class ModRefBarrierSet: public BarrierSet {
  34 protected:
  35   ModRefBarrierSet(BarrierSetAssembler* barrier_set_assembler,
  36                    const BarrierSet::FakeRtti& fake_rtti)
  37     : BarrierSet(barrier_set_assembler,
  38                  fake_rtti.add_tag(BarrierSet::ModRef)) { }
  39   ~ModRefBarrierSet() { }
  40 
  41 public:
  42   template <DecoratorSet decorators, typename T>
  43   inline void write_ref_field_pre(T* addr) {}
  44 
  45   template <DecoratorSet decorators, typename T>
  46   inline void write_ref_field_post(T *addr, oop new_value) {}
  47 
  48   // Causes all refs in "mr" to be assumed to be modified.
  49   virtual void invalidate(MemRegion mr) = 0;
  50   virtual void write_region(MemRegion mr) = 0;
  51 
  52   // Operations on arrays, or general regions (e.g., for "clone") may be
  53   // optimized by some barriers.
  54 
  55   // Below length is the # array elements being written
  56   virtual void write_ref_array_pre(oop* dst, size_t length,
  57                                    bool dest_uninitialized = false) {}
  58   virtual void write_ref_array_pre(narrowOop* dst, size_t length,
  59                                    bool dest_uninitialized = false) {}
  60   // Below count is the # array elements being written, starting
  61   // at the address "start", which may not necessarily be HeapWord-aligned
  62   inline void write_ref_array(HeapWord* start, size_t count);
  63 
  64  protected:
  65   virtual void write_ref_array_work(MemRegion mr) = 0;
  66 
  67  public:
  68   // The ModRef abstraction introduces pre and post barriers
  69   template <DecoratorSet decorators, typename BarrierSetT>
  70   class AccessBarrier: public BarrierSet::AccessBarrier<decorators, BarrierSetT> {
  71     typedef BarrierSet::AccessBarrier<decorators, BarrierSetT> Raw;
  72 
  73   public:
  74     template <typename T>
  75     static void oop_store_in_heap(T* addr, oop value);
  76     template <typename T>
  77     static oop oop_atomic_cmpxchg_in_heap(oop new_value, T* addr, oop compare_value);
  78     template <typename T>
  79     static oop oop_atomic_xchg_in_heap(oop new_value, T* addr);
  80 
  81     template <typename T>
  82     static bool oop_arraycopy_in_heap(arrayOop src_obj, arrayOop dst_obj, T* src, T* dst, size_t length);
  83 
  84     static void clone_in_heap(oop src, oop dst, size_t size);
  85 
  86     static void oop_store_in_heap_at(oop base, ptrdiff_t offset, oop value) {
  87       oop_store_in_heap(AccessInternal::oop_field_addr<decorators>(base, offset), value);
  88     }
  89 
  90     static oop oop_atomic_xchg_in_heap_at(oop new_value, oop base, ptrdiff_t offset) {
  91       return oop_atomic_xchg_in_heap(new_value, AccessInternal::oop_field_addr<decorators>(base, offset));
  92     }
  93 
  94     static oop oop_atomic_cmpxchg_in_heap_at(oop new_value, oop base, ptrdiff_t offset, oop compare_value) {
  95       return oop_atomic_cmpxchg_in_heap(new_value, AccessInternal::oop_field_addr<decorators>(base, offset), compare_value);
  96     }
  97   };
  98 };
  99 
 100 template<>
 101 struct BarrierSet::GetName<ModRefBarrierSet> {
 102   static const BarrierSet::Name value = BarrierSet::ModRef;
 103 };
 104 
 105 #endif // SHARE_VM_GC_SHARED_MODREFBARRIERSET_HPP