hotspot/src/share/vm/gc/g1/g1RootClosures.cpp
author ehelin
Wed, 25 Nov 2015 21:54:05 +0100
changeset 34308 4496e81c890d
parent 33213 b937f634f56e
child 34639 cb73d3c05599
permissions -rw-r--r--
8142494: Add extension point to G1EvacuationRootClosures Reviewed-by: jmasa, mgerdin
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
/*
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
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"
34308
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    26
#include "gc/g1/g1RootClosures.inline.hpp"
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    27
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    28
// Closures used during initial mark.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    29
// The treatment of "weak" roots is selectable through the template parameter,
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    30
// 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
    31
template <G1Mark MarkWeak>
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    32
class G1InitalMarkClosures : public G1EvacuationRootClosures {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    33
  G1SharedClosures<G1MarkFromRoot> _strong;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    34
  G1SharedClosures<MarkWeak>       _weak;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    35
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    36
  // Filter method to help with returning the appropriate closures
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    37
  // depending on the class template parameter.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    38
  template <G1Mark Mark, typename T>
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    39
  T* null_if(T* t) {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    40
    if (Mark == MarkWeak) {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    41
      return NULL;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    42
    }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    43
    return t;
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    44
  }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    45
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    46
public:
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    47
  G1InitalMarkClosures(G1CollectedHeap* g1h,
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    48
                       G1ParScanThreadState* pss) :
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    49
      _strong(g1h, pss, /* process_only_dirty_klasses */ false, /* must_claim_cld */ true),
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    50
      _weak(g1h, pss,   /* process_only_dirty_klasses */ false, /* must_claim_cld */ true) {}
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
  OopClosure* weak_oops()   { return &_weak._buffered_oops; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    53
  OopClosure* strong_oops() { return &_strong._buffered_oops; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    54
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    55
  // 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
    56
  CLDClosure* weak_clds()             { return null_if<G1MarkPromotedFromRoot>(&_weak._clds); }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    57
  CLDClosure* strong_clds()           { return &_strong._clds; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    58
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    59
  // 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
    60
  // 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
    61
  CLDClosure* thread_root_clds()      { return null_if<G1MarkFromRoot>(&_strong._clds); }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    62
  CLDClosure* second_pass_weak_clds() { return null_if<G1MarkFromRoot>(&_weak._clds); }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    63
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    64
  CodeBlobClosure* strong_codeblobs()      { return &_strong._codeblobs; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    65
  CodeBlobClosure* weak_codeblobs()        { return &_weak._codeblobs; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    66
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    67
  void flush() {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    68
    _strong._buffered_oops.done();
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    69
    _weak._buffered_oops.done();
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
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    72
  double closure_app_seconds() {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    73
    return _strong._buffered_oops.closure_app_seconds() +
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    74
           _weak._buffered_oops.closure_app_seconds();
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    75
  }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    76
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    77
  OopClosure* raw_strong_oops() { return &_strong._oops; }
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
  // 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
    80
  // which metadata is alive.
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    81
  bool trace_metadata()         { return MarkWeak == G1MarkPromotedFromRoot; }
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    82
};
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
G1EvacuationRootClosures* G1EvacuationRootClosures::create_root_closures(G1ParScanThreadState* pss, G1CollectedHeap* g1h) {
34308
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    85
  G1EvacuationRootClosures* res = create_root_closures_ext(pss, g1h);
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    86
  if (res != NULL) {
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    87
    return res;
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    88
  }
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    89
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    90
  if (g1h->collector_state()->during_initial_mark_pause()) {
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    91
    if (ClassUnloadingWithConcurrentMark) {
34308
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    92
      res = new G1InitalMarkClosures<G1MarkPromotedFromRoot>(g1h, pss);
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    93
    } else {
34308
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    94
      res = new G1InitalMarkClosures<G1MarkFromRoot>(g1h, pss);
33213
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
  } else {
34308
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    97
    res = new G1EvacuationClosures(g1h, pss, g1h->collector_state()->gcs_are_young());
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
    98
  }
34308
4496e81c890d 8142494: Add extension point to G1EvacuationRootClosures
ehelin
parents: 33213
diff changeset
    99
  return res;
33213
b937f634f56e 8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
diff changeset
   100
}