hotspot/src/share/vm/gc_implementation/parallelScavenge/psMarkSweep.hpp
author stefank
Thu, 01 Sep 2011 16:18:17 +0200
changeset 10524 6594ca81279a
parent 7397 5b173b4ca846
child 11757 cdf6204b114a
permissions -rw-r--r--
7085906: Replace the permgen allocated sentinelRef with a self-looped end Summary: Remove the sentinelRef and let the last Reference in a discovered chain point back to itself. Reviewed-by: ysr, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 2001, 2010, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSMARKSWEEP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSMARKSWEEP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "gc_implementation/shared/collectorCounters.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "gc_implementation/shared/markSweep.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "utilities/stack.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class PSAdaptiveSizePolicy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class PSYoungGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class PSOldGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class PSMarkSweep : public MarkSweep {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  static elapsedTimer        _accumulated_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  static unsigned int        _total_invocations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static jlong               _time_of_last_gc;   // ms
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  static CollectorCounters*  _counters;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // Closure accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  static OopClosure* mark_and_push_closure() { return &MarkSweep::mark_and_push_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  static VoidClosure* follow_stack_closure() { return (VoidClosure*)&MarkSweep::follow_stack_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static OopClosure* adjust_pointer_closure() { return (OopClosure*)&MarkSweep::adjust_pointer_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static OopClosure* adjust_root_pointer_closure() { return (OopClosure*)&MarkSweep::adjust_root_pointer_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  static BoolObjectClosure* is_alive_closure() { return (BoolObjectClosure*)&MarkSweep::is_alive; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 debug_only(public:)  // Used for PSParallelCompact debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Mark live objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static void mark_sweep_phase1(bool clear_all_softrefs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // Calculate new addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  static void mark_sweep_phase2();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
 debug_only(private:) // End used for PSParallelCompact debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // Update pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static void mark_sweep_phase3();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // Move objects to new positions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static void mark_sweep_phase4();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
 debug_only(public:)  // Used for PSParallelCompact debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // Temporary data structures for traversal and storing/restoring marks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  static void allocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  static void deallocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static void set_ref_processor(ReferenceProcessor* rp) {  // delete this method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    _ref_processor = rp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
 debug_only(private:) // End used for PSParallelCompact debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // If objects are left in eden after a collection, try to move the boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // and absorb them into the old gen.  Returns true if eden was emptied.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  static bool absorb_live_data_from_eden(PSAdaptiveSizePolicy* size_policy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                         PSYoungGen* young_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                         PSOldGen* old_gen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Reset time since last full gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  static void reset_millis_since_last_gc();
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
  static void invoke(bool clear_all_softrefs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  static void invoke_no_policy(bool clear_all_softrefs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Public accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static elapsedTimer* accumulated_time() { return &_accumulated_time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static unsigned int total_invocations() { return _total_invocations; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  static CollectorCounters* counters()    { return _counters; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Time since last full gc (in milliseconds)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static jlong millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    93
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    94
#endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSMARKSWEEP_HPP