1 /*
   2  * Copyright (c) 2001, 2019, 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_GC_SHARED_GENOOPCLOSURES_INLINE_HPP
  26 #define SHARE_GC_SHARED_GENOOPCLOSURES_INLINE_HPP
  27 
  28 #include "gc/shared/cardTableRS.hpp"
  29 #include "gc/shared/genCollectedHeap.hpp"
  30 #include "gc/shared/genOopClosures.hpp"
  31 #include "gc/shared/generation.hpp"
  32 #include "gc/shared/space.hpp"
  33 #include "oops/access.inline.hpp"
  34 #include "oops/compressedOops.inline.hpp"
  35 #include "oops/oop.inline.hpp"
  36 #if INCLUDE_SERIALGC
  37 #include "gc/serial/defNewGeneration.inline.hpp"
  38 #endif
  39 
  40 inline OopsInGenClosure::OopsInGenClosure(Generation* gen) :
  41   OopIterateClosure(gen->ref_processor()), _orig_gen(gen), _rs(NULL) {
  42   set_generation(gen);
  43 }
  44 
  45 inline void OopsInGenClosure::set_generation(Generation* gen) {
  46   _gen = gen;
  47   _gen_boundary = _gen->reserved().start();
  48   // Barrier set for the heap, must be set after heap is initialized
  49   if (_rs == NULL) {
  50     _rs = GenCollectedHeap::heap()->rem_set();
  51   }
  52 }
  53 
  54 template <class T> inline void OopsInGenClosure::do_barrier(T* p) {
  55   assert(generation()->is_in_reserved(p), "expected ref in generation");
  56   T heap_oop = RawAccess<>::oop_load(p);
  57   assert(!CompressedOops::is_null(heap_oop), "expected non-null oop");
  58   oop obj = CompressedOops::decode_not_null(heap_oop);
  59   // If p points to a younger generation, mark the card.
  60   if (cast_from_oop<HeapWord*>(obj) < _gen_boundary) {
  61     _rs->inline_write_ref_field_gc(p, obj);
  62   }
  63 }
  64 
  65 inline BasicOopsInGenClosure::BasicOopsInGenClosure(Generation* gen) : OopsInGenClosure(gen) {
  66 }
  67 
  68 inline void OopsInClassLoaderDataOrGenClosure::do_cld_barrier() {
  69   assert(_scanned_cld != NULL, "Must be");
  70   if (!_scanned_cld->has_modified_oops()) {
  71     _scanned_cld->record_modified_oops();
  72   }
  73 }
  74 
  75 #if INCLUDE_SERIALGC
  76 
  77 // NOTE! Any changes made here should also be made
  78 // in FastScanClosure::do_oop_work()
  79 template <class T> inline void ScanClosure::do_oop_work(T* p) {
  80   T heap_oop = RawAccess<>::oop_load(p);
  81   // Should we copy the obj?
  82   if (!CompressedOops::is_null(heap_oop)) {
  83     oop obj = CompressedOops::decode_not_null(heap_oop);
  84     if (cast_from_oop<HeapWord*>(obj) < _boundary) {
  85       assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
  86       oop new_obj = obj->is_forwarded() ? obj->forwardee()
  87                                         : _g->copy_to_survivor_space(obj);
  88       RawAccess<IS_NOT_NULL>::oop_store(p, new_obj);
  89     }
  90 
  91     if (is_scanning_a_cld()) {
  92       do_cld_barrier();
  93     } else if (_gc_barrier) {
  94       // Now call parent closure
  95       do_barrier(p);
  96     }
  97   }
  98 }
  99 
 100 inline void ScanClosure::do_oop(oop* p)       { ScanClosure::do_oop_work(p); }
 101 inline void ScanClosure::do_oop(narrowOop* p) { ScanClosure::do_oop_work(p); }
 102 
 103 // NOTE! Any changes made here should also be made
 104 // in ScanClosure::do_oop_work()
 105 template <class T> inline void FastScanClosure::do_oop_work(T* p) {
 106   T heap_oop = RawAccess<>::oop_load(p);
 107   // Should we copy the obj?
 108   if (!CompressedOops::is_null(heap_oop)) {
 109     oop obj = CompressedOops::decode_not_null(heap_oop);
 110     if (cast_from_oop<HeapWord*>(obj) < _boundary) {
 111       assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
 112       oop new_obj = obj->is_forwarded() ? obj->forwardee()
 113                                         : _g->copy_to_survivor_space(obj);
 114       RawAccess<IS_NOT_NULL>::oop_store(p, new_obj);
 115       if (is_scanning_a_cld()) {
 116         do_cld_barrier();
 117       } else if (_gc_barrier) {
 118         // Now call parent closure
 119         do_barrier(p);
 120       }
 121     }
 122   }
 123 }
 124 
 125 inline void FastScanClosure::do_oop(oop* p)       { FastScanClosure::do_oop_work(p); }
 126 inline void FastScanClosure::do_oop(narrowOop* p) { FastScanClosure::do_oop_work(p); }
 127 
 128 #endif // INCLUDE_SERIALGC
 129 
 130 template <class T> void FilteringClosure::do_oop_work(T* p) {
 131   T heap_oop = RawAccess<>::oop_load(p);
 132   if (!CompressedOops::is_null(heap_oop)) {
 133     oop obj = CompressedOops::decode_not_null(heap_oop);
 134     if (cast_from_oop<HeapWord*>(obj) < _boundary) {
 135       _cl->do_oop(p);
 136     }
 137   }
 138 }
 139 
 140 inline void FilteringClosure::do_oop(oop* p)       { FilteringClosure::do_oop_work(p); }
 141 inline void FilteringClosure::do_oop(narrowOop* p) { FilteringClosure::do_oop_work(p); }
 142 
 143 #if INCLUDE_SERIALGC
 144 
 145 // Note similarity to ScanClosure; the difference is that
 146 // the barrier set is taken care of outside this closure.
 147 template <class T> inline void ScanWeakRefClosure::do_oop_work(T* p) {
 148   oop obj = RawAccess<IS_NOT_NULL>::oop_load(p);
 149   // weak references are sometimes scanned twice; must check
 150   // that to-space doesn't already contain this object
 151   if (cast_from_oop<HeapWord*>(obj) < _boundary && !_g->to()->is_in_reserved(obj)) {
 152     oop new_obj = obj->is_forwarded() ? obj->forwardee()
 153                                       : _g->copy_to_survivor_space(obj);
 154     RawAccess<IS_NOT_NULL>::oop_store(p, new_obj);
 155   }
 156 }
 157 
 158 inline void ScanWeakRefClosure::do_oop(oop* p)       { ScanWeakRefClosure::do_oop_work(p); }
 159 inline void ScanWeakRefClosure::do_oop(narrowOop* p) { ScanWeakRefClosure::do_oop_work(p); }
 160 
 161 #endif // INCLUDE_SERIALGC
 162 
 163 #endif // SHARE_GC_SHARED_GENOOPCLOSURES_INLINE_HPP