src/hotspot/share/gc/g1/g1RootClosures.cpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58263 4fbc534fdf69
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
     1
/*
49643
a3453bbd5418 8199742: Clean up state flags in G1CollectorState
tschatzl
parents: 49336
diff changeset
     2
 * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
     4
 *
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
     8
 *
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    13
 * accompanied this code).
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    14
 *
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    18
 *
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    21
 * questions.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    22
 *
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    23
 */
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    24
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    25
#include "precompiled.hpp"
34639
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    26
#include "gc/g1/g1OopClosures.inline.hpp"
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    27
#include "gc/g1/g1RootClosures.hpp"
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    28
#include "gc/g1/g1SharedClosures.hpp"
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    29
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    30
// Closures used for standard G1 evacuation.
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    31
class G1EvacuationClosures : public G1EvacuationRootClosures {
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    32
  G1SharedClosures<G1MarkNone> _closures;
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    33
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    34
public:
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    35
  G1EvacuationClosures(G1CollectedHeap* g1h,
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    36
                       G1ParScanThreadState* pss,
49643
a3453bbd5418 8199742: Clean up state flags in G1CollectorState
tschatzl
parents: 49336
diff changeset
    37
                       bool in_young_gc) :
58263
4fbc534fdf69 8159984: Remove call to ClassLoaderDataGraph::clear_claimed_marks during the initial mark pause
tschatzl
parents: 58262
diff changeset
    38
      _closures(g1h, pss, in_young_gc) {}
34639
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    39
49911
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 49643
diff changeset
    40
  OopClosure* weak_oops()   { return &_closures._oops; }
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 49643
diff changeset
    41
  OopClosure* strong_oops() { return &_closures._oops; }
34639
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    42
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    43
  CLDClosure* weak_clds()             { return &_closures._clds; }
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    44
  CLDClosure* strong_clds()           { return &_closures._clds; }
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    45
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    46
  CodeBlobClosure* strong_codeblobs()      { return &_closures._codeblobs; }
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    47
  CodeBlobClosure* weak_codeblobs()        { return &_closures._codeblobs; }
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    48
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    49
  bool trace_metadata()         { return false; }
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    50
};
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    51
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    52
// Closures used during initial mark.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    53
// The treatment of "weak" roots is selectable through the template parameter,
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    54
// this is usually used to control unloading of classes and interned strings.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    55
template <G1Mark MarkWeak>
46281
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
    56
class G1InitialMarkClosures : public G1EvacuationRootClosures {
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    57
  G1SharedClosures<G1MarkFromRoot> _strong;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    58
  G1SharedClosures<MarkWeak>       _weak;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    59
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    60
public:
46281
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
    61
  G1InitialMarkClosures(G1CollectedHeap* g1h,
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
    62
                        G1ParScanThreadState* pss) :
58263
4fbc534fdf69 8159984: Remove call to ClassLoaderDataGraph::clear_claimed_marks during the initial mark pause
tschatzl
parents: 58262
diff changeset
    63
      _strong(g1h, pss, /* process_only_dirty_klasses */ false),
4fbc534fdf69 8159984: Remove call to ClassLoaderDataGraph::clear_claimed_marks during the initial mark pause
tschatzl
parents: 58262
diff changeset
    64
      _weak(g1h, pss,   /* process_only_dirty_klasses */ false) {}
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    65
49911
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 49643
diff changeset
    66
  OopClosure* weak_oops()   { return &_weak._oops; }
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 49643
diff changeset
    67
  OopClosure* strong_oops() { return &_strong._oops; }
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    68
58263
4fbc534fdf69 8159984: Remove call to ClassLoaderDataGraph::clear_claimed_marks during the initial mark pause
tschatzl
parents: 58262
diff changeset
    69
  CLDClosure* weak_clds()             { return &_weak._clds; }
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    70
  CLDClosure* strong_clds()           { return &_strong._clds; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    71
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    72
  CodeBlobClosure* strong_codeblobs()      { return &_strong._codeblobs; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    73
  CodeBlobClosure* weak_codeblobs()        { return &_weak._codeblobs; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    74
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    75
  // If we are not marking all weak roots then we are tracing
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    76
  // which metadata is alive.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    77
  bool trace_metadata()         { return MarkWeak == G1MarkPromotedFromRoot; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    78
};
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    79
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    80
G1EvacuationRootClosures* G1EvacuationRootClosures::create_root_closures(G1ParScanThreadState* pss, G1CollectedHeap* g1h) {
49336
4b7dae855f23 8197843: Remove unused method G1EvacuationRootClosures::create_root_closures_ext
ehelin
parents: 47216
diff changeset
    81
  G1EvacuationRootClosures* res = NULL;
49643
a3453bbd5418 8199742: Clean up state flags in G1CollectorState
tschatzl
parents: 49336
diff changeset
    82
  if (g1h->collector_state()->in_initial_mark_gc()) {
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    83
    if (ClassUnloadingWithConcurrentMark) {
46281
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
    84
      res = new G1InitialMarkClosures<G1MarkPromotedFromRoot>(g1h, pss);
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    85
    } else {
46281
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
    86
      res = new G1InitialMarkClosures<G1MarkFromRoot>(g1h, pss);
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    87
    }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    88
  } else {
49643
a3453bbd5418 8199742: Clean up state flags in G1CollectorState
tschatzl
parents: 49336
diff changeset
    89
    res = new G1EvacuationClosures(g1h, pss, g1h->collector_state()->in_young_only_phase());
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    90
  }
34308
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    91
  return res;
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    92
}