hotspot/src/share/vm/gc/g1/g1OopClosures.cpp
author tschatzl
Fri, 02 Jun 2017 13:48:01 +0200
changeset 46520 de5cb3eed39b
parent 35067 0fa08ea22241
child 46572 fef0d64b2263
permissions -rw-r--r--
8177044: Remove _scan_top from HeapRegion Summary: Remove the _scan_top member from HeapRegion using a per-gc pre-calculated table of scan limits that also subsumes other checks. Reviewed-by: sangheki, kbarrett, 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
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30175
diff changeset
     2
 * Copyright (c) 2014, 2015, 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()),
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    37
  _scanned_klass(NULL),
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
25482
b69656f26643 8035400: Move G1ParScanThreadState into its own files
tschatzl
parents: 22901
diff changeset
    41
G1ParClosureSuper::G1ParClosureSuper(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state) :
33224
bc5da96c1f0e 8139200: Eliminate G1ParClosureSuper::_worker_id
kbarrett
parents: 33213
diff changeset
    42
  _g1(g1), _par_scan_state(par_scan_state)
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
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    45
void G1KlassScanClosure::do_klass(Klass* klass) {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    46
  // If the klass has not been dirtied we know that there's
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.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    48
  if (!_process_only_dirty || klass->has_modified_oops()) {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    49
    // Clean the klass since we're going to scavenge all the metadata.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    50
    klass->clear_modified_oops();
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    51
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    52
    // Tell the closure that this klass is the Klass to scavenge
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    53
    // and is the one to dirty if oops are left pointing into the young gen.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    54
    _closure->set_scanned_klass(klass);
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    55
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    56
    klass->oops_do(_closure);
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    57
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents: 33105
diff changeset
    58
    _closure->set_scanned_klass(NULL);
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)