hotspot/src/share/vm/memory/referenceProcessor.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 360 21d113ecbf6a
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2001-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// ReferenceProcessor class encapsulates the per-"collector" processing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// of "weak" references for GC. The interface is useful for supporting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// a generational abstraction, in particular when there are multiple
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// generations that are being independently collected -- possibly
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// concurrently and/or incrementally.  Note, however, that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// ReferenceProcessor class abstracts away from a generational setting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// by using only a heap interval (called "span" below), thus allowing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// its use in a straightforward manner in a general, non-generational
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// setting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// The basic idea is that each ReferenceProcessor object concerns
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// itself with ("weak") reference processing in a specific "span"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// of the heap of interest to a specific collector. Currently,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// the span is a convex interval of the heap, but, efficiency
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// apart, there seems to be no reason it couldn't be extended
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// (with appropriate modifications) to any "non-convex interval".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// forward references
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class ReferencePolicy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class AbstractRefProcTaskExecutor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class DiscoveredList;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class ReferenceProcessor : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 friend class DiscoveredList;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
 friend class DiscoveredListIterator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // End of list marker
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static oop  _sentinelRef;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  MemRegion   _span; // (right-open) interval of heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                     // subject to wkref discovery
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  bool        _discovering_refs;      // true when discovery enabled
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  bool        _discovery_is_atomic;   // if discovery is atomic wrt
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                                      // other collectors in configuration
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  bool        _discovery_is_mt;       // true if reference discovery is MT.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  bool        _enqueuing_is_done;     // true if all weak references enqueued
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  bool        _processing_is_mt;      // true during phases when
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                                      // reference processing is MT.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  int         _next_id;               // round-robin counter in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
                                      // support of work distribution
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // For collectors that do not keep GC marking information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // in the object header, this field holds a closure that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // helps the reference processor determine the reachability
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // of an oop (the field is currently initialized to NULL for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // all collectors but the CMS collector).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  BoolObjectClosure* _is_alive_non_header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // The discovered ref lists themselves
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  int             _num_q;       // the MT'ness degree of the queues below
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  DiscoveredList* _discoveredSoftRefs; // pointer to array of oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  DiscoveredList* _discoveredWeakRefs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  DiscoveredList* _discoveredFinalRefs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  DiscoveredList* _discoveredPhantomRefs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int  num_q()                           { return _num_q; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  DiscoveredList* discovered_soft_refs() { return _discoveredSoftRefs; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  static oop* sentinel_ref()             { return &_sentinelRef; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Process references with a certain reachability level.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  void process_discovered_reflist(DiscoveredList               refs_lists[],
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                                  ReferencePolicy*             policy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                                  bool                         clear_referent,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                                  BoolObjectClosure*           is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
                                  OopClosure*                  keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                                  VoidClosure*                 complete_gc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                                  AbstractRefProcTaskExecutor* task_executor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  void process_phaseJNI(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                        OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
                        VoidClosure*       complete_gc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Work methods used by the method process_discovered_reflist
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // Phase1: keep alive all those referents that are otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // dead but which must be kept alive by policy (and their closure).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  void process_phase1(DiscoveredList&     refs_list_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
                      ReferencePolicy*    policy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                      BoolObjectClosure*  is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                      OopClosure*         keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                      VoidClosure*        complete_gc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Phase2: remove all those references whose referents are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // reachable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  inline void process_phase2(DiscoveredList&    refs_list_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                             BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                             OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                             VoidClosure*       complete_gc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    if (discovery_is_atomic()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      // complete_gc is ignored in this case for this phase
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      pp2_work(refs_list_addr, is_alive, keep_alive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      assert(complete_gc != NULL, "Error");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      pp2_work_concurrent_discovery(refs_list_addr, is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
                                    keep_alive, complete_gc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Work methods in support of process_phase2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  void pp2_work(DiscoveredList&    refs_list_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
                BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
                OopClosure*        keep_alive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  void pp2_work_concurrent_discovery(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
                DiscoveredList&    refs_list_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
                BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
                OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
                VoidClosure*       complete_gc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Phase3: process the referents by either clearing them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // or keeping them alive (and their closure)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  void process_phase3(DiscoveredList&    refs_list_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
                      bool               clear_referent,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
                      BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
                      OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
                      VoidClosure*       complete_gc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Enqueue references with a certain reachability level
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  void enqueue_discovered_reflist(DiscoveredList& refs_list, oop* pending_list_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // "Preclean" all the discovered reference lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // by removing references with strongly reachable referents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // The first argument is a predicate on an oop that indicates
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // its (strong) reachability and the second is a closure that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // may be used to incrementalize or abort the precleaning process.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // The caller is responsible for taking care of potential
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // interference with concurrent operations on these lists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // (or predicates involved) by other threads. Currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // only used by the CMS collector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  void preclean_discovered_references(BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
                                      OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
                                      VoidClosure*       complete_gc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
                                      YieldClosure*      yield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // Delete entries in the discovered lists that have
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // either a null referent or are not active. Such
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Reference objects can result from the clearing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // or enqueueing of Reference objects concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // with their discovery by a (concurrent) collector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // For a definition of "active" see java.lang.ref.Reference;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Refs are born active, become inactive when enqueued,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // and never become active again. The state of being
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // active is encoded as follows: A Ref is active
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // if and only if its "next" field is NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  void clean_up_discovered_references();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  void clean_up_discovered_reflist(DiscoveredList& refs_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Returns the name of the discovered reference list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // occupying the i / _num_q slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  const char* list_name(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // "Preclean" the given discovered reference list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // by removing references with strongly reachable referents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // Currently used in support of CMS only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void preclean_discovered_reflist(DiscoveredList&    refs_list,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
                                   BoolObjectClosure* is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
                                   OopClosure*        keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
                                   VoidClosure*       complete_gc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
                                   YieldClosure*      yield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  void enqueue_discovered_reflists(oop* pending_list_addr, AbstractRefProcTaskExecutor* task_executor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  int next_id() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    int id = _next_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    if (++_next_id == _num_q) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      _next_id = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    return id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  DiscoveredList* get_discovered_list(ReferenceType rt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  inline void add_to_discovered_list_mt(DiscoveredList& refs_list, oop obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
                                        oop* discovered_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  void verify_ok_to_handle_reflists() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  void abandon_partial_discovered_list(DiscoveredList& refs_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void abandon_partial_discovered_list_arr(DiscoveredList refs_lists[]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // Calculate the number of jni handles.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  unsigned int count_jni_refs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Balances reference queues.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  void balance_queues(DiscoveredList ref_lists[]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // Update (advance) the soft ref master clock field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  void update_soft_ref_master_clock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  ReferenceProcessor():
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    _span((HeapWord*)NULL, (HeapWord*)NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    _discoveredSoftRefs(NULL),  _discoveredWeakRefs(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    _discoveredFinalRefs(NULL), _discoveredPhantomRefs(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    _discovering_refs(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    _discovery_is_atomic(true),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    _enqueuing_is_done(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    _discovery_is_mt(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    _is_alive_non_header(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    _num_q(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    _processing_is_mt(false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    _next_id(0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  ReferenceProcessor(MemRegion span, bool atomic_discovery,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
                     bool mt_discovery, int mt_degree = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
                     bool mt_processing = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Allocates and initializes a reference processor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  static ReferenceProcessor* create_ref_processor(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    MemRegion          span,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    bool               atomic_discovery,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    bool               mt_discovery,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    BoolObjectClosure* is_alive_non_header = NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    int                parallel_gc_threads = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    bool               mt_processing = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // RefDiscoveryPolicy values
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    ReferenceBasedDiscovery = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    ReferentBasedDiscovery  = 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  static void init_statics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // get and set "is_alive_non_header" field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  BoolObjectClosure* is_alive_non_header() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    return _is_alive_non_header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  void set_is_alive_non_header(BoolObjectClosure* is_alive_non_header) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    _is_alive_non_header = is_alive_non_header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // get and set span
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  MemRegion span()                   { return _span; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  void      set_span(MemRegion span) { _span = span; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // start and stop weak ref discovery
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  void enable_discovery()   { _discovering_refs = true;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  void disable_discovery()  { _discovering_refs = false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  bool discovery_enabled()  { return _discovering_refs;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // whether discovery is atomic wrt other collectors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  bool discovery_is_atomic() const { return _discovery_is_atomic; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  void set_atomic_discovery(bool atomic) { _discovery_is_atomic = atomic; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // whether discovery is done by multiple threads same-old-timeously
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  bool discovery_is_mt() const { return _discovery_is_mt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  void set_mt_discovery(bool mt) { _discovery_is_mt = mt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // Whether we are in a phase when _processing_ is MT.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  bool processing_is_mt() const { return _processing_is_mt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  void set_mt_processing(bool mt) { _processing_is_mt = mt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // whether all enqueuing of weak references is complete
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  bool enqueuing_is_done()  { return _enqueuing_is_done; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  void set_enqueuing_is_done(bool v) { _enqueuing_is_done = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // iterate over oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  void weak_oops_do(OopClosure* f);       // weak roots
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  static void oops_do(OopClosure* f);     // strong root(s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // Discover a Reference object, using appropriate discovery criteria
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  bool discover_reference(oop obj, ReferenceType rt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // Process references found during GC (called by the garbage collector)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  void process_discovered_references(ReferencePolicy*             policy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
                                     BoolObjectClosure*           is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
                                     OopClosure*                  keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
                                     VoidClosure*                 complete_gc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
                                     AbstractRefProcTaskExecutor* task_executor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // Enqueue references at end of GC (called by the garbage collector)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  bool enqueue_discovered_references(AbstractRefProcTaskExecutor* task_executor = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  void verify_no_references_recorded() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  static void verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // clear the discovered lists (unlinking each entry).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  void clear_discovered_references() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
// A utility class to disable reference discovery in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// the scope which contains it, for given ReferenceProcessor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
class NoRefDiscovery: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  bool _was_discovering_refs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  NoRefDiscovery(ReferenceProcessor* rp) : _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    if (_was_discovering_refs = _rp->discovery_enabled()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      _rp->disable_discovery();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  ~NoRefDiscovery() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    if (_was_discovering_refs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
      _rp->enable_discovery();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// A utility class to temporarily mutate the span of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
// given ReferenceProcessor in the scope that contains it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
class ReferenceProcessorSpanMutator: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  MemRegion           _saved_span;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  ReferenceProcessorSpanMutator(ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
                                MemRegion span):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    _saved_span = _rp->span();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    _rp->set_span(span);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  ~ReferenceProcessorSpanMutator() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    _rp->set_span(_saved_span);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
// A utility class to temporarily change the MT'ness of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
// reference discovery for the given ReferenceProcessor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
// in the scope that contains it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
class ReferenceProcessorMTMutator: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  bool                _saved_mt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  ReferenceProcessorMTMutator(ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
                              bool mt):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    _saved_mt = _rp->discovery_is_mt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    _rp->set_mt_discovery(mt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  ~ReferenceProcessorMTMutator() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    _rp->set_mt_discovery(_saved_mt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
// A utility class to temporarily change the disposition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
// of the "is_alive_non_header" closure field of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
// given ReferenceProcessor in the scope that contains it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
class ReferenceProcessorIsAliveMutator: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  BoolObjectClosure*  _saved_cl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  ReferenceProcessorIsAliveMutator(ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
                                   BoolObjectClosure*  cl):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    _saved_cl = _rp->is_alive_non_header();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    _rp->set_is_alive_non_header(cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  ~ReferenceProcessorIsAliveMutator() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    _rp->set_is_alive_non_header(_saved_cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
// A utility class to temporarily change the disposition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
// of the "discovery_is_atomic" field of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
// given ReferenceProcessor in the scope that contains it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
class ReferenceProcessorAtomicMutator: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  bool                _saved_atomic_discovery;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  ReferenceProcessorAtomicMutator(ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
                                  bool atomic):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    _saved_atomic_discovery = _rp->discovery_is_atomic();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    _rp->set_atomic_discovery(atomic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  ~ReferenceProcessorAtomicMutator() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    _rp->set_atomic_discovery(_saved_atomic_discovery);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
// A utility class to temporarily change the MT processing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
// disposition of the given ReferenceProcessor instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
// in the scope that contains it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
class ReferenceProcessorMTProcMutator: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  ReferenceProcessor* _rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  bool  _saved_mt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  ReferenceProcessorMTProcMutator(ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
                                  bool mt):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    _rp(rp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    _saved_mt = _rp->processing_is_mt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    _rp->set_mt_processing(mt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  ~ReferenceProcessorMTProcMutator() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    _rp->set_mt_processing(_saved_mt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
// This class is an interface used to implement task execution for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
// reference processing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
class AbstractRefProcTaskExecutor {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  // Abstract tasks to execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  class ProcessTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  class EnqueueTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  // Executes a task using worker threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  virtual void execute(ProcessTask& task) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  virtual void execute(EnqueueTask& task) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  // Switch to single threaded mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  virtual void set_single_threaded_mode() { };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
// Abstract reference processing task to execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
class AbstractRefProcTaskExecutor::ProcessTask {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  ProcessTask(ReferenceProcessor& ref_processor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
              DiscoveredList      refs_lists[],
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
              bool                marks_oops_alive)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    : _ref_processor(ref_processor),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      _refs_lists(refs_lists),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      _marks_oops_alive(marks_oops_alive)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  virtual void work(unsigned int work_id, BoolObjectClosure& is_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
                    OopClosure& keep_alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
                    VoidClosure& complete_gc) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  // Returns true if a task marks some oops as alive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  bool marks_oops_alive() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  { return _marks_oops_alive; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  ReferenceProcessor& _ref_processor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  DiscoveredList*     _refs_lists;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  const bool          _marks_oops_alive;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
// Abstract reference processing task to execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
class AbstractRefProcTaskExecutor::EnqueueTask {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  EnqueueTask(ReferenceProcessor& ref_processor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
              DiscoveredList      refs_lists[],
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
              oop*                pending_list_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
              oop                 sentinel_ref,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
              int                 n_queues)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    : _ref_processor(ref_processor),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
      _refs_lists(refs_lists),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
      _pending_list_addr(pending_list_addr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
      _sentinel_ref(sentinel_ref),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
      _n_queues(n_queues)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  virtual void work(unsigned int work_id) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  ReferenceProcessor& _ref_processor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  DiscoveredList*     _refs_lists;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  oop*                _pending_list_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  oop                 _sentinel_ref;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  int                 _n_queues;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
};