src/hotspot/share/gc/shared/referenceProcessor.hpp
author tschatzl
Tue, 08 May 2018 16:49:20 +0200
changeset 50054 4fa726f796f5
parent 50049 9d17c375dc30
child 50071 758deedaae84
permissions -rw-r--r--
8202781: Fix typo in DiscoveredListIterator::complete_enqeue Reviewed-by: kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49827
a4672513d6e3 8201646: Introduce ReferenceDiscoverer interface
pliden
parents: 47648
diff changeset
     2
 * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4885
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4885
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4885
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30558
diff changeset
    25
#ifndef SHARE_VM_GC_SHARED_REFERENCEPROCESSOR_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30558
diff changeset
    26
#define SHARE_VM_GC_SHARED_REFERENCEPROCESSOR_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6769
diff changeset
    27
49827
a4672513d6e3 8201646: Introduce ReferenceDiscoverer interface
pliden
parents: 47648
diff changeset
    28
#include "gc/shared/referenceDiscoverer.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30558
diff changeset
    29
#include "gc/shared/referencePolicy.hpp"
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
    30
#include "gc/shared/referenceProcessorPhaseTimes.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30558
diff changeset
    31
#include "gc/shared/referenceProcessorStats.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13728
diff changeset
    32
#include "memory/referenceType.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6769
diff changeset
    33
#include "oops/instanceRefKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6769
diff changeset
    34
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13728
diff changeset
    35
class GCTimer;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13728
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// ReferenceProcessor class encapsulates the per-"collector" processing
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
    38
// of java.lang.Reference objects for GC. The interface is useful for supporting
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// a generational abstraction, in particular when there are multiple
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// generations that are being independently collected -- possibly
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
    41
// concurrently and/or incrementally.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// ReferenceProcessor class abstracts away from a generational setting
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
    43
// by using a closure that determines whether a given reference or referent are
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
    44
// subject to this ReferenceProcessor's discovery, thus allowing its use in a
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
    45
// straightforward manner in a general, non-generational, non-contiguous generation
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
    46
