hotspot/src/share/vm/gc_implementation/parallelScavenge/psScavenge.hpp
author iveresov
Fri, 10 Feb 2012 17:40:20 -0800
changeset 11753 c9e420473a11
parent 7397 5b173b4ca846
child 11757 cdf6204b114a
permissions -rw-r--r--
7144296: PS: Optimize nmethods processing Summary: Prunes scavenge roots in code list every young GC, promote objects directly pointed by the code immediately Reviewed-by: johnc, jcoomes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
11753
c9e420473a11 7144296: PS: Optimize nmethods processing
iveresov
parents: 7397
diff changeset
     2
 * Copyright (c) 2002, 2012, 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: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
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: 670
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: 6762
diff changeset
    25
#ifndef SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSSCAVENGE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    26
#define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSSCAVENGE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    28
#include "gc_implementation/parallelScavenge/cardTableExtension.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    29
#include "gc_implementation/parallelScavenge/psVirtualspace.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    30
#include "gc_implementation/shared/collectorCounters.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    31
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    32
#include "oops/oop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    33
#include "utilities/stack.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class GCTaskManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class GCTaskQueue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class OopStack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class ReferenceProcessor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class ParallelScavengeHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class PSIsAliveClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class PSRefProcTaskExecutor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class PSScavenge: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  friend class PSIsAliveClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  friend class PSKeepAliveClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  friend class PSPromotionManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 enum ScavengeSkippedCause {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
   not_skipped = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
   to_space_not_empty,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
   promoted_too_large,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
   full_follows_scavenge
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Saved value of to_space->top(), used to prevent objects in to_space from
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // being rescanned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static HeapWord* _to_space_top_before_gc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Number of consecutive attempts to scavenge that were skipped
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  static int                _consecutive_skipped_scavenges;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Flags/counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static ReferenceProcessor* _ref_processor;        // Reference processor for scavenging.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static PSIsAliveClosure    _is_alive_closure;     // Closure used for reference processing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  static CardTableExtension* _card_table;           // We cache the card table for fast access.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static bool                _survivor_overflow;    // Overflow this collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  static int                 _tenuring_threshold;   // tenuring threshold for next scavenge
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static elapsedTimer        _accumulated_time;     // total time spent on scavenge
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  static HeapWord*           _young_generation_boundary; // The lowest address possible for the young_gen.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                                                         // This is used to decide if an oop should be scavenged,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                                         // cards should be marked, etc.
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
    74
  static Stack<markOop>          _preserved_mark_stack; // List of marks to be restored after failed promotion
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
    75
  static Stack<oop>              _preserved_oop_stack;  // List of oops that need their mark restored.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  static CollectorCounters*      _counters;         // collector performance counters
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
    77
  static bool                    _promotion_failed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static void clean_up_failed_promotion();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  static bool should_attempt_scavenge();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static HeapWord* to_space_top_before_gc() { return _to_space_top_before_gc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static inline void save_to_space_top_before_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Private accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static CardTableExtension* const card_table()       { assert(_card_table != NULL, "Sanity"); return _card_table; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static int              tenuring_threshold()  { return _tenuring_threshold; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static elapsedTimer*    accumulated_time()    { return &_accumulated_time; }
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
    93
  static bool             promotion_failed()    { return _promotion_failed; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static int              consecutive_skipped_scavenges()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    { return _consecutive_skipped_scavenges; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // Performance Counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static CollectorCounters* counters()           { return _counters; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Used by scavenge_contents && psMarkSweep
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static ReferenceProcessor* const reference_processor() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    assert(_ref_processor != NULL, "Sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    return _ref_processor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Used to add tasks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static GCTaskManager* const gc_task_manager();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // The promotion managers tell us if they encountered overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  static void set_survivor_overflow(bool state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    _survivor_overflow = state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Adaptive size policy support.  When the young generation/old generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // boundary moves, _young_generation_boundary must be reset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static void set_young_generation_boundary(HeapWord* v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _young_generation_boundary = v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // Called by parallelScavengeHeap to init the tenuring threshold
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Scavenge entry point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  static void invoke();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Return true is a collection was done.  Return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // false if the collection was skipped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  static bool invoke_no_policy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // If an attempt to promote fails, this method is invoked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  static void oop_promotion_failed(oop obj, markOop obj_mark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   129
  template <class T> static inline bool should_scavenge(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // These call should_scavenge() above and, if it returns true, also check that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // the object was not newly copied into to_space.  The version with the bool
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // argument is a convenience wrapper that fetches the to_space pointer from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // the heap and calls the other version (if the arg is true).
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   135
  template <class T> static inline bool should_scavenge(T* p, MutableSpace* to_space);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   136
  template <class T> static inline bool should_scavenge(T* p, bool check_to_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
11753
c9e420473a11 7144296: PS: Optimize nmethods processing
iveresov
parents: 7397
diff changeset
   138
  template <class T, bool promote_immediately>
c9e420473a11 7144296: PS: Optimize nmethods processing
iveresov
parents: 7397
diff changeset
   139
    inline static void copy_and_push_safe_barrier(PSPromotionManager* pm, T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Is an object in the young generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // This assumes that the HeapWord argument is in the heap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // so it only checks one side of the complete predicate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  inline static bool is_obj_in_young(HeapWord* o) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    const bool result = (o >= _young_generation_boundary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
   149
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
   150
#endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PSSCAVENGE_HPP