hotspot/src/share/vm/gc_implementation/parallelScavenge/psMarkSweep.hpp
author jcoomes
Tue, 30 Sep 2008 11:49:31 -0700
changeset 1406 e5e2b519fc11
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6716466: par compact - remove VerifyParallelOldWithMarkSweep code Reviewed-by: jmasa
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-2005 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
class PSAdaptiveSizePolicy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class PSYoungGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class PSOldGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class PSMarkSweep : public MarkSweep {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  static elapsedTimer        _accumulated_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  static unsigned int        _total_invocations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  static jlong               _time_of_last_gc;   // ms
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  static CollectorCounters*  _counters;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // Closure accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  static OopClosure* mark_and_push_closure() { return &MarkSweep::mark_and_push_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  static VoidClosure* follow_stack_closure() { return (VoidClosure*)&MarkSweep::follow_stack_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  static OopClosure* adjust_pointer_closure() { return (OopClosure*)&MarkSweep::adjust_pointer_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static OopClosure* adjust_root_pointer_closure() { return (OopClosure*)&MarkSweep::adjust_root_pointer_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  static BoolObjectClosure* is_alive_closure() { return (BoolObjectClosure*)&MarkSweep::is_alive; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
 debug_only(public:)  // Used for PSParallelCompact debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // Mark live objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  static void mark_sweep_phase1(bool clear_all_softrefs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // Calculate new addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static void mark_sweep_phase2();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 debug_only(private:) // End used for PSParallelCompact debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Update pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  static void mark_sweep_phase3();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Move objects to new positions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static void mark_sweep_phase4();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 debug_only(public:)  // Used for PSParallelCompact debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Temporary data structures for traversal and storing/restoring marks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  static void allocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static void deallocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  static void set_ref_processor(ReferenceProcessor* rp) {  // delete this method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    _ref_processor = rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
 debug_only(private:) // End used for PSParallelCompact debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // If objects are left in eden after a collection, try to move the boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // and absorb them into the old gen.  Returns true if eden was emptied.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static bool absorb_live_data_from_eden(PSAdaptiveSizePolicy* size_policy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                                         PSYoungGen* young_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                                         PSOldGen* old_gen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Reset time since last full gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static void reset_millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  static void invoke(bool clear_all_softrefs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static void invoke_no_policy(bool clear_all_softrefs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Public accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static elapsedTimer* accumulated_time() { return &_accumulated_time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  static unsigned int total_invocations() { return _total_invocations; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  static CollectorCounters* counters()    { return _counters; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Time since last full gc (in milliseconds)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static jlong millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
};