src/hotspot/share/gc/g1/g1OopClosures.hpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58264 4e96939a5746
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
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
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52897
diff changeset
     2
 * Copyright (c) 2001, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52897
diff changeset
    25
#ifndef SHARE_GC_G1_G1OOPCLOSURES_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52897
diff changeset
    26
#define SHARE_GC_G1_G1OOPCLOSURES_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6958
diff changeset
    27
54843
25c329958c70 8200545: Improve filter for enqueued deferred cards
tschatzl
parents: 53244
diff changeset
    28
#include "gc/g1/g1HeapRegionAttr.hpp"
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    29
#include "memory/iterator.hpp"
57811
947252a54b98 8229838: Rename markOop files to markWord
stefank
parents: 54934
diff changeset
    30
#include "oops/markWord.hpp"
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    31
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    32
class HeapRegion;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    33
class G1CollectedHeap;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    34
class G1RemSet;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
    35
class G1ConcurrentMark;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    36
class DirtyCardToOopClosure;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
    37
class G1CMBitMap;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    38
class G1ParScanThreadState;
52349
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    39
class G1ScanEvacuatedObjClosure;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
    40
class G1CMTask;
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
    41
class ReferenceProcessor;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    42
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
    43
class G1ScanClosureBase : public BasicOopIterateClosure {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    44
protected:
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
    45
  G1CollectedHeap* _g1h;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    46
  G1ParScanThreadState* _par_scan_state;
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    47
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
    48
  G1ScanClosureBase(G1CollectedHeap* g1h, G1ParScanThreadState* par_scan_state);
46572
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    49
  ~G1ScanClosureBase() { }
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    50
46572
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    51
  template <class T>
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    52
  inline void prefetch_and_push(T* p, oop const obj);
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    53
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    54
  template <class T>
54843
25c329958c70 8200545: Improve filter for enqueued deferred cards
tschatzl
parents: 53244
diff changeset
    55
  inline void handle_non_cset_obj_common(G1HeapRegionAttr const region_attr, T* p, oop const obj);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    56
public:
51708
469ab7c92a32 8209843: Optimize oop scan closure closures wrt to reference processing in G1
tschatzl
parents: 51332
diff changeset
    57
  virtual ReferenceIterationMode reference_iteration_mode() { return DO_FIELDS; }
469ab7c92a32 8209843: Optimize oop scan closure closures wrt to reference processing in G1
tschatzl
parents: 51332
diff changeset
    58
49911
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 49827
diff changeset
    59
  inline void trim_queue_partially();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    60
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    61
54843
25c329958c70 8200545: Improve filter for enqueued deferred cards
tschatzl
parents: 53244
diff changeset
    62
// Used to scan cards from the DCQS or the remembered sets during garbage collection.
25c329958c70 8200545: Improve filter for enqueued deferred cards
tschatzl
parents: 53244
diff changeset
    63
class G1ScanCardClosure : public G1ScanClosureBase {
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    64
public:
54843
25c329958c70 8200545: Improve filter for enqueued deferred cards
tschatzl
parents: 53244
diff changeset
    65
  G1ScanCardClosure(G1CollectedHeap* g1h,
25c329958c70 8200545: Improve filter for enqueued deferred cards
tschatzl
parents: 53244
diff changeset
    66
                    G1ParScanThreadState* pss) :
52348
21fdf8d9a8b6 8212911: Unify and micro-optimize handling of non-in-collection set references in oop closures
tschatzl
parents: 52141
diff changeset
    67
    G1ScanClosureBase(g1h, pss) { }
46572
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    68
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
    69
  template <class T> void do_oop_work(T* p);
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
    70
  virtual void do_oop(narrowOop* p) { do_oop_work(p); }
52348
21fdf8d9a8b6 8212911: Unify and micro-optimize handling of non-in-collection set references in oop closures
tschatzl
parents: 52141
diff changeset
    71
  virtual void do_oop(oop* p)       { do_oop_work(p); }
46572
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    72
};
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    73
52897
495c05ee2a9a 8213890: Implementation of JEP 344: Abortable Mixed Collections for G1
sjohanss
parents: 52875
diff changeset
    74
// Used during Optional RS scanning to make sure we trim the queues in a timely manner.
495c05ee2a9a 8213890: Implementation of JEP 344: Abortable Mixed Collections for G1
sjohanss
parents: 52875
diff changeset
    75
class G1ScanRSForOptionalClosure : public OopClosure {
54934
39814e0a8964 8222492: G1 unnecessarily scans remembered set cards for regions that already have been evacuated
tschatzl
parents: 54843
diff changeset
    76
  G1CollectedHeap* _g1h;
54843
25c329958c70 8200545: Improve filter for enqueued deferred cards
tschatzl
parents: 53244
diff changeset
    77
  G1ScanCardClosure* _scan_cl;
52897
495c05ee2a9a 8213890: Implementation of JEP 344: Abortable Mixed Collections for G1
sjohanss
parents: 52875
diff changeset
    78
public:
54934
39814e0a8964 8222492: G1 unnecessarily scans remembered set cards for regions that already have been evacuated
tschatzl
parents: 54843
diff changeset
    79
  G1ScanRSForOptionalClosure(G1CollectedHeap* g1h, G1ScanCardClosure* cl) : _g1h(g1h), _scan_cl(cl) { }
52897
495c05ee2a9a 8213890: Implementation of JEP 344: Abortable Mixed Collections for G1
sjohanss
parents: 52875
diff changeset
    80
495c05ee2a9a 8213890: Implementation of JEP 344: Abortable Mixed Collections for G1
sjohanss
parents: 52875
diff changeset
    81
  template <class T> void do_oop_work(T* p);
495c05ee2a9a 8213890: Implementation of JEP 344: Abortable Mixed Collections for G1
sjohanss
parents: 52875
diff changeset
    82
  virtual void do_oop(oop* p)          { do_oop_work(p); }
495c05ee2a9a 8213890: Implementation of JEP 344: Abortable Mixed Collections for G1
sjohanss
parents: 52875
diff changeset
    83
  virtual void do_oop(narrowOop* p)    { do_oop_work(p); }
495c05ee2a9a 8213890: Implementation of JEP 344: Abortable Mixed Collections for G1
sjohanss
parents: 52875
diff changeset
    84
};
52349
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    85
46572
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    86
// This closure is applied to the fields of the objects that have just been copied during evacuation.
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 46519
diff changeset
    87
class G1ScanEvacuatedObjClosure : public G1ScanClosureBase {
52349
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    88
  friend class G1ScanInYoungSetter;
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    89
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    90
  enum ScanningInYoungValues {
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    91
    False = 0,
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    92
    True,
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    93
    Uninitialized
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    94
  };
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    95
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
    96
  ScanningInYoungValues _scanning_in_young;
52348
21fdf8d9a8b6 8212911: Unify and micro-optimize handling of non-in-collection set references in oop closures
tschatzl
parents: 52141
diff changeset
    97
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    98
public:
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
    99
  G1ScanEvacuatedObjClosure(G1CollectedHeap* g1h, G1ParScanThreadState* par_scan_state) :
52349
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   100
    G1ScanClosureBase(g1h, par_scan_state), _scanning_in_young(Uninitialized) { }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
   101
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   102
  template <class T> void do_oop_work(T* p);
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   103
  virtual void do_oop(oop* p)          { do_oop_work(p); }
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   104
  virtual void do_oop(narrowOop* p)    { do_oop_work(p); }
32381
b750fd963056 8040162: Avoid reallocating PLABs between GC phases in G1
tschatzl
parents: 31976
diff changeset
   105
51708
469ab7c92a32 8209843: Optimize oop scan closure closures wrt to reference processing in G1
tschatzl
parents: 51332
diff changeset
   106
  // We need to do reference discovery while processing evacuated objects.
469ab7c92a32 8209843: Optimize oop scan closure closures wrt to reference processing in G1
tschatzl
parents: 51332
diff changeset
   107
  virtual ReferenceIterationMode reference_iteration_mode() { return DO_DISCOVERED_AND_DISCOVERY; }
469ab7c92a32 8209843: Optimize oop scan closure closures wrt to reference processing in G1
tschatzl
parents: 51332
diff changeset
   108
49827
a4672513d6e3 8201646: Introduce ReferenceDiscoverer interface
pliden
parents: 49806
diff changeset
   109
  void set_ref_discoverer(ReferenceDiscoverer* rd) {
a4672513d6e3 8201646: Introduce ReferenceDiscoverer interface
pliden
parents: 49806
diff changeset
   110
    set_ref_discoverer_internal(rd);
33226
19cb9b844190 8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents: 33224
diff changeset
   111
  }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   112
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   113
52349
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   114
// RAII object to properly set the _scanning_in_young field in G1ScanEvacuatedObjClosure.
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   115
class G1ScanInYoungSetter : public StackObj {
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   116
  G1ScanEvacuatedObjClosure* _closure;
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   117
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   118
public:
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   119
  G1ScanInYoungSetter(G1ScanEvacuatedObjClosure* closure, bool new_value) : _closure(closure) {
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   120
    assert(_closure->_scanning_in_young == G1ScanEvacuatedObjClosure::Uninitialized, "Must not be set");
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   121
    _closure->_scanning_in_young = new_value ? G1ScanEvacuatedObjClosure::True : G1ScanEvacuatedObjClosure::False;
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   122
  }
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   123
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   124
  ~G1ScanInYoungSetter() {
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   125
    DEBUG_ONLY(_closure->_scanning_in_young = G1ScanEvacuatedObjClosure::Uninitialized;)
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   126
  }
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   127
};
f34a2e0069c7 8213142: Use RAII to set the scanning source in G1ScanEvacuatedObjClosure
tschatzl
parents: 52348
diff changeset
   128
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   129
// Add back base class for metadata
35067
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
   130
class G1ParCopyHelper : public OopClosure {
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
   131
protected:
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
   132
  G1CollectedHeap* _g1h;
35067
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
   133
  G1ParScanThreadState* _par_scan_state;
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
   134
  uint _worker_id;              // Cache value from par_scan_state.
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   135
  ClassLoaderData* _scanned_cld;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
   136
  G1ConcurrentMark* _cm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   137
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
   138
  // 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
   139
  // 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
   140
  // 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
   141
  inline void mark_object(oop obj);
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22761
diff changeset
   142
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
   143
  G1ParCopyHelper(G1CollectedHeap* g1h,  G1ParScanThreadState* par_scan_state);
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
   144
  ~G1ParCopyHelper() { }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   145
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
   146
 public:
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   147
  void set_scanned_cld(ClassLoaderData* cld) { _scanned_cld = cld; }
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   148
  inline void do_cld_barrier(oop new_obj);
49911
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 49827
diff changeset
   149
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 49827
diff changeset
   150
  inline void trim_queue_partially();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   151
};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   152
29688
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   153
enum G1Barrier {
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   154
  G1BarrierNone,
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   155
  G1BarrierCLD
29688
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   156
};
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   157
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   158
enum G1Mark {
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   159
  G1MarkNone,
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   160
  G1MarkFromRoot,
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   161
  G1MarkPromotedFromRoot
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   162
};
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 28213
diff changeset
   163
49337
e4fdca451542 8197847: Remove unused file g1ParScanThreadState_ext.cpp
ehelin
parents: 47580
diff changeset
   164
template <G1Barrier barrier, G1Mark do_mark_object>
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13336
diff changeset
   165
class G1ParCopyClosure : public G1ParCopyHelper {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   166
public:
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
   167
  G1ParCopyClosure(G1CollectedHeap* g1h, G1ParScanThreadState* par_scan_state) :
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
   168
      G1ParCopyHelper(g1h, par_scan_state) { }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
   169
35067
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
   170
  template <class T> void do_oop_work(T* p);
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
   171
  virtual void do_oop(oop* p)       { do_oop_work(p); }
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 35062
diff changeset
   172
  virtual void do_oop(narrowOop* p) { do_oop_work(p); }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   173
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   174
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   175
class G1CLDScanClosure : public CLDClosure {
49644
50a01910e00a 8151171: Bring g1ConcurrentMark files up to current coding conventions
tschatzl
parents: 49607
diff changeset
   176
  G1ParCopyHelper* _closure;
50a01910e00a 8151171: Bring g1ConcurrentMark files up to current coding conventions
tschatzl
parents: 49607
diff changeset
   177
  bool             _process_only_dirty;
50a01910e00a 8151171: Bring g1ConcurrentMark files up to current coding conventions
tschatzl
parents: 49607
diff changeset
   178
  int              _count;
50a01910e00a 8151171: Bring g1ConcurrentMark files up to current coding conventions
tschatzl
parents: 49607
diff changeset
   179
public:
58263
4fbc534fdf69 8159984: Remove call to ClassLoaderDataGraph::clear_claimed_marks during the initial mark pause
tschatzl
parents: 57811
diff changeset
   180
  G1CLDScanClosure(G1ParCopyHelper* closure, bool process_only_dirty)
4fbc534fdf69 8159984: Remove call to ClassLoaderDataGraph::clear_claimed_marks during the initial mark pause
tschatzl
parents: 57811
diff changeset
   181
  : _closure(closure), _process_only_dirty(process_only_dirty), _count(0) {}
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   182
  void do_cld(ClassLoaderData* cld);
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 32592
diff changeset
   183
};
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10664
diff changeset
   184
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   185
// Closure for iterating over object fields during concurrent marking
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   186
class G1CMOopClosure : public MetadataVisitingOopIterateClosure {
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
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
  G1CMTask*          _task;
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   189
public:
49644
50a01910e00a 8151171: Bring g1ConcurrentMark files up to current coding conventions
tschatzl
parents: 49607
diff changeset
   190
  G1CMOopClosure(G1CollectedHeap* g1h,G1CMTask* task);
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   191
  template <class T> void do_oop_work(T* p);
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   192
  virtual void do_oop(      oop* p) { do_oop_work(p); }
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   193
  virtual void do_oop(narrowOop* p) { do_oop_work(p); }
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   194
};
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   195
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   196
// Closure to scan the root regions during concurrent marking
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   197
class G1RootRegionScanClosure : public MetadataVisitingOopIterateClosure {
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   198
private:
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   199
  G1CollectedHeap* _g1h;
35943
e726308008c0 8148973: Rename g1/concurrentMark.{hpp,cpp,inline.hpp} to g1/g1ConcurrentMark.{hpp,cpp,inline.hpp}
ehelin
parents: 35862
diff changeset
   200
  G1ConcurrentMark* _cm;
49606
9ae8719efcae 8197850: Calculate liveness in regions during marking
tschatzl
parents: 49337
diff changeset
   201
  uint _worker_id;
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   202
public:
49606
9ae8719efcae 8197850: Calculate liveness in regions during marking
tschatzl
parents: 49337
diff changeset
   203
  G1RootRegionScanClosure(G1CollectedHeap* g1h, G1ConcurrentMark* cm, uint worker_id) :
9ae8719efcae 8197850: Calculate liveness in regions during marking
tschatzl
parents: 49337
diff changeset
   204
    _g1h(g1h), _cm(cm), _worker_id(worker_id) { }
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   205
  template <class T> void do_oop_work(T* p);
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   206
  virtual void do_oop(      oop* p) { do_oop_work(p); }
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   207
  virtual void do_oop(narrowOop* p) { do_oop_work(p); }
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   208
};
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   209
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   210
class G1ConcurrentRefineOopClosure: public BasicOopIterateClosure {
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
   211
  G1CollectedHeap* _g1h;
58264
4e96939a5746 8231189: Rename worker_i parameters to worker_id
tschatzl
parents: 58263
diff changeset
   212
  uint _worker_id;
46519
40c9c132f961 8177707: Specialize G1RemSet::refine_card for concurrent/during safepoint refinement
tschatzl
parents: 46445
diff changeset
   213
40c9c132f961 8177707: Specialize G1RemSet::refine_card for concurrent/during safepoint refinement
tschatzl
parents: 46445
diff changeset
   214
public:
58264
4e96939a5746 8231189: Rename worker_i parameters to worker_id
tschatzl
parents: 58263
diff changeset
   215
  G1ConcurrentRefineOopClosure(G1CollectedHeap* g1h, uint worker_id) :
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
   216
    _g1h(g1h),
58264
4e96939a5746 8231189: Rename worker_i parameters to worker_id
tschatzl
parents: 58263
diff changeset
   217
    _worker_id(worker_id) {
46519
40c9c132f961 8177707: Specialize G1RemSet::refine_card for concurrent/during safepoint refinement
tschatzl
parents: 46445
diff changeset
   218
  }
40c9c132f961 8177707: Specialize G1RemSet::refine_card for concurrent/during safepoint refinement
tschatzl
parents: 46445
diff changeset
   219
51708
469ab7c92a32 8209843: Optimize oop scan closure closures wrt to reference processing in G1
tschatzl
parents: 51332
diff changeset
   220
  virtual ReferenceIterationMode reference_iteration_mode() { return DO_FIELDS; }
46519
40c9c132f961 8177707: Specialize G1RemSet::refine_card for concurrent/during safepoint refinement
tschatzl
parents: 46445
diff changeset
   221
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   222
  template <class T> void do_oop_work(T* p);
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   223
  virtual void do_oop(narrowOop* p) { do_oop_work(p); }
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   224
  virtual void do_oop(oop* p)       { do_oop_work(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
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   227
class G1RebuildRemSetClosure : public BasicOopIterateClosure {
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
   228
  G1CollectedHeap* _g1h;
49607
acffe6ff3ae7 8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents: 49606
diff changeset
   229
  uint _worker_id;
acffe6ff3ae7 8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents: 49606
diff changeset
   230
public:
49806
2d62570a615c 8200426: Make G1 code use _g1h members
tschatzl
parents: 49644
diff changeset
   231
  G1RebuildRemSetClosure(G1CollectedHeap* g1h, uint worker_id) : _g1h(g1h), _worker_id(worker_id) {
49607
acffe6ff3ae7 8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents: 49606
diff changeset
   232
  }
acffe6ff3ae7 8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents: 49606
diff changeset
   233
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   234
  template <class T> void do_oop_work(T* p);
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   235
  virtual void do_oop(oop* p)       { do_oop_work(p); }
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 49911
diff changeset
   236
  virtual void do_oop(narrowOop* p) { do_oop_work(p); }
51708
469ab7c92a32 8209843: Optimize oop scan closure closures wrt to reference processing in G1
tschatzl
parents: 51332
diff changeset
   237
469ab7c92a32 8209843: Optimize oop scan closure closures wrt to reference processing in G1
tschatzl
parents: 51332
diff changeset
   238
  virtual ReferenceIterationMode reference_iteration_mode() { return DO_FIELDS; }
49607
acffe6ff3ae7 8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents: 49606
diff changeset
   239
};
acffe6ff3ae7 8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents: 49606
diff changeset
   240
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52897
diff changeset
   241
#endif // SHARE_GC_G1_G1OOPCLOSURES_HPP