hotspot/src/share/vm/memory/defNewGeneration.inline.hpp
author kvn
Thu, 06 Mar 2008 10:30:17 -0800
changeset 211 e2b60448c234
parent 1 489c9b5090e2
child 360 21d113ecbf6a
permissions -rw-r--r--
6667610: (Escape Analysis) retry compilation without EA if it fails Summary: During split unique types EA could exceed nodes limit and fail the method compilation. Reviewed-by: 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-2006 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
CompactibleSpace* DefNewGeneration::first_compaction_space() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
  return eden();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
HeapWord* DefNewGeneration::allocate(size_t word_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
                                     bool is_tlab) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  // This is the slow-path allocation for the DefNewGeneration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  // Most allocations are fast-path in compiled code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  // We try to allocate from the eden.  If that works, we are happy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  // Note that since DefNewGeneration supports lock-free allocation, we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  // have to use it here, as well.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  HeapWord* result = eden()->par_allocate(word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  if (result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    HeapWord* old_limit = eden()->soft_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    if (old_limit < eden()->end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
      // Tell the next generation we reached a limit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
      HeapWord* new_limit =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
        next_gen()->allocation_limit_reached(eden(), eden()->top(), word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
      if (new_limit != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
        Atomic::cmpxchg_ptr(new_limit, eden()->soft_end_addr(), old_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
        assert(eden()->soft_end() == eden()->end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
               "invalid state after allocation_limit_reached returned null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
      // The allocation failed and the soft limit is equal to the hard limit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      // there are no reasons to do an attempt to allocate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
      assert(old_limit == eden()->end(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    // Try to allocate until succeeded or the soft limit can't be adjusted
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    result = eden()->par_allocate(word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  } while (result == NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // If the eden is full and the last collection bailed out, we are running
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // out of heap space, and we try to allocate the from-space, too.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // allocate_from_space can't be inlined because that would introduce a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // circular dependency at compile time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  if (result == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    result = allocate_from_space(word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
HeapWord* DefNewGeneration::par_allocate(size_t word_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                         bool is_tlab) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  return eden()->par_allocate(word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
void DefNewGeneration::gc_prologue(bool full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Ensure that _end and _soft_end are the same in eden space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  eden()->set_soft_end(eden()->end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
size_t DefNewGeneration::tlab_capacity() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  return eden()->capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
size_t DefNewGeneration::unsafe_max_tlab_alloc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  return unsafe_max_alloc_nogc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}