src/hotspot/share/gc/g1/g1OopClosures.cpp
author sjohanss
Tue, 14 Nov 2017 11:33:23 +0100
changeset 47885 5caa1d5f74c1
parent 47580 96392e113a0a
child 49806 2d62570a615c
permissions -rw-r--r--
8186571: Implementation: JEP 307: Parallel Full GC for G1 Summary: Improve G1 worst-case latencies by making the full GC parallel. Reviewed-by: tschatzl, sangheki, ehelin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     1
/*
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
     2
 * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     4
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     7
 * published by the Free Software Foundation.
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     8
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    13
 * accompanied this code).
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    14
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    18
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    21
 * questions.
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    22
 *
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    23
 */
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    24
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    25
#include "precompiled.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
    26
#include "gc/g1/g1CollectedHeap.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
    27
#include "gc/g1/g1OopClosures.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
    28
#include "gc/g1/g1ParScanThreadState.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
    29
#include "gc/g1/g1_specialized_oop_closures.hpp"
30150
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    30
#include "memory/iterator.inline.hpp"
30175
543725014c9d 8076457: Fix includes of inline.hpp in GC code
stefank
parents: 30150
diff changeset
    31
#include "utilities/stack.inline.hpp"
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    32
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents:
diff changeset
    33
G1ParCopyHelper::G1ParCopyHelper(G1CollectedHeap* g1,  G1ParScanThreadState* par_scan_state) :
35067
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 33224
diff changeset
    34
  _g1(g1),
0fa08ea22241 8144505: Change G1ParCopyHelper to inherit OopClosure
sjohanss
parents: 33224
diff changeset
    35
  _par_scan_state(par_scan_state),
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    36
  _worker_id(par_scan_state->worker_id()),
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    37
  _scanned_cld(NULL),
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    38
  _cm(_g1->concurrent_mark())
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    39
{ }
25484
2cd3aff61672 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 25482
diff changeset
    40
46572
fef0d64b2263 8175554: Improve G1UpdateRSOrPushRefClosure
tschatzl
parents: 35067
diff changeset
    41
G1ScanClosureBase::G1ScanClosureBase(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state) :
46590
cd27cb97655c 8183124: Remove OopsInHeapRegionClosure
ehelin
parents: 46572
diff changeset
    42
  _g1(g1), _par_scan_state(par_scan_state), _from(NULL)
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    43
{ }
30150
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    44
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    45
void G1CLDScanClosure::do_cld(ClassLoaderData* cld) {
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    46
  // If the class loader data has not been dirtied we know that there's
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    47
  // no references into  the young gen and we can skip it.
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    48
  if (!_process_only_dirty || cld->has_modified_oops()) {
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    49
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    50
    // Tell the closure that this class loader data is the CLD to scavenge
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    51
    // and is the one to dirty if oops are left pointing into the young gen.
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    52
    _closure->set_scanned_cld(cld);
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    53
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    54
    // Clean the cld since we're going to scavenge all the metadata.
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    55
    // Clear modified oops only if this cld is claimed.
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    56
    cld->oops_do(_closure, _must_claim, /*clear_modified_oops*/true);
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    57
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    58
    _closure->set_scanned_cld(NULL);
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    59
  }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    60
  _count++;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    61
}
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    62
30150
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    63
// Generate G1 specialized oop_oop_iterate functions.
d9c940aa42ef 8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents: 25484
diff changeset
    64
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(ALL_KLASS_OOP_OOP_ITERATE_DEFN)