hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.hpp
author coleenp
Sun, 13 Apr 2008 17:43:42 -0400
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
permissions -rw-r--r--
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
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
class ChunkArray;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class ParScanWithoutBarrierClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class ParScanWithBarrierClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class ParRootScanWithoutBarrierClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class ParRootScanWithBarrierTwoGensClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class ParEvacuateFollowersClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// It would be better if these types could be kept local to the .cpp file,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// but they must be here to allow ParScanClosure::do_oop_work to be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// in genOopClosures.inline.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
typedef OopTaskQueue    ObjToScanQueue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
typedef OopTaskQueueSet ObjToScanQueueSet;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Enable this to get push/pop/steal stats.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
const int PAR_STATS_ENABLED = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class ParKeepAliveClosure: public DefNewGeneration::KeepAliveClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    43
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  ParScanWeakRefClosure* _par_cl;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    45
 protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    46
  template <class T> void do_oop_work(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  ParKeepAliveClosure(ParScanWeakRefClosure* cl);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    49
  virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    50
  virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// The state needed by thread performing parallel young-gen collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
class ParScanThreadState {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  friend class ParScanThreadStateSet;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    56
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  ObjToScanQueue *_work_queue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  ParGCAllocBuffer _to_space_alloc_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  ParScanWithoutBarrierClosure         _to_space_closure; // scan_without_gc_barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ParScanWithBarrierClosure            _old_gen_closure; // scan_with_gc_barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  ParRootScanWithoutBarrierClosure     _to_space_root_closure; // scan_root_without_gc_barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // One of these two will be passed to process_strong_roots, which will
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // set its generation.  The first is for two-gen configs where the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // old gen collects the perm gen; the second is for arbitrary configs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // The second isn't used right now (it used to be used for the train, an
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // incremental collector) but the declaration has been left as a reminder.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  ParRootScanWithBarrierTwoGensClosure _older_gen_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // This closure will always be bound to the old gen; it will be used
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // in evacuate_followers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  ParRootScanWithBarrierTwoGensClosure _old_gen_root_closure; // scan_old_root_with_gc_barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  ParEvacuateFollowersClosure          _evacuate_followers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  DefNewGeneration::IsAliveClosure     _is_alive_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  ParScanWeakRefClosure                _scan_weak_ref_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  ParKeepAliveClosure                  _keep_alive_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  Space* _to_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  Space* to_space() { return _to_space; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  Generation* _old_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  Generation* old_gen() { return _old_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  HeapWord *_young_old_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  int _hash_seed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  int _thread_num;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  ageTable _ageTable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  bool _to_space_full;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  int _pushes, _pops, _steals, _steal_attempts, _term_attempts;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  int _overflow_pushes, _overflow_refills, _overflow_refill_objs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Timing numbers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  double _start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  double _start_strong_roots;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  double _strong_roots_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  double _start_term;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  double _term_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Helper for trim_queues. Scans subset of an array and makes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // remainder available for work stealing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  void scan_partial_array_and_push_remainder(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // In support of CMS' parallel rescan of survivor space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  ChunkArray* _survivor_chunk_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  ChunkArray* survivor_chunk_array() { return _survivor_chunk_array; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  void record_survivor_plab(HeapWord* plab_start, size_t plab_word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  ParScanThreadState(Space* to_space_, ParNewGeneration* gen_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                     Generation* old_gen_, int thread_num_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                     ObjToScanQueueSet* work_queue_set_, size_t desired_plab_sz_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                     ParallelTaskTerminator& term_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   118
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  ageTable* age_table() {return &_ageTable;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  ObjToScanQueue* work_queue() { return _work_queue; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  ParGCAllocBuffer* to_space_alloc_buffer() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    return &_to_space_alloc_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  ParEvacuateFollowersClosure&      evacuate_followers_closure() { return _evacuate_followers; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  DefNewGeneration::IsAliveClosure& is_alive_closure() { return _is_alive_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  ParScanWeakRefClosure&            scan_weak_ref_closure() { return _scan_weak_ref_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  ParKeepAliveClosure&              keep_alive_closure() { return _keep_alive_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  ParScanClosure&                   older_gen_closure() { return _older_gen_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  ParRootScanWithoutBarrierClosure& to_space_root_closure() { return _to_space_root_closure; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // Decrease queue size below "max_size".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  void trim_queues(int max_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // Is new_obj a candidate for scan_partial_array_and_push_remainder method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  inline bool should_be_partially_scanned(oop new_obj, oop old_obj) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  int* hash_seed()  { return &_hash_seed; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  int  thread_num() { return _thread_num; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Allocate a to-space block of size "sz", or else return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  HeapWord* alloc_in_to_space_slow(size_t word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  HeapWord* alloc_in_to_space(size_t word_sz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    HeapWord* obj = to_space_alloc_buffer()->allocate(word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    if (obj != NULL) return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    else return alloc_in_to_space_slow(word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  HeapWord* young_old_boundary() { return _young_old_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void set_young_old_boundary(HeapWord *boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    _young_old_boundary = boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Undo the most recent allocation ("obj", of "word_sz").
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  void undo_alloc_in_to_space(HeapWord* obj, size_t word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  int pushes() { return _pushes; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  int pops()   { return _pops; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  int steals() { return _steals; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  int steal_attempts() { return _steal_attempts; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  int term_attempts()  { return _term_attempts; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  int overflow_pushes() { return _overflow_pushes; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  int overflow_refills() { return _overflow_refills; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  int overflow_refill_objs() { return _overflow_refill_objs; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  void note_push()  { if (PAR_STATS_ENABLED) _pushes++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  void note_pop()   { if (PAR_STATS_ENABLED) _pops++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void note_steal() { if (PAR_STATS_ENABLED) _steals++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  void note_steal_attempt() { if (PAR_STATS_ENABLED) _steal_attempts++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  void note_term_attempt()  { if (PAR_STATS_ENABLED) _term_attempts++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  void note_overflow_push() { if (PAR_STATS_ENABLED) _overflow_pushes++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void note_overflow_refill(int objs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    if (PAR_STATS_ENABLED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      _overflow_refills++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      _overflow_refill_objs += objs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  void start_strong_roots() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    _start_strong_roots = os::elapsedTime();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void end_strong_roots() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    _strong_roots_time += (os::elapsedTime() - _start_strong_roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  double strong_roots_time() { return _strong_roots_time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  void start_term_time() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    note_term_attempt();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    _start_term = os::elapsedTime();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  void end_term_time() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    _term_time += (os::elapsedTime() - _start_term);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  double term_time() { return _term_time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  double elapsed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    return os::elapsedTime() - _start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
class ParNewGenTask: public AbstractGangTask {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   205
 private:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   206
  ParNewGeneration*            _gen;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   207
  Generation*                  _next_gen;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   208
  HeapWord*                    _young_old_boundary;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  class ParScanThreadStateSet* _state_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  ParNewGenTask(ParNewGeneration*      gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
                Generation*            next_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
                HeapWord*              young_old_boundary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
                ParScanThreadStateSet* state_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  HeapWord* young_old_boundary() { return _young_old_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  void work(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
class KeepAliveClosure: public DefNewGeneration::KeepAliveClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   223
 protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   224
  template <class T> void do_oop_work(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  KeepAliveClosure(ScanWeakRefClosure* cl);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   227
  virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   228
  virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
class EvacuateFollowersClosureGeneral: public VoidClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   232
 private:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   233
  GenCollectedHeap* _gch;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   234
  int               _level;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   235
  OopsInGenClosure* _scan_cur_or_nonheap;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   236
  OopsInGenClosure* _scan_older;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   237
 public:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   238
  EvacuateFollowersClosureGeneral(GenCollectedHeap* gch, int level,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   239
                                  OopsInGenClosure* cur,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   240
                                  OopsInGenClosure* older);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   241
  virtual void do_void();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// Closure for scanning ParNewGeneration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
// Same as ScanClosure, except does parallel GC barrier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
class ScanClosureWithParBarrier: public ScanClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   247
 protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   248
  template <class T> void do_oop_work(T* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   249
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  ScanClosureWithParBarrier(ParNewGeneration* g, bool gc_barrier);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   251
  virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   252
  virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
// Implements AbstractRefProcTaskExecutor for ParNew.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
class ParNewRefProcTaskExecutor: public AbstractRefProcTaskExecutor {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   257
 private:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   258
  ParNewGeneration&      _generation;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   259
  ParScanThreadStateSet& _state_set;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   260
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  ParNewRefProcTaskExecutor(ParNewGeneration& generation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
                            ParScanThreadStateSet& state_set)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    : _generation(generation), _state_set(state_set)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // Executes a task using worker threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  virtual void execute(ProcessTask& task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  virtual void execute(EnqueueTask& task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // Switch to single threaded mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  virtual void set_single_threaded_mode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// A Generation that does parallel young-gen collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
class ParNewGeneration: public DefNewGeneration {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  friend class ParNewGenTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  friend class ParNewRefProcTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  friend class ParNewRefProcTaskExecutor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  friend class ParScanThreadStateSet;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   282
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // XXX use a global constant instead of 64!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  struct ObjToScanQueuePadded {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
        ObjToScanQueue work_queue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
        char pad[64 - sizeof(ObjToScanQueue)];  // prevent false sharing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // The per-thread work queues, available here for stealing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  ObjToScanQueueSet* _task_queues;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // Desired size of survivor space plab's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  PLABStats _plab_stats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // A list of from-space images of to-be-scanned objects, threaded through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // klass-pointers (klass information already copied to the forwarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  // image.)  Manipulated with CAS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  oop _overflow_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // If true, older generation does not support promotion undo, so avoid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  static bool _avoid_promotion_undo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // This closure is used by the reference processor to filter out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // references to live referent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  DefNewGeneration::IsAliveClosure _is_alive_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  static oop real_forwardee_slow(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  static void waste_some_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // Preserve the mark of "obj", if necessary, in preparation for its mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  // word being overwritten with a self-forwarding-pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  void preserve_mark_if_necessary(oop obj, markOop m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  bool _survivor_overflow;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  bool avoid_promotion_undo() { return _avoid_promotion_undo; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  void set_avoid_promotion_undo(bool v) { _avoid_promotion_undo = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  bool survivor_overflow() { return _survivor_overflow; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  void set_survivor_overflow(bool v) { _survivor_overflow = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // Adjust the tenuring threshold.  See the implementation for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // the details of the policy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  virtual void adjust_desired_tenuring_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   328
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  ParNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  ~ParNewGeneration() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    for (uint i = 0; i < ParallelGCThreads; i++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
        delete _task_queues->queue(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    delete _task_queues;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  virtual void ref_processor_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  virtual Generation::Name kind()        { return Generation::ParNew; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  virtual const char* name() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  virtual const char* short_name() const { return "ParNew"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  virtual bool refs_discovery_is_mt()     const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    assert(UseParNewGC, "ParNewGeneration only when UseParNewGC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    return ParallelGCThreads > 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // Make the collection virtual.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  virtual void collect(bool   full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
                       bool   clear_all_soft_refs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
                       size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
                       bool   is_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // This needs to be visible to the closure function.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // "obj" is the object to be copied, "m" is a recent value of its mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // that must not contain a forwarding pointer (though one might be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // inserted in "obj"s mark word by a parallel thread).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  inline oop copy_to_survivor_space(ParScanThreadState* par_scan_state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
                             oop obj, size_t obj_sz, markOop m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    if (_avoid_promotion_undo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
       return copy_to_survivor_space_avoiding_promotion_undo(par_scan_state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
                                                             obj, obj_sz, m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    return copy_to_survivor_space_with_undo(par_scan_state, obj, obj_sz, m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  oop copy_to_survivor_space_avoiding_promotion_undo(ParScanThreadState* par_scan_state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
                             oop obj, size_t obj_sz, markOop m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  oop copy_to_survivor_space_with_undo(ParScanThreadState* par_scan_state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
                             oop obj, size_t obj_sz, markOop m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // Push the given (from-space) object on the global overflow list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  void push_on_overflow_list(oop from_space_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // If the global overflow list is non-empty, move some tasks from it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // onto "work_q" (which must be empty).  No more than 1/4 of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // max_elems of "work_q" are moved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  bool take_from_overflow_list(ParScanThreadState* par_scan_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // The task queues to be used by parallel GC threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  ObjToScanQueueSet* task_queues() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    return _task_queues;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  PLABStats* plab_stats() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    return &_plab_stats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  size_t desired_plab_sz() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    return _plab_stats.desired_plab_sz();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  static oop real_forwardee(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  DEBUG_ONLY(static bool is_legal_forward_ptr(oop p);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
};