hotspot/src/share/vm/gc/parallel/psMarkSweep.hpp
author tschatzl
Thu, 28 Jan 2016 13:30:12 +0100
changeset 35877 a2a62511d0f8
parent 30764 fec48bf5a827
permissions -rw-r--r--
8146987: Improve Parallel GC Full GC by caching results of live_words_in_range() Summary: A large part of time in the parallel scavenge collector is spent finding out the amount of live words within memory ranges to find out where to move an object to. Try to incrementally calculate this value. Reviewed-by: tschatzl, mgerdin, jmasa Contributed-by: ray alex <sky1young@gmail.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29701
f638fc81a3d0 8075803: Fix GC includes and forward declarations
stefank
parents: 28178
diff changeset
     2
 * Copyright (c) 2001, 2015, 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
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29701
diff changeset
    25
#ifndef SHARE_VM_GC_PARALLEL_PSMARKSWEEP_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29701
diff changeset
    26
#define SHARE_VM_GC_PARALLEL_PSMARKSWEEP_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29701
diff changeset
    28
#include "gc/serial/markSweep.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29701
diff changeset
    29
#include "gc/shared/collectorCounters.hpp"
7397
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 jlong               _time_of_last_gc;   // ms
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static CollectorCounters*  _counters;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // Closure accessors
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    43
  static OopClosure* mark_and_push_closure()   { return &MarkSweep::mark_and_push_closure; }
28178
1e72ace206d0 8066822: Remove PSMarkSweep::set_reference_processor
kbarrett
parents: 25492
diff changeset
    44
  static VoidClosure* follow_stack_closure()   { return &MarkSweep::follow_stack_closure; }
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    45
  static CLDClosure* follow_cld_closure()      { return &MarkSweep::follow_cld_closure; }
28178
1e72ace206d0 8066822: Remove PSMarkSweep::set_reference_processor
kbarrett
parents: 25492
diff changeset
    46
  static OopClosure* adjust_pointer_closure()  { return &MarkSweep::adjust_pointer_closure; }
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    47
  static CLDClosure* adjust_cld_closure()      { return &MarkSweep::adjust_cld_closure; }
28178
1e72ace206d0 8066822: Remove PSMarkSweep::set_reference_processor
kbarrett
parents: 25492
diff changeset
    48
  static BoolObjectClosure* is_alive_closure() { return &MarkSweep::is_alive; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Mark live objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static void mark_sweep_phase1(bool clear_all_softrefs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // Calculate new addresses
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static void mark_sweep_phase2();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // Update pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  static void mark_sweep_phase3();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // Move objects to new positions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static void mark_sweep_phase4();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Temporary data structures for traversal and storing/restoring marks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  static void allocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  static void deallocate_stacks();
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);
11757
cdf6204b114a 7146343: PS invoke methods should indicate the type of gc done
jcoomes
parents: 7397
diff changeset
    74
  static bool invoke_no_policy(bool clear_all_softrefs);
1
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 CollectorCounters* counters()    { return _counters; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Time since last full gc (in milliseconds)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static jlong millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    85
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29701
diff changeset
    86
#endif // SHARE_VM_GC_PARALLEL_PSMARKSWEEP_HPP