hotspot/src/share/vm/gc/g1/g1OopClosures.hpp
author brutisso
Thu, 11 Feb 2016 08:57:00 +0100
changeset 36091 fd10d4ee314a
parent 35943 e726308008c0
child 37414 2672ba9af0dc
permissions -rw-r--r--
8149542: Missing failure reporting in HeapRegion::verify Reviewed-by: tschatzl, jprovino
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     1
/*
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
     2
 * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     4
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     8
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    13
 * accompanied this code).
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    14
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4902
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4902
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4902
diff changeset
    21
 * questions.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    22
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    23
 */
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29688
diff changeset
    25
#ifndef SHARE_VM_GC_G1_G1OOPCLOSURES_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29688
diff changeset
    26
#define SHARE_VM_GC_G1_G1OOPCLOSURES_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6958
diff changeset
    27
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    28
#include "memory/iterator.hpp"
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents: 28207
diff changeset
    29
#include "oops/markOop.hpp"
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    30
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    31
class HeapRegion;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    32
class G1CollectedHeap;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    33
class G1RemSet;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
    34
class G1ConcurrentMark;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    35
class DirtyCardToOopClosure;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
    36
class G1CMBitMap;
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
    37
class G1CMMarkStack;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    38
class G1ParScanThreadState;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
    39
class G1CMTask;
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
    40
class ReferenceProcessor;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    41
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    42
// A class that scans oops in a given heap region (much as OopsInGenClosure
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    43
// scans oops in a generation.)
22547
4671971bad6b 8027746: Remove do_gen_barrier template parameter in G1ParCopyClosure
tschatzl
parents: 20282
diff changeset
    44
