src/hotspot/share/gc/g1/g1RootClosures.cpp
author tschatzl
Mon, 23 Sep 2019 11:36:53 +0200
changeset 58262 001153ffc143
parent 52141 de6dc206a92b
child 58263 4fbc534fdf69
permissions -rw-r--r--
8231117: Remove G1EvacuationRootClosures::raw_strong_oops() Reviewed-by: kbarrett, sjohanss
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) :
52141
de6dc206a92b 8210330: Make CLD claiming allow multiple claim bits
eosterlund
parents: 49911
diff changeset
    38
      _closures(g1h, pss, in_young_gc, /* cld_claim */ ClassLoaderData::_claim_none) {}
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
  CLDClosure* second_pass_weak_clds() { return NULL; }
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    46
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    47
  CodeBlobClosure* strong_codeblobs()      { return &_closures._codeblobs; }
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    48
  CodeBlobClosure* weak_codeblobs()        { return &_closures._codeblobs; }
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    49
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    50
  bool trace_metadata()         { return false; }
cb73d3c05599 8144712: Remove g1RootClosures.inline.hpp
ehelin
parents: 34308
diff changeset
    51
};
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    52
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    53
// Closures used during initial mark.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    54
// The treatment of "weak" roots is selectable through the template parameter,
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    55
// 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
    56
template <G1Mark MarkWeak>
46281
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
    57
class G1InitialMarkClosures : public G1EvacuationRootClosures {
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    58
  G1SharedClosures<G1MarkFromRoot> _strong;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    59
  G1SharedClosures<MarkWeak>       _weak;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    60
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    61
  // Filter method to help with returning the appropriate closures
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    62
  // depending on the class template parameter.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    63
  template <G1Mark Mark, typename T>
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    64
  T* null_if(T* t) {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    65
    if (Mark == MarkWeak) {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    66
      return NULL;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    67
    }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    68
    return t;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    69
  }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    70
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    71
public:
46281
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
    72
  G1InitialMarkClosures(G1CollectedHeap* g1h,
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
    73
                        G1ParScanThreadState* pss) :
52141
de6dc206a92b 8210330: Make CLD claiming allow multiple claim bits
eosterlund
parents: 49911
diff changeset
    74
      _strong(g1h, pss, /* process_only_dirty_klasses */ false, /* cld_claim */ ClassLoaderData::_claim_strong),
de6dc206a92b 8210330: Make CLD claiming allow multiple claim bits
eosterlund
parents: 49911
diff changeset
    75
      _weak(g1h, pss,   /* process_only_dirty_klasses */ false, /* cld_claim */ ClassLoaderData::_claim_strong) {}
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    76
49911
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 49643
diff changeset
    77
  OopClosure* weak_oops()   { return &_weak._oops; }
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 49643
diff changeset
    78
  OopClosure* strong_oops() { return &_strong._oops; }
33213
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
  // If MarkWeak is G1MarkPromotedFromRoot then the weak CLDs must be processed in a second pass.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    81
  CLDClosure* weak_clds()             { return null_if<G1MarkPromotedFromRoot>(&_weak._clds); }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    82
  CLDClosure* strong_clds()           { return &_strong._clds; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    83
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    84
  // If MarkWeak is G1MarkFromRoot then all CLDs are processed by the weak and strong variants
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    85
  // return a NULL closure for the following specialized versions in that case.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    86
  CLDClosure* second_pass_weak_clds() { return null_if<G1MarkFromRoot>(&_weak._clds); }
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
  CodeBlobClosure* strong_codeblobs()      { return &_strong._codeblobs; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    89
  CodeBlobClosure* weak_codeblobs()        { return &_weak._codeblobs; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    90
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    91
  // 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
    92
  // which metadata is alive.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    93
  bool trace_metadata()         { return MarkWeak == G1MarkPromotedFromRoot; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    94
};
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    95
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    96
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
    97
  G1EvacuationRootClosures* res = NULL;
49643
a3453bbd5418 8199742: Clean up state flags in G1CollectorState
tschatzl
parents: 49336
diff changeset
    98
  if (g1h->collector_state()->in_initial_mark_gc()) {
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    99
    if (ClassUnloadingWithConcurrentMark) {
46281
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
   100
      res = new G1InitialMarkClosures<G1MarkPromotedFromRoot>(g1h, pss);
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
   101
    } else {
46281
758ec922d4f2 8160874: Remove typo in G1InitalMarkClosures
tschatzl
parents: 38074
diff changeset
   102
      res = new G1InitialMarkClosures<G1MarkFromRoot>(g1h, pss);
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
   103
    }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
   104
  } else {
49643
a3453bbd5418 8199742: Clean up state flags in G1CollectorState
tschatzl
parents: 49336
diff changeset
   105
    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
   106
  }
34308
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
   107
  return res;
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
   108
}