hotspot/src/share/vm/memory/generation.cpp
author kbarrett
Thu, 18 Dec 2014 13:26:37 -0500
changeset 28217 57791914628c
parent 28031 10aec24d2b61
child 29200 5e480434bef4
permissions -rw-r--r--
8067499: G1SATBCardTableModRefBS should not inherit from CardTableModRefBSForCTRS Summary: G1SATBCardTableModRefBS inherits from CardTableModRefBS Reviewed-by: mgerdin, brutisso, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24092
diff changeset
     2
 * Copyright (c) 1997, 2014, 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: 4106
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4106
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: 4106
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: 6985
diff changeset
    25
#include "precompiled.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16681
diff changeset
    26
#include "gc_implementation/shared/gcTimer.hpp"
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16681
diff changeset
    27
#include "gc_implementation/shared/gcTrace.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    28
#include "gc_implementation/shared/spaceDecorator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    29
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    30
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    31
#include "memory/blockOffsetTable.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    32
#include "memory/cardTableRS.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    33
#include "memory/gcLocker.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    34
#include "memory/genCollectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    35
#include "memory/genMarkSweep.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    36
#include "memory/genOopClosures.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    37
#include "memory/genOopClosures.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    38
#include "memory/generation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    39
#include "memory/space.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    40
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    41
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    42
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    43
#include "utilities/events.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24092
diff changeset
    45
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24092
diff changeset
    46
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
Generation::Generation(ReservedSpace rs, size_t initial_size, int level) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  _level(level),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  _ref_processor(NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  if (!_virtual_space.initialize(rs, initial_size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    vm_exit_during_initialization("Could not reserve enough space for "
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
                    "object heap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  }
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
    54
  // Mangle all of the the initial generation.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
    55
  if (ZapUnusedHeapArea) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
    56
    MemRegion mangle_region((HeapWord*)_virtual_space.low(),
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
    57
      (HeapWord*)_virtual_space.high());
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
    58
    SpaceMangler::mangle_region(mangle_region);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
    59
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _reserved = MemRegion((HeapWord*)_virtual_space.low_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
          (HeapWord*)_virtual_space.high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
GenerationSpec* Generation::spec() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  assert(0 <= level() && level() < gch->_n_gens, "Bad gen level");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  return gch->_gen_specs[level()];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
size_t Generation::max_capacity() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  return reserved().byte_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
void Generation::print_heap_change(size_t prev_used) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  if (PrintGCDetails && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    gclog_or_tty->print(" "  SIZE_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                        "->" SIZE_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                        "("  SIZE_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                        prev_used, used(), capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    gclog_or_tty->print(" "  SIZE_FORMAT "K"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                        "->" SIZE_FORMAT "K"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                        "("  SIZE_FORMAT "K)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                        prev_used / K, used() / K, capacity() / K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
// By default we get a single threaded default reference processor;
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    89
// generations needing multi-threaded refs processing or discovery override this method.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
void Generation::ref_processor_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  assert(_ref_processor == NULL, "a reference processor already exists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  assert(!_reserved.is_empty(), "empty generation?");
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    93
  _ref_processor = new ReferenceProcessor(_reserved);    // a vanilla reference processor
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (_ref_processor == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    vm_exit_during_initialization("Could not allocate ReferenceProcessor object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
void Generation::print() const { print_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
void Generation::print_on(outputStream* st)  const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  st->print(" %-20s", name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  st->print(" total " SIZE_FORMAT "K, used " SIZE_FORMAT "K",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
             capacity()/K, used()/K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
              _virtual_space.low_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
              _virtual_space.high(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
              _virtual_space.high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
void Generation::print_summary_info() { print_summary_info_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
void Generation::print_summary_info_on(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  StatRecord* sr = stat_record();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  double time = sr->accumulated_time.seconds();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  st->print_cr("[Accumulated GC generation %d time %3.7f secs, "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
               "%d GC's, avg GC time %3.7f]",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
               level(), time, sr->invocations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
               sr->invocations > 0 ? time / sr->invocations : 0.0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
// Utility iterator classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
class GenerationIsInReservedClosure : public SpaceClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  const void* _p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  Space* sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  virtual void do_space(Space* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    if (sp == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      if (s->is_in_reserved(_p)) sp = s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  GenerationIsInReservedClosure(const void* p) : _p(p), sp(NULL) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
class GenerationIsInClosure : public SpaceClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  const void* _p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  Space* sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  virtual void do_space(Space* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    if (sp == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      if (s->is_in(_p)) sp = s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  GenerationIsInClosure(const void* p) : _p(p), sp(NULL) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
bool Generation::is_in(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  GenerationIsInClosure blk(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  ((Generation*)this)->space_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  return blk.sp != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
Generation* Generation::next_gen() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  int next = level() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  if (next < gch->_n_gens) {
27252
9703e3f1f92a 8061805: BACKOUT - Remove the generations array
jwilhelm
parents: 27249
diff changeset
   158
    return gch->_gens[next];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
size_t Generation::max_contiguous_available() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // The largest number of contiguous free words in this or any higher generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  size_t max = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  for (const Generation* gen = this; gen != NULL; gen = gen->next_gen()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    size_t avail = gen->contiguous_available();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    if (avail > max) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      max = avail;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  return max;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 5547
diff changeset
   176
bool Generation::promotion_attempt_is_safe(size_t max_promotion_in_bytes) const {
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 5547
diff changeset
   177
  size_t available = max_contiguous_available();
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 5547
diff changeset
   178
  bool   res = (available >= max_promotion_in_bytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  if (PrintGC && Verbose) {
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 5547
diff changeset
   180
    gclog_or_tty->print_cr(
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 5547
diff changeset
   181
      "Generation: promo attempt is%s safe: available("SIZE_FORMAT") %s max_promo("SIZE_FORMAT")",
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 5547
diff changeset
   182
      res? "":" not", available, res? ">=":"<",
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 5547
diff changeset
   183
      max_promotion_in_bytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 5547
diff changeset
   185
  return res;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// Ignores "ref" and calls allocate().
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   189
oop Generation::promote(oop obj, size_t obj_size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  assert(obj_size == (size_t)obj->size(), "bad obj_size passed in");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  if (Universe::heap()->promotion_should_fail()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
#endif  // #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  HeapWord* result = allocate(obj_size, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  if (result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    Copy::aligned_disjoint_words((HeapWord*)obj, result, obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    return oop(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    GenCollectedHeap* gch = GenCollectedHeap::heap();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   204
    return gch->handle_failed_promotion(this, obj, obj_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
oop Generation::par_promote(int thread_num,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
                            oop obj, markOop m, size_t word_sz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // Could do a bad general impl here that gets a lock.  But no.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  ShouldNotCallThis();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
Space* Generation::space_containing(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  GenerationIsInReservedClosure blk(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // Cast away const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  ((Generation*)this)->space_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  return blk.sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// Some of these are mediocre general implementations.  Should be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// overridden to get better performance.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
class GenerationBlockStartClosure : public SpaceClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  const void* _p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  HeapWord* _start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  virtual void do_space(Space* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    if (_start == NULL && s->is_in_reserved(_p)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      _start = s->block_start(_p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  GenerationBlockStartClosure(const void* p) { _p = p; _start = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
HeapWord* Generation::block_start(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  GenerationBlockStartClosure blk(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // Cast away const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  ((Generation*)this)->space_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  return blk._start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
class GenerationBlockSizeClosure : public SpaceClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  const HeapWord* _p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  size_t size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  virtual void do_space(Space* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    if (size == 0 && s->is_in_reserved(_p)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      size = s->block_size(_p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  GenerationBlockSizeClosure(const HeapWord* p) { _p = p; size = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
size_t Generation::block_size(const HeapWord* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  GenerationBlockSizeClosure blk(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // Cast away const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  ((Generation*)this)->space_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  assert(blk.size > 0, "seems reasonable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  return blk.size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
class GenerationBlockIsObjClosure : public SpaceClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  const HeapWord* _p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  bool is_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  virtual void do_space(Space* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    if (!is_obj && s->is_in_reserved(_p)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
      is_obj |= s->block_is_obj(_p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  GenerationBlockIsObjClosure(const HeapWord* p) { _p = p; is_obj = false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
bool Generation::block_is_obj(const HeapWord* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  GenerationBlockIsObjClosure blk(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // Cast away const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  ((Generation*)this)->space_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  return blk.is_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
class GenerationOopIterateClosure : public SpaceClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
 public:
23508
3b15250ea28f 8038399: Remove dead oop_iterate MemRegion variants from SharedHeap, Generation and Space classes
mgerdin
parents: 21767
diff changeset
   285
  ExtendedOopClosure* _cl;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  virtual void do_space(Space* s) {
23508
3b15250ea28f 8038399: Remove dead oop_iterate MemRegion variants from SharedHeap, Generation and Space classes
mgerdin
parents: 21767
diff changeset
   287
    s->oop_iterate(_cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  }
23508
3b15250ea28f 8038399: Remove dead oop_iterate MemRegion variants from SharedHeap, Generation and Space classes
mgerdin
parents: 21767
diff changeset
   289
  GenerationOopIterateClosure(ExtendedOopClosure* cl) :
3b15250ea28f 8038399: Remove dead oop_iterate MemRegion variants from SharedHeap, Generation and Space classes
mgerdin
parents: 21767
diff changeset
   290
    _cl(cl) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   293
void Generation::oop_iterate(ExtendedOopClosure* cl) {
23508
3b15250ea28f 8038399: Remove dead oop_iterate MemRegion variants from SharedHeap, Generation and Space classes
mgerdin
parents: 21767
diff changeset
   294
  GenerationOopIterateClosure blk(cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  space_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
void Generation::younger_refs_in_space_iterate(Space* sp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
                                               OopsInGenClosure* cl) {
28217
57791914628c 8067499: G1SATBCardTableModRefBS should not inherit from CardTableModRefBSForCTRS
kbarrett
parents: 28031
diff changeset
   300
  GenRemSet* rs = GenCollectedHeap::heap()->rem_set();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  rs->younger_refs_in_space_iterate(sp, cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
class GenerationObjIterateClosure : public SpaceClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  ObjectClosure* _cl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  virtual void do_space(Space* s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    s->object_iterate(_cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  GenerationObjIterateClosure(ObjectClosure* cl) : _cl(cl) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
void Generation::object_iterate(ObjectClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  GenerationObjIterateClosure blk(cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  space_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   319
class GenerationSafeObjIterateClosure : public SpaceClosure {
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   320
 private:
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   321
  ObjectClosure* _cl;
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   322
 public:
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   323
  virtual void do_space(Space* s) {
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   324
    s->safe_object_iterate(_cl);
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   325
  }
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   326
  GenerationSafeObjIterateClosure(ObjectClosure* cl) : _cl(cl) {}
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   327
};
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   328
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   329
void Generation::safe_object_iterate(ObjectClosure* cl) {
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   330
  GenerationSafeObjIterateClosure blk(cl);
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   331
  space_iterate(&blk);
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   332
}
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 979
diff changeset
   333
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
void Generation::prepare_for_compaction(CompactPoint* cp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  // Generic implementation, can be specialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  CompactibleSpace* space = first_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  while (space != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    space->prepare_for_compaction(cp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    space = space->next_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
class AdjustPointersClosure: public SpaceClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  void do_space(Space* sp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    sp->adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
void Generation::adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  // Note that this is done over all spaces, not just the compactible
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  // ones.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  AdjustPointersClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  space_iterate(&blk, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
void Generation::compact() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  CompactibleSpace* sp = first_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  while (sp != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    sp->compact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    sp = sp->next_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
}