class OopsInHeapRegionClosure: public ExtendedOopClosure {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    45
protected:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    46
  HeapRegion* _from;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    47
public:
9988
01f84e2c3fc0 7045662: G1: OopsInHeapRegionClosure::set_region() should not be virtual
tonyp
parents: 7397
diff changeset
    48
  void set_region(HeapRegion* from) { _from = from; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    49
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    50
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    51
class G1ParClosureSuper : public OopsInHeapRegionClosure {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    52
protected:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    53
  G1CollectedHeap* _g1;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    54
  G1ParScanThreadState* _par_scan_state;
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    55
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    56
  G1ParClosureSuper(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state);
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    57
  ~G1ParClosureSuper() { }
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    58
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    59
public:
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    60
  virtual bool apply_to_weak_ref_discovered_field() { return true; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    61
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    62
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    63
class G1ParPushHeapRSClosure : public G1ParClosureSuper {
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    64
public:
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
    65
  G1ParPushHeapRSClosure(G1CollectedHeap* g1,
10674
09e6f8d20337 7097053: G1: assert(da ? referent->is_oop() : referent->is_oop_or_null()) failed: referenceProcessor.cpp:1054
johnc
parents: 10670
diff changeset
    66
                         G1ParScanThreadState* par_scan_state):
09e6f8d20337 7097053: G1: assert(da ? referent->is_oop() : referent->is_oop_or_null()) failed: referenceProcessor.cpp:1054
johnc
parents: 10670
diff changeset
    67
    G1ParClosureSuper(g1, par_scan_state) { }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
    68
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    69
  template <class T> void do_oop_nv(T* p);
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    70
  virtual void do_oop(oop* p)          { do_oop_nv(p); }
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    71
  virtual void do_oop(narrowOop* p)    { do_oop_nv(p); }
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    72
};
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    73
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    74
class G1ParScanClosure : public G1ParClosureSuper {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    75
public:
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    76
  G1ParScanClosure(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state) :
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    77
    G1ParClosureSuper(g1, par_scan_state) { }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
    78
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
    79
  template <class T> void do_oop_nv(T* p);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    80
  virtual void do_oop(oop* p)          { do_oop_nv(p); }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    81
  virtual void do_oop(narrowOop* p)    { do_oop_nv(p); }
32381
b750fd963056 8040162: Avoid reallocating PLABs between GC phases in G1
tschatzl
parents: 31976
diff changeset
    82
33226
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33224
diff changeset
    83
  void set_ref_processor(ReferenceProcessor* rp) {
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33224
diff changeset
    84
    set_ref_processor_internal(rp);
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33224
diff changeset
    85
  }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    86
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    87
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
    88
// Add back base class for metadata
35067
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
    89
class G1ParCopyHelper : public OopClosure {
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
    90
protected:
35067
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
    91
  G1CollectedHeap* _g1;
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
    92
  G1ParScanThreadState* _par_scan_state;
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    93
  uint _worker_id;              // Cache value from par_scan_state.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
    94
  Klass* _scanned_klass;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
    95
  G1ConcurrentMark* _cm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
    96
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
    97
  // Mark the object if it's not already marked. This is used to mark
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
    98
  // objects pointed to by roots that are guaranteed not to move
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
    99
  // during the GC (i.e., non-CSet objects). It is MT-safe.
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   100
  inline void mark_object(oop obj);
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
   101
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
   102
  // Mark the object if it's not already marked. This is used to mark
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
   103
  // objects pointed to by roots that have been forwarded during a
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
   104
  // GC. It is MT-safe.
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   105
  inline void mark_forwarded_object(oop from_obj, oop to_obj);
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
   106
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
   107
  G1ParCopyHelper(G1CollectedHeap* g1,  G1ParScanThreadState* par_scan_state);
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
   108
  ~G1ParCopyHelper() { }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   109
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
   110
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   111
  void set_scanned_klass(Klass* k) { _scanned_klass = k; }
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   112
  template <class T> inline void do_klass_barrier(T* p, oop new_obj);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   113
};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   114
29688
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   115
enum G1Barrier {
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   116
  G1BarrierNone,
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   117
  G1BarrierKlass
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   118
};
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   119
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   120
enum G1Mark {
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   121
  G1MarkNone,
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   122
  G1MarkFromRoot,
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   123
  G1MarkPromotedFromRoot
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   124
};
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   125
35051
002d874a4284 8144714: Add extension point to G1 evacuation closures
mgerdin
parents: 34245
diff changeset
   126
template <G1Barrier barrier, G1Mark do_mark_object, bool use_ext>
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   127
class G1ParCopyClosure : public G1ParCopyHelper {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   128
public:
32592
d066afd32088 8134509: G1ParCopyClosure does not need a ReferenceProcessor
ehelin
parents: 32381
diff changeset
   129
  G1ParCopyClosure(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state) :
35067
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
   130
      G1ParCopyHelper(g1, par_scan_state) { }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
   131
35067
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
   132
  template <class T> void do_oop_work(T* p);
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
   133
  virtual void do_oop(oop* p)       { do_oop_work(p); }
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
   134
  virtual void do_oop(narrowOop* p) { do_oop_work(p); }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   135
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   136
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   137
class G1KlassScanClosure : public KlassClosure {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   138
 G1ParCopyHelper* _closure;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   139
 bool             _process_only_dirty;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   140
 int              _count;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   141
 public:
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   142
  G1KlassScanClosure(G1ParCopyHelper* closure, bool process_only_dirty)
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   143
      : _process_only_dirty(process_only_dirty), _closure(closure), _count(0) {}
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   144
  void do_klass(Klass* klass);
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   145
};
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
   146
35068
b0d5016aecc7 8144584: Change FilterIntoCSClosure to inherit OopClosure
sjohanss
parents: 35067
diff changeset
   147
class FilterIntoCSClosure: public OopClosure {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   148
  G1CollectedHeap* _g1;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   149
  OopClosure* _oc;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   150
public:
35068
b0d5016aecc7 8144584: Change FilterIntoCSClosure to inherit OopClosure
sjohanss
parents: 35067
diff changeset
   151
  FilterIntoCSClosure(G1CollectedHeap* g1, OopClosure* oc) : _g1(g1), _oc(oc) { }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
   152
35068
b0d5016aecc7 8144584: Change FilterIntoCSClosure to inherit OopClosure
sjohanss
parents: 35067
diff changeset
   153
  template <class T> void do_oop_work(T* p);
b0d5016aecc7 8144584: Change FilterIntoCSClosure to inherit OopClosure
sjohanss
parents: 35067
diff changeset
   154
  virtual void do_oop(oop* p)        { do_oop_work(p); }
b0d5016aecc7 8144584: Change FilterIntoCSClosure to inherit OopClosure
sjohanss
parents: 35067
diff changeset
   155
  virtual void do_oop(narrowOop* p)  { do_oop_work(p); }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   156
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   157
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   158
class FilterOutOfRegionClosure: public ExtendedOopClosure {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   159
  HeapWord* _r_bottom;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   160
  HeapWord* _r_end;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   161
  OopClosure* _oc;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   162
public:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   163
  FilterOutOfRegionClosure(HeapRegion* r, OopClosure* oc);
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   164
  template <class T> void do_oop_nv(T* p);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   165
  virtual void do_oop(oop* p) { do_oop_nv(p); }
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   166
  virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   167
  bool apply_to_weak_ref_discovered_field() { return true; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   168
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6958
diff changeset
   169
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   170
// Closure for iterating over object fields during concurrent marking
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   171
class G1CMOopClosure : public MetadataAwareOopClosure {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   172
protected:
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
   173
  G1ConcurrentMark*  _cm;
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   174
private:
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   175
  G1CollectedHeap*   _g1h;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
   176
  G1CMTask*          _task;
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   177
public:
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
   178
  G1CMOopClosure(G1CollectedHeap* g1h, G1ConcurrentMark* cm, G1CMTask* task);
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   179
  template <class T> void do_oop_nv(T* p);
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   180
  virtual void do_oop(      oop* p) { do_oop_nv(p); }
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   181
  virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   182
};
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   183
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   184
// Closure to scan the root regions during concurrent marking
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   185
class G1RootRegionScanClosure : public MetadataAwareOopClosure {
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   186
private:
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   187
  G1CollectedHeap* _g1h;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
   188
  G1ConcurrentMark* _cm;
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   189
  uint _worker_id;
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   190
public:
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
   191
  G1RootRegionScanClosure(G1CollectedHeap* g1h, G1ConcurrentMark* cm,
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   192
                          uint worker_id) :
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   193
    _g1h(g1h), _cm(cm), _worker_id(worker_id) { }
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   194
  template <class T> void do_oop_nv(T* p);
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   195
  virtual void do_oop(      oop* p) { do_oop_nv(p); }
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   196
  virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   197
};
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   198
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   199
// Closure that applies the given two closures in sequence.
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   200
// Used by the RSet refinement code (when updating RSets
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   201
// during an evacuation pause) to record cards containing
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   202
// pointers into the collection set.
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   203
35069
24d8a63c9486 8144701: Change three G1 remembererd set closures to be OopClosures
sjohanss
parents: 35068
diff changeset
   204
class G1Mux2Closure : public OopClosure {
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   205
  OopClosure* _c1;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   206
  OopClosure* _c2;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   207
public:
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   208
  G1Mux2Closure(OopClosure *c1, OopClosure *c2);
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   209
  template <class T> inline void do_oop_work(T* p);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   210
  virtual inline void do_oop(oop* p);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   211
  virtual inline void do_oop(narrowOop* p);
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   212
};
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   213
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   214
// A closure that returns true if it is actually applied
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   215
// to a reference
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   216
35069
24d8a63c9486 8144701: Change three G1 remembererd set closures to be OopClosures
sjohanss
parents: 35068
diff changeset
   217
class G1TriggerClosure : public OopClosure {
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   218
  bool _triggered;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   219
public:
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   220
  G1TriggerClosure();
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   221
  bool triggered() const { return _triggered; }
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   222
  template <class T> inline void do_oop_work(T* p);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   223
  virtual inline void do_oop(oop* p);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   224
  virtual inline void do_oop(narrowOop* p);
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   225
};
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   226
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   227
// A closure which uses a triggering closure to determine
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   228
// whether to apply an oop closure.
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   229
35069
24d8a63c9486 8144701: Change three G1 remembererd set closures to be OopClosures
sjohanss
parents: 35068
diff changeset
   230
class G1InvokeIfNotTriggeredClosure: public OopClosure {
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   231
  G1TriggerClosure* _trigger_cl;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   232
  OopClosure* _oop_cl;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   233
public:
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   234
  G1InvokeIfNotTriggeredClosure(G1TriggerClosure* t, OopClosure* oc);
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   235
  template <class T> inline void do_oop_work(T* p);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   236
  virtual inline void do_oop(oop* p);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   237
  virtual inline void do_oop(narrowOop* p);
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   238
};
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   239
35062
f3e0dee91918 8144486: Change G1UpdateRSOrPushRefOopClosure to inherit OopClosure
sjohanss
parents: 35051
diff changeset
   240
class G1UpdateRSOrPushRefOopClosure: public OopClosure {
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   241
  G1CollectedHeap* _g1;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   242
  G1RemSet* _g1_rem_set;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   243
  HeapRegion* _from;
28207
6ad23566cbef 8067655: Clean up G1 remembered set oop iteration
mgerdin
parents: 25492
diff changeset
   244
  G1ParPushHeapRSClosure* _push_ref_cl;
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   245
  bool _record_refs_into_cset;
23855
c4574075402c 8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents: 23457
diff changeset
   246
  uint _worker_i;
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   247
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   248
public:
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   249
  G1UpdateRSOrPushRefOopClosure(G1CollectedHeap* g1h,
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   250
                                G1RemSet* rs,
28207
6ad23566cbef 8067655: Clean up G1 remembered set oop iteration
mgerdin
parents: 25492
diff changeset
   251
                                G1ParPushHeapRSClosure* push_ref_cl,
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   252
                                bool record_refs_into_cset,
23855
c4574075402c 8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents: 23457
diff changeset
   253
                                uint worker_i = 0);
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   254
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   255
  void set_from(HeapRegion* from) {
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   256
    assert(from != NULL, "from region must be non-NULL");
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   257
    _from = from;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   258
  }
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   259
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   260
  bool self_forwarded(oop obj) {
28213
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents: 28207
diff changeset
   261
    markOop m = obj->mark();
b0bf57cd1e9d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents: 28207
diff changeset
   262
    bool result = (m->is_marked() && ((oop)m->decode_pointer() == obj));
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   263
    return result;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   264
  }
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   265
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   266
  template <class T> inline void do_oop_work(T* p);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   267
  virtual inline void do_oop(narrowOop* p);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35069
diff changeset
   268
  virtual inline void do_oop(oop* p);
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   269
};
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   270
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29688
diff changeset
   271
#endif // SHARE_VM_GC_G1_G1OOPCLOSURES_HPP