// (or heap) setting.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// forward references
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
class ReferencePolicy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class AbstractRefProcTaskExecutor;
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    52
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    53
// List of discovered references.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    54
class DiscoveredList {
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    55
public:
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    56
  DiscoveredList() : _len(0), _compressed_head(0), _oop_head(NULL) { }
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35475
diff changeset
    57
  inline oop head() const;
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    58
  HeapWord* adr_head() {
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    59
    return UseCompressedOops ? (HeapWord*)&_compressed_head :
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    60
                               (HeapWord*)&_oop_head;
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    61
  }
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35475
diff changeset
    62
  inline void set_head(oop o);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35475
diff changeset
    63
  inline bool is_empty() const;
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    64
  size_t length()               { return _len; }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    65
  void   set_length(size_t len) { _len = len;  }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    66
  void   inc_length(size_t inc) { _len += inc; assert(_len > 0, "Error"); }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    67
  void   dec_length(size_t dec) { _len -= dec; }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    68
private:
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    69
  // Set value depending on UseCompressedOops. This could be a template class
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    70
  // but then we have to fix all the instantiations and declarations that use this class.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    71
  oop       _oop_head;
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    72
  narrowOop _compressed_head;
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    73
  size_t _len;
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    74
};
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    75
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    76
// Iterator for the list of discovered references.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    77
class DiscoveredListIterator {
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    78
private:
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    79
  DiscoveredList&    _refs_list;
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
    80
  HeapWord*          _prev_discovered_addr;
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
    81
  oop                _prev_discovered;
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
    82
  oop                _current_discovered;
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
    83
  HeapWord*          _current_discovered_addr;
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
    84
  oop                _next_discovered;
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
    85
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    86
  HeapWord*          _referent_addr;
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    87
  oop                _referent;
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
    88
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    89
  OopClosure*        _keep_alive;
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    90
  BoolObjectClosure* _is_alive;
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    91
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    92
  DEBUG_ONLY(
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    93
  oop                _first_seen; // cyclic linked list check
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    94
  )
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    95
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    96
  NOT_PRODUCT(
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    97
  size_t             _processed;
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    98
  size_t             _removed;
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
    99
  )
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   100
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   101
public:
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   102
  inline DiscoveredListIterator(DiscoveredList&    refs_list,
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   103
                                OopClosure*        keep_alive,
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35475
diff changeset
   104
                                BoolObjectClosure* is_alive);
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   105
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   106
  // End Of List.
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   107
  inline bool has_next() const { return _current_discovered != NULL; }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   108
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   109
  // Get oop to the Reference object.
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   110
  inline oop obj() const { return _current_discovered; }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   111
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   112
  // Get oop to the referent object.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   113
  inline oop referent() const { return _referent; }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   114
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   115
  // Returns true if referent is alive.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   116
  inline bool is_referent_alive() const {
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   117
    return _is_alive->do_object_b(_referent);
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   118
  }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   119
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   120
  // Loads data for the current reference.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   121
  // The "allow_null_referent" argument tells us to allow for the possibility
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   122
  // of a NULL referent in the discovered Reference object. This typically
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   123
  // happens in the case of concurrent collectors that may have done the
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   124
  // discovery concurrently, or interleaved, with mutator execution.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   125
  void load_ptrs(DEBUG_ONLY(bool allow_null_referent));
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   126
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   127
  // Move to the next discovered reference.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   128
  inline void next() {
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   129
    _prev_discovered_addr = _current_discovered_addr;
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   130
    _prev_discovered = _current_discovered;
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   131
    move_to_next();
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   132
  }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   133
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   134
  // Remove the current reference from the list
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   135
  void remove();
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   136
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   137
  // Make the referent alive.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   138
  inline void make_referent_alive() {
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   139
    if (UseCompressedOops) {
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   140
      _keep_alive->do_oop((narrowOop*)_referent_addr);
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   141
    } else {
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   142
      _keep_alive->do_oop((oop*)_referent_addr);
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   143
    }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   144
  }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   145
50049
9d17c375dc30 8202017: Merge Reference Enqueuing phase with phase 3 of Reference processing
tschatzl
parents: 49967
diff changeset
   146
  // Do enqueuing work, i.e. notifying the GC about the changed discovered pointers.
9d17c375dc30 8202017: Merge Reference Enqueuing phase with phase 3 of Reference processing
tschatzl
parents: 49967
diff changeset
   147
  void enqueue();
9d17c375dc30 8202017: Merge Reference Enqueuing phase with phase 3 of Reference processing
tschatzl
parents: 49967
diff changeset
   148
9d17c375dc30 8202017: Merge Reference Enqueuing phase with phase 3 of Reference processing
tschatzl
parents: 49967
diff changeset
   149
  // Move enqueued references to the reference pending list.
50054
4fa726f796f5 8202781: Fix typo in DiscoveredListIterator::complete_enqeue
tschatzl
parents: 50049
diff changeset
   150
  void complete_enqueue();
50049
9d17c375dc30 8202017: Merge Reference Enqueuing phase with phase 3 of Reference processing
tschatzl
parents: 49967
diff changeset
   151
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   152
  // NULL out referent pointer.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   153
  void clear_referent();
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   154
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   155
  // Statistics
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   156
  NOT_PRODUCT(
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   157
  inline size_t processed() const { return _processed; }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   158
  inline size_t removed() const   { return _removed; }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   159
  )
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   160
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   161
  inline void move_to_next() {
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   162
    if (_current_discovered == _next_discovered) {
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   163
      // End of the list.
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   164
      _current_discovered = NULL;
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   165
    } else {
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   166
      _current_discovered = _next_discovered;
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   167
    }
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   168
    assert(_current_discovered != _first_seen, "cyclic ref_list found");
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   169
    NOT_PRODUCT(_processed++);
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   170
  }
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   171
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
49827
a4672513d6e3 8201646: Introduce ReferenceDiscoverer interface
pliden
parents: 47648
diff changeset
   173
class ReferenceProcessor : public ReferenceDiscoverer {
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   174
  size_t total_count(DiscoveredList lists[]) const;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13728
diff changeset
   175
10683
4b5a5a507864 7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents: 10670
diff changeset
   176
  // The SoftReference master timestamp clock
4b5a5a507864 7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents: 10670
diff changeset
   177
  static jlong _soft_ref_timestamp_clock;
4b5a5a507864 7098282: G1: assert(interval >= 0) failed: Sanity check, referencePolicy.cpp: 76
johnc
parents: 10670
diff changeset
   178
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   179
  BoolObjectClosure* _is_subject_to_discovery; // determines whether a given oop is subject
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   180
                                               // to this ReferenceProcessor's discovery
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   181
                                               // (and further processing).
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   182
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   183
  bool        _discovering_refs;        // true when discovery enabled
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   184
  bool        _discovery_is_atomic;     // if discovery is atomic wrt
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   185
                                        // other collectors in configuration
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   186
  bool        _discovery_is_mt;         // true if reference discovery is MT.
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   187
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   188
  bool        _enqueuing_is_done;       // true if all weak references enqueued
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   189
  bool        _processing_is_mt;        // true during phases when
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   190
                                        // reference processing is MT.
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   191
  uint        _next_id;                 // round-robin mod _num_queues counter in
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   192
                                        // support of work distribution
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   193
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   194
  // For collectors that do not keep GC liveness information
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // in the object header, this field holds a closure that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // helps the reference processor determine the reachability
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   197
  // of an oop. It is currently initialized to NULL for all
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   198
  // collectors except for CMS and G1.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  BoolObjectClosure* _is_alive_non_header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   201
  // Soft ref clearing policies
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   202
  // . the default policy
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   203
  static ReferencePolicy*   _default_soft_ref_policy;
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   204
  // . the "clear all" policy
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   205
  static ReferencePolicy*   _always_clear_soft_ref_policy;
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   206
  // . the current policy below is either one of the above
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   207
  ReferencePolicy*          _current_soft_ref_policy;
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   208
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // The discovered ref lists themselves
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   210
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   211
  // The active MT'ness degree of the queues below
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   212
  uint            _num_queues;
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   213
  // The maximum MT'ness degree of the queues below
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   214
  uint            _max_num_queues;
10747
dfdb9eb56e49 7095243: Disambiguate ReferenceProcessor::_discoveredSoftRefs
johnc
parents: 10683
diff changeset
   215
dfdb9eb56e49 7095243: Disambiguate ReferenceProcessor::_discoveredSoftRefs
johnc
parents: 10683
diff changeset
   216
  // Master array of discovered oops
dfdb9eb56e49 7095243: Disambiguate ReferenceProcessor::_discoveredSoftRefs
johnc
parents: 10683
diff changeset
   217
  DiscoveredList* _discovered_refs;
dfdb9eb56e49 7095243: Disambiguate ReferenceProcessor::_discoveredSoftRefs
johnc
parents: 10683
diff changeset
   218
dfdb9eb56e49 7095243: Disambiguate ReferenceProcessor::_discoveredSoftRefs
johnc
parents: 10683
diff changeset
   219
  // Arrays of lists of oops, one per thread (pointers into master array above)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   220
  DiscoveredList* _discoveredSoftRefs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  DiscoveredList* _discoveredWeakRefs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  DiscoveredList* _discoveredFinalRefs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  DiscoveredList* _discoveredPhantomRefs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
 public:
35475
c5e6cb508475 8143847: Remove REF_CLEANER reference category
kbarrett
parents: 35061
diff changeset
   226
  static int number_of_subclasses_of_ref() { return (REF_PHANTOM - REF_OTHER); }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   227
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   228
  uint num_queues() const                  { return _num_queues; }
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   229
  uint max_num_queues() const              { return _max_num_queues; }
37165
ed7da23aaa16 8149343: assert(rp->num_q() == no_of_gc_workers) failed: sanity
jmasa
parents: 35862
diff changeset
   230
  void set_active_mt_degree(uint v);
10747
dfdb9eb56e49 7095243: Disambiguate ReferenceProcessor::_discoveredSoftRefs
johnc
parents: 10683
diff changeset
   231
dfdb9eb56e49 7095243: Disambiguate ReferenceProcessor::_discoveredSoftRefs
johnc
parents: 10683
diff changeset
   232
  DiscoveredList* discovered_refs()        { return _discovered_refs; }
10670
4ea0e7d2ffbc 6484982: G1: process references during evacuation pauses
johnc
parents: 10526
diff changeset
   233
1610
5dddd195cc86 6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents: 1606
diff changeset
   234
  ReferencePolicy* setup_policy(bool always_clear) {
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   235
    _current_soft_ref_policy = always_clear ?
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   236
      _always_clear_soft_ref_policy : _default_soft_ref_policy;
1610
5dddd195cc86 6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents: 1606
diff changeset
   237
    _current_soft_ref_policy->setup();   // snapshot the policy threshold
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   238
    return _current_soft_ref_policy;
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   239
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // Process references with a certain reachability level.
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   242
  void process_discovered_reflist(DiscoveredList                refs_lists[],
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   243
                                  ReferencePolicy*              policy,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   244
                                  bool                          clear_referent,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   245
                                  BoolObjectClosure*            is_alive,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   246
                                  OopClosure*                   keep_alive,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   247
                                  VoidClosure*                  complete_gc,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   248
                                  AbstractRefProcTaskExecutor*  task_executor,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   249
                                  ReferenceProcessorPhaseTimes* phase_times);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // Work methods used by the method process_discovered_reflist
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // Phase1: keep alive all those referents that are otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // dead but which must be kept alive by policy (and their closure).
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   254
  void process_phase1(DiscoveredList&     refs_list,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                      ReferencePolicy*    policy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
                      BoolObjectClosure*  is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
                      OopClosure*         keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
                      VoidClosure*        complete_gc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // Phase2: remove all those references whose referents are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // reachable.
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   261
  void process_phase2(DiscoveredList&    refs_list,
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   262
                      BoolObjectClosure* is_alive,
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   263
                      OopClosure*        keep_alive,
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   264
                      VoidClosure*       complete_gc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // Work methods in support of process_phase2
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   266
  void pp2_work(DiscoveredList&    refs_list,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                OopClosure*        keep_alive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  void pp2_work_concurrent_discovery(
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   270
                DiscoveredList&    refs_list,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
                BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
                OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
                VoidClosure*       complete_gc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // Phase3: process the referents by either clearing them
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   275
  // or keeping them alive (and their closure), and enqueuing them.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   276
  void process_phase3(DiscoveredList&    refs_list,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
                      bool               clear_referent,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
                      BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
                      OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
                      VoidClosure*       complete_gc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // "Preclean" all the discovered reference lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // by removing references with strongly reachable referents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  // The first argument is a predicate on an oop that indicates
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // its (strong) reachability and the second is a closure that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // may be used to incrementalize or abort the precleaning process.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // The caller is responsible for taking care of potential
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // interference with concurrent operations on these lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // (or predicates involved) by other threads. Currently
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   290
  // only used by the CMS collector.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  void preclean_discovered_references(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
                                      OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
                                      VoidClosure*       complete_gc,
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13728
diff changeset
   294
                                      YieldClosure*      yield,
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33103
diff changeset
   295
                                      GCTimer*           gc_timer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  // Returns the name of the discovered reference list
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   298
  // occupying the i / _num_queues slot.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 10747
diff changeset
   299
  const char* list_name(uint i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // "Preclean" the given discovered reference list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // by removing references with strongly reachable referents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // Currently used in support of CMS only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  void preclean_discovered_reflist(DiscoveredList&    refs_list,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
                                   BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
                                   OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
                                   VoidClosure*       complete_gc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
                                   YieldClosure*      yield);
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   309
private:
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   310
  // round-robin mod _num_queues (not: _not_ mod _max_num_queues)
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 10747
diff changeset
   311
  uint next_id() {
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 10747
diff changeset
   312
    uint id = _next_id;
37165
ed7da23aaa16 8149343: assert(rp->num_q() == no_of_gc_workers) failed: sanity
jmasa
parents: 35862
diff changeset
   313
    assert(!_discovery_is_mt, "Round robin should only be used in serial discovery");
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   314
    if (++_next_id == _num_queues) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      _next_id = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    }
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   317
    assert(_next_id < _num_queues, "_next_id %u _num_queues %u _max_num_queues %u", _next_id, _num_queues, _max_num_queues);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    return id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  DiscoveredList* get_discovered_list(ReferenceType rt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  inline void add_to_discovered_list_mt(DiscoveredList& refs_list, oop obj,
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   322
                                        HeapWord* discovered_addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
10524
6594ca81279a 7085906: Replace the permgen allocated sentinelRef with a self-looped end
stefank
parents: 8688
diff changeset
   324
  void clear_discovered_references(DiscoveredList& refs_list);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
37165
ed7da23aaa16 8149343: assert(rp->num_q() == no_of_gc_workers) failed: sanity
jmasa
parents: 35862
diff changeset
   326
  void log_reflist_counts(DiscoveredList ref_lists[], uint active_length, size_t total_count) PRODUCT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // Balances reference queues.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  void balance_queues(DiscoveredList ref_lists[]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // Update (advance) the soft ref master clock field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  void update_soft_ref_master_clock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   334
  bool is_subject_to_discovery(oop const obj) const;
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   335
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   336
public:
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7420
diff changeset
   337
  // Default parameters give you a vanilla reference processor.
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   338
  ReferenceProcessor(BoolObjectClosure* is_subject_to_discovery,
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 10747
diff changeset
   339
                     bool mt_processing = false, uint mt_processing_degree = 1,
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 10747
diff changeset
   340
                     bool mt_discovery  = false, uint mt_discovery_degree  = 1,
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7420
diff changeset
   341
                     bool atomic_discovery = true,
24845
e8b8894a77df 8043239: G1: Missing post barrier in processing of j.l.ref.Reference objects
brutisso
parents: 22768
diff changeset
   342
                     BoolObjectClosure* is_alive_non_header = NULL);
4885
cee90a57b58f 6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents: 4738
diff changeset
   343
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // RefDiscoveryPolicy values
4885
cee90a57b58f 6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents: 4738
diff changeset
   345
  enum DiscoveryPolicy {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    ReferenceBasedDiscovery = 0,
4885
cee90a57b58f 6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents: 4738
diff changeset
   347
    ReferentBasedDiscovery  = 1,
cee90a57b58f 6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents: 4738
diff changeset
   348
    DiscoveryPolicyMin      = ReferenceBasedDiscovery,
cee90a57b58f 6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents: 4738
diff changeset
   349
    DiscoveryPolicyMax      = ReferentBasedDiscovery
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  static void init_statics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // get and set "is_alive_non_header" field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  BoolObjectClosure* is_alive_non_header() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    return _is_alive_non_header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  void set_is_alive_non_header(BoolObjectClosure* is_alive_non_header) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    _is_alive_non_header = is_alive_non_header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   363
  BoolObjectClosure* is_subject_to_discovery_closure() const { return _is_subject_to_discovery; }
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   364
  void set_is_subject_to_discovery_closure(BoolObjectClosure* cl) { _is_subject_to_discovery = cl; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // start and stop weak ref discovery
28212
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 25350
diff changeset
   367
  void enable_discovery(bool check_no_refs = true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  void disable_discovery()  { _discovering_refs = false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  bool discovery_enabled()  { return _discovering_refs;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // whether discovery is atomic wrt other collectors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  bool discovery_is_atomic() const { return _discovery_is_atomic; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  void set_atomic_discovery(bool atomic) { _discovery_is_atomic = atomic; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // whether discovery is done by multiple threads same-old-timeously
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  bool discovery_is_mt() const { return _discovery_is_mt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  void set_mt_discovery(bool mt) { _discovery_is_mt = mt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // Whether we are in a phase when _processing_ is MT.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  bool processing_is_mt() const { return _processing_is_mt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  void set_mt_processing(bool mt) { _processing_is_mt = mt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22496
diff changeset
   383
  // whether all enqueueing of weak references is complete
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  bool enqueuing_is_done()  { return _enqueuing_is_done; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  void set_enqueuing_is_done(bool v) { _enqueuing_is_done = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // iterate over oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  void weak_oops_do(OopClosure* f);       // weak roots
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   390
  void verify_list(DiscoveredList& ref_list);
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   391
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // Discover a Reference object, using appropriate discovery criteria
49827
a4672513d6e3 8201646: Introduce ReferenceDiscoverer interface
pliden
parents: 47648
diff changeset
   393
  virtual bool discover_reference(oop obj, ReferenceType rt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
37494
bf6caf8e99cb 8153745: Avoid spawning G1ParPreserveCMReferentsTask when there is no work to be done
sjohanss
parents: 37165
diff changeset
   395
  // Has discovered references that need handling
bf6caf8e99cb 8153745: Avoid spawning G1ParPreserveCMReferentsTask when there is no work to be done
sjohanss
parents: 37165
diff changeset
   396
  bool has_discovered_references();
bf6caf8e99cb 8153745: Avoid spawning G1ParPreserveCMReferentsTask when there is no work to be done
sjohanss
parents: 37165
diff changeset
   397
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // Process references found during GC (called by the garbage collector)
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13728
diff changeset
   399
  ReferenceProcessorStats
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   400
  process_discovered_references(BoolObjectClosure*            is_alive,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   401
                                OopClosure*                   keep_alive,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   402
                                VoidClosure*                  complete_gc,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   403
                                AbstractRefProcTaskExecutor*  task_executor,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   404
                                ReferenceProcessorPhaseTimes* phase_times);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   406
  // If a discovery is in process that is being superceded, abandon it: all
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   407
  // the discovered lists will be empty, and all the objects on them will
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   408
  // have NULL discovered fields.  Must be called only at a safepoint.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   409
  void abandon_partial_discovery();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   410
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   411
  size_t total_reference_count(ReferenceType rt) const;
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   412
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  // debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  void verify_no_references_recorded() PRODUCT_RETURN;
7420
24071b15dde6 7005259: CMS: BubbleUpRef asserts referent(obj)->is_oop() failed: Enqueued a bad referent
ysr
parents: 7397
diff changeset
   415
  void verify_referent(oop obj)        PRODUCT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   418
// A subject-to-discovery closure that uses a single memory span to determine the area that
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   419
// is subject to discovery. Useful for collectors which have contiguous generations.
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   420
class SpanSubjectToDiscoveryClosure : public BoolObjectClosure {
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   421
  MemRegion _span;
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   422
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   423
public:
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   424
  SpanSubjectToDiscoveryClosure() : BoolObjectClosure(), _span() { }
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   425
  SpanSubjectToDiscoveryClosure(MemRegion span) : BoolObjectClosure(), _span(span) { }
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   426
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   427
  MemRegion span() const { return _span; }
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   428
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   429
  void set_span(MemRegion mr) {
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   430
    _span = mr;
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   431
  }
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   432
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   433
  virtual bool do_object_b(oop obj) {
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   434
    return _span.contains(obj);
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   435
  }
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   436
};
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   437
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
// A utility class to disable reference discovery in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
// the scope which contains it, for given ReferenceProcessor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
class NoRefDiscovery: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  bool _was_discovering_refs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  NoRefDiscovery(ReferenceProcessor* rp) : _rp(rp) {
6459
3d75ed40a975 6934483: GCC 4.5 errors "suggest parentheses around something..." when compiling with -Werror and -Wall
twisti
parents: 5547
diff changeset
   446
    _was_discovering_refs = _rp->discovery_enabled();
3d75ed40a975 6934483: GCC 4.5 errors "suggest parentheses around something..." when compiling with -Werror and -Wall
twisti
parents: 5547
diff changeset
   447
    if (_was_discovering_refs) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
      _rp->disable_discovery();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  ~NoRefDiscovery() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    if (_was_discovering_refs) {
28212
647b7d0efb88 8066827: Remove ReferenceProcessor::clean_up_discovered_references()
kbarrett
parents: 25350
diff changeset
   454
      _rp->enable_discovery(false /*check_no_refs*/);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   459
// A utility class to temporarily mutate the subject discovery closure of the
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   460
// given ReferenceProcessor in the scope that contains it.
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   461
class ReferenceProcessorSubjectToDiscoveryMutator : StackObj {
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   462
  ReferenceProcessor* _rp;
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   463
  BoolObjectClosure* _saved_cl;
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   464
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   465
public:
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   466
  ReferenceProcessorSubjectToDiscoveryMutator(ReferenceProcessor* rp, BoolObjectClosure* cl):
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   467
    _rp(rp) {
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   468
    _saved_cl = _rp->is_subject_to_discovery_closure();
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   469
    _rp->set_is_subject_to_discovery_closure(cl);
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   470
  }
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   471
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   472
  ~ReferenceProcessorSubjectToDiscoveryMutator() {
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   473
    _rp->set_is_subject_to_discovery_closure(_saved_cl);
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   474
  }
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   475
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
// A utility class to temporarily mutate the span of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
// given ReferenceProcessor in the scope that contains it.
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   479
class ReferenceProcessorSpanMutator : StackObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  ReferenceProcessor* _rp;
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   481
  SpanSubjectToDiscoveryClosure _discoverer;
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   482
  BoolObjectClosure* _old_discoverer;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   484
public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  ReferenceProcessorSpanMutator(ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
                                MemRegion span):
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   487
    _rp(rp),
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   488
    _discoverer(span),
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   489
    _old_discoverer(rp->is_subject_to_discovery_closure()) {
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   490
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   491
    rp->set_is_subject_to_discovery_closure(&_discoverer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  ~ReferenceProcessorSpanMutator() {
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49827
diff changeset
   495
    _rp->set_is_subject_to_discovery_closure(_old_discoverer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
// A utility class to temporarily change the MT'ness of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
// reference discovery for the given ReferenceProcessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
// in the scope that contains it.
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7420
diff changeset
   502
class ReferenceProcessorMTDiscoveryMutator: StackObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  bool                _saved_mt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
 public:
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7420
diff changeset
   508
  ReferenceProcessorMTDiscoveryMutator(ReferenceProcessor* rp,
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7420
diff changeset
   509
                                       bool mt):
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    _saved_mt = _rp->discovery_is_mt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    _rp->set_mt_discovery(mt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7420
diff changeset
   515
  ~ReferenceProcessorMTDiscoveryMutator() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    _rp->set_mt_discovery(_saved_mt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
// A utility class to temporarily change the disposition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
// of the "is_alive_non_header" closure field of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
// given ReferenceProcessor in the scope that contains it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
class ReferenceProcessorIsAliveMutator: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  BoolObjectClosure*  _saved_cl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  ReferenceProcessorIsAliveMutator(ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
                                   BoolObjectClosure*  cl):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    _saved_cl = _rp->is_alive_non_header();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    _rp->set_is_alive_non_header(cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  ~ReferenceProcessorIsAliveMutator() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    _rp->set_is_alive_non_header(_saved_cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
// A utility class to temporarily change the disposition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
// of the "discovery_is_atomic" field of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
// given ReferenceProcessor in the scope that contains it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
class ReferenceProcessorAtomicMutator: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  bool                _saved_atomic_discovery;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  ReferenceProcessorAtomicMutator(ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
                                  bool atomic):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    _saved_atomic_discovery = _rp->discovery_is_atomic();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    _rp->set_atomic_discovery(atomic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  ~ReferenceProcessorAtomicMutator() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    _rp->set_atomic_discovery(_saved_atomic_discovery);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
// A utility class to temporarily change the MT processing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
// disposition of the given ReferenceProcessor instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
// in the scope that contains it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
class ReferenceProcessorMTProcMutator: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  bool  _saved_mt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  ReferenceProcessorMTProcMutator(ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
                                  bool mt):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    _saved_mt = _rp->processing_is_mt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    _rp->set_mt_processing(mt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  ~ReferenceProcessorMTProcMutator() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    _rp->set_mt_processing(_saved_mt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
// This class is an interface used to implement task execution for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
// reference processing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
class AbstractRefProcTaskExecutor {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  // Abstract tasks to execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  class ProcessTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  class EnqueueTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  // Executes a task using worker threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  virtual void execute(ProcessTask& task) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  virtual void execute(EnqueueTask& task) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  // Switch to single threaded mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  virtual void set_single_threaded_mode() { };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
// Abstract reference processing task to execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
class AbstractRefProcTaskExecutor::ProcessTask {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
protected:
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   605
  ProcessTask(ReferenceProcessor&           ref_processor,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   606
              DiscoveredList                refs_lists[],
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   607
              bool                          marks_oops_alive,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   608
              ReferenceProcessorPhaseTimes* phase_times)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    : _ref_processor(ref_processor),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
      _refs_lists(refs_lists),
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   611
      _phase_times(phase_times),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
      _marks_oops_alive(marks_oops_alive)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  virtual void work(unsigned int work_id, BoolObjectClosure& is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
                    OopClosure& keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
                    VoidClosure& complete_gc) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  // Returns true if a task marks some oops as alive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  bool marks_oops_alive() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  { return _marks_oops_alive; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
protected:
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   625
  ReferenceProcessor&           _ref_processor;
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   626
  DiscoveredList*               _refs_lists;
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   627
  ReferenceProcessorPhaseTimes* _phase_times;
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   628
  const bool                    _marks_oops_alive;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
// Abstract reference processing task to execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
class AbstractRefProcTaskExecutor::EnqueueTask {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
protected:
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   634
  EnqueueTask(ReferenceProcessor&           ref_processor,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   635
              DiscoveredList                refs_lists[],
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   636
              int                           n_queues,
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   637
              ReferenceProcessorPhaseTimes* phase_times)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    : _ref_processor(ref_processor),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
      _refs_lists(refs_lists),
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   640
      _n_queues(n_queues),
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   641
      _phase_times(phase_times)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  virtual void work(unsigned int work_id) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
protected:
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   648
  ReferenceProcessor&           _ref_processor;
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   649
  DiscoveredList*               _refs_lists;
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   650
  ReferenceProcessorPhaseTimes* _phase_times;
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46564
diff changeset
   651
  int                           _n_queues;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6769
diff changeset
   653
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30558
diff changeset
   654
#endif // SHARE_VM_GC_SHARED_REFERENCEPROCESSOR_HPP