hotspot/src/share/vm/runtime/virtualspace.cpp
author kamg
Thu, 22 May 2008 13:03:52 -0400
changeset 602 92e03692ddd6
parent 1 489c9b5090e2
child 823 9a5271881bc0
child 1374 4c24294029a9
permissions -rw-r--r--
6705523: Fix for 6695506 will violate spec when used in JDK6 Summary: Make max classfile version number dependent on JDK version Reviewed-by: acorn, never
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 1997-2005 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
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_virtualspace.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// ReservedSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
ReservedSpace::ReservedSpace(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  initialize(size, 0, false, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
ReservedSpace::ReservedSpace(size_t size, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
                             bool large, char* requested_address) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  initialize(size, alignment, large, requested_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
char *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
ReservedSpace::align_reserved_region(char* addr, const size_t len,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
                                     const size_t prefix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
                                     const size_t prefix_align,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
                                     const size_t suffix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
                                     const size_t suffix_align)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  assert(addr != NULL, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  const size_t required_size = prefix_size + suffix_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  assert(len >= required_size, "len too small");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  const size_t s = size_t(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  const size_t beg_ofs = s + prefix_size & suffix_align - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  const size_t beg_delta = beg_ofs == 0 ? 0 : suffix_align - beg_ofs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  if (len < beg_delta + required_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
     return NULL; // Cannot do proper alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  const size_t end_delta = len - (beg_delta + required_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (beg_delta != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    os::release_memory(addr, beg_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  if (end_delta != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    char* release_addr = (char*) (s + beg_delta + required_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    os::release_memory(release_addr, end_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  return (char*) (s + beg_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
char* ReservedSpace::reserve_and_align(const size_t reserve_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                                       const size_t prefix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                       const size_t prefix_align,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                       const size_t suffix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
                                       const size_t suffix_align)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  assert(reserve_size > prefix_size + suffix_size, "should not be here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  char* raw_addr = os::reserve_memory(reserve_size, NULL, prefix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  if (raw_addr == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  char* result = align_reserved_region(raw_addr, reserve_size, prefix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                                       prefix_align, suffix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                                       suffix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  if (result == NULL && !os::release_memory(raw_addr, reserve_size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    fatal("os::release_memory failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  if (result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    const size_t raw = size_t(raw_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    const size_t res = size_t(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    assert(res >= raw, "alignment decreased start addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    assert(res + prefix_size + suffix_size <= raw + reserve_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
           "alignment increased end addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    assert((res & prefix_align - 1) == 0, "bad alignment of prefix");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    assert((res + prefix_size & suffix_align - 1) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
           "bad alignment of suffix");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
ReservedSpace::ReservedSpace(const size_t prefix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                             const size_t prefix_align,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                             const size_t suffix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                             const size_t suffix_align)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  assert(prefix_size != 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  assert(prefix_align != 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  assert(suffix_size != 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  assert(suffix_align != 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  assert((prefix_size & prefix_align - 1) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    "prefix_size not divisible by prefix_align");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  assert((suffix_size & suffix_align - 1) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    "suffix_size not divisible by suffix_align");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  assert((suffix_align & prefix_align - 1) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    "suffix_align not divisible by prefix_align");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // On systems where the entire region has to be reserved and committed up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // front, the compound alignment normally done by this method is unnecessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  const bool try_reserve_special = UseLargePages &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    prefix_align == os::large_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  if (!os::can_commit_large_page_memory() && try_reserve_special) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    initialize(prefix_size + suffix_size, prefix_align, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  _base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  _alignment = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  _special = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // Optimistically try to reserve the exact size needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  const size_t size = prefix_size + suffix_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  char* addr = os::reserve_memory(size, NULL, prefix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  if (addr == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Check whether the result has the needed alignment (unlikely unless
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // prefix_align == suffix_align).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  const size_t ofs = size_t(addr) + prefix_size & suffix_align - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  if (ofs != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    // Wrong alignment.  Release, allocate more space and do manual alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    // On most operating systems, another allocation with a somewhat larger size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    // will return an address "close to" that of the previous allocation.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    // result is often the same address (if the kernel hands out virtual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    // addresses from low to high), or an address that is offset by the increase
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    // in size.  Exploit that to minimize the amount of extra space requested.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    if (!os::release_memory(addr, size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      fatal("os::release_memory failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    const size_t extra = MAX2(ofs, suffix_align - ofs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    addr = reserve_and_align(size + extra, prefix_size, prefix_align,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                             suffix_size, suffix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    if (addr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      // Try an even larger region.  If this fails, address space is exhausted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
      addr = reserve_and_align(size + suffix_align, prefix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                               prefix_align, suffix_size, suffix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  _base = addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  _size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  _alignment = prefix_align;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
void ReservedSpace::initialize(size_t size, size_t alignment, bool large,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
                               char* requested_address) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  const size_t granularity = os::vm_allocation_granularity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  assert((size & granularity - 1) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
         "size not aligned to os::vm_allocation_granularity()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  assert((alignment & granularity - 1) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
         "alignment not aligned to os::vm_allocation_granularity()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  assert(alignment == 0 || is_power_of_2((intptr_t)alignment),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
         "not a power of 2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  _base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  _special = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  _alignment = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  if (size == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // If OS doesn't support demand paging for large page memory, we need
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // to use reserve_memory_special() to reserve and pin the entire region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  bool special = large && !os::can_commit_large_page_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  char* base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  if (special) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    // It's not hard to implement reserve_memory_special() such that it can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    // allocate at fixed address, but there seems no use of this feature
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    // for now, so it's not implemented.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    assert(requested_address == NULL, "not implemented");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    base = os::reserve_memory_special(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    if (base != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
      // Check alignment constraints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      if (alignment > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
        assert((uintptr_t) base % alignment == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
               "Large pages returned a non-aligned address");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
      _special = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      // failed; try to reserve regular memory below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  if (base == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    // Optimistically assume that the OSes returns an aligned base pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    // When reserving a large address range, most OSes seem to align to at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    // least 64K.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    // If the memory was requested at a particular address, use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    // os::attempt_reserve_memory_at() to avoid over mapping something
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    // important.  If available space is not detected, return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    if (requested_address != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      base = os::attempt_reserve_memory_at(size, requested_address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
      base = os::reserve_memory(size, NULL, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    if (base == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    // Check alignment constraints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    if (alignment > 0 && ((size_t)base & alignment - 1) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
      // Base not aligned, retry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
      if (!os::release_memory(base, size)) fatal("os::release_memory failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      // Reserve size large enough to do manual alignment and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
      // increase size to a multiple of the desired alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      size = align_size_up(size, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      size_t extra_size = size + alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
      char* extra_base = os::reserve_memory(extra_size, NULL, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      if (extra_base == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      // Do manual alignement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      base = (char*) align_size_up((uintptr_t) extra_base, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      assert(base >= extra_base, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      // Release unused areas
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      size_t unused_bottom_size = base - extra_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      size_t unused_top_size = extra_size - size - unused_bottom_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      assert(unused_bottom_size % os::vm_allocation_granularity() == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
             "size not allocation aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      assert(unused_top_size % os::vm_allocation_granularity() == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
             "size not allocation aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      if (unused_bottom_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
        os::release_memory(extra_base, unused_bottom_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      if (unused_top_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
        os::release_memory(base + size, unused_top_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // Done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  _base = base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  _size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  _alignment = MAX2(alignment, (size_t) os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  assert(markOopDesc::encode_pointer_as_mark(_base)->decode_pointer() == _base,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
         "area must be distinguisable from marks for mark-sweep");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  assert(markOopDesc::encode_pointer_as_mark(&_base[size])->decode_pointer() == &_base[size],
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
         "area must be distinguisable from marks for mark-sweep");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
ReservedSpace::ReservedSpace(char* base, size_t size, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
                             bool special) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  assert((size % os::vm_allocation_granularity()) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
         "size not allocation aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  _base = base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  _size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  _alignment = alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  _special = special;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
ReservedSpace ReservedSpace::first_part(size_t partition_size, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
                                        bool split, bool realloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  assert(partition_size <= size(), "partition failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  if (split) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    os::split_reserved_memory(_base, _size, partition_size, realloc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  ReservedSpace result(base(), partition_size, alignment, special());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
ReservedSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
ReservedSpace::last_part(size_t partition_size, size_t alignment) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  assert(partition_size <= size(), "partition failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  ReservedSpace result(base() + partition_size, size() - partition_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
                       alignment, special());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
size_t ReservedSpace::page_align_size_up(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  return align_size_up(size, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
size_t ReservedSpace::page_align_size_down(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  return align_size_down(size, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
size_t ReservedSpace::allocation_align_size_up(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  return align_size_up(size, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
size_t ReservedSpace::allocation_align_size_down(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  return align_size_down(size, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
void ReservedSpace::release() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  if (is_reserved()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    if (special()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
      os::release_memory_special(_base, _size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    } else{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
      os::release_memory(_base, _size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    _base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    _special = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
// VirtualSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
VirtualSpace::VirtualSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  _low_boundary           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  _high_boundary          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  _low                    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  _high                   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  _lower_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  _middle_high            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  _upper_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  _lower_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  _middle_high_boundary   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  _upper_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  _lower_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  _middle_alignment       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  _upper_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
bool VirtualSpace::initialize(ReservedSpace rs, size_t committed_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  if(!rs.is_reserved()) return false;  // allocation failed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  assert(_low_boundary == NULL, "VirtualSpace already initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  _low_boundary  = rs.base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  _high_boundary = low_boundary() + rs.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  _low = low_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  _high = low();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  _special = rs.special();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // When a VirtualSpace begins life at a large size, make all future expansion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // and shrinking occur aligned to a granularity of large pages.  This avoids
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  // fragmentation of physical addresses that inhibits the use of large pages
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // by the OS virtual memory system.  Empirically,  we see that with a 4MB
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // page size, the only spaces that get handled this way are codecache and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // the heap itself, both of which provide a substantial performance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // boost in many benchmarks when covered by large pages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  // No attempt is made to force large page alignment at the very top and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  // bottom of the space if they are not aligned so already.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  _lower_alignment  = os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  _middle_alignment = os::page_size_for_region(rs.size(), rs.size(), 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  _upper_alignment  = os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // End of each region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  _lower_high_boundary = (char*) round_to((intptr_t) low_boundary(), middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  _middle_high_boundary = (char*) round_down((intptr_t) high_boundary(), middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  _upper_high_boundary = high_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // High address of each region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  _lower_high = low_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  _middle_high = lower_high_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  _upper_high = middle_high_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // commit to initial size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  if (committed_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    if (!expand_by(committed_size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
VirtualSpace::~VirtualSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
void VirtualSpace::release() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  (void)os::release_memory(low_boundary(), reserved_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  _low_boundary           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  _high_boundary          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  _low                    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  _high                   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  _lower_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  _middle_high            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  _upper_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  _lower_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  _middle_high_boundary   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  _upper_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  _lower_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  _middle_alignment       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  _upper_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  _special                = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
size_t VirtualSpace::committed_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  return pointer_delta(high(), low(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
size_t VirtualSpace::reserved_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  return pointer_delta(high_boundary(), low_boundary(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
size_t VirtualSpace::uncommitted_size()  const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  return reserved_size() - committed_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
bool VirtualSpace::contains(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  return low() <= (const char*) p && (const char*) p < high();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
   First we need to determine if a particular virtual space is using large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
   pages.  This is done at the initialize function and only virtual spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
   that are larger than LargePageSizeInBytes use large pages.  Once we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
   have determined this, all expand_by and shrink_by calls must grow and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
   shrink by large page size chunks.  If a particular request
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
   is within the current large page, the call to commit and uncommit memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
   can be ignored.  In the case that the low and high boundaries of this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
   space is not large page aligned, the pages leading to the first large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
   page address and the pages after the last large page address must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
   allocated with default pages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
bool VirtualSpace::expand_by(size_t bytes, bool pre_touch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  if (uncommitted_size() < bytes) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  if (special()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    // don't commit memory if the entire space is pinned in memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    _high += bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  char* previous_high = high();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  char* unaligned_new_high = high() + bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  assert(unaligned_new_high <= high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
         "cannot expand by more than upper boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  // Calculate where the new high for each of the regions should be.  If
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  // the low_boundary() and high_boundary() are LargePageSizeInBytes aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  // then the unaligned lower and upper new highs would be the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  // lower_high() and upper_high() respectively.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  char* unaligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    MIN2(unaligned_new_high, lower_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  char* unaligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    MIN2(unaligned_new_high, middle_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  char* unaligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    MIN2(unaligned_new_high, upper_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  // Align the new highs based on the regions alignment.  lower and upper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  // alignment will always be default page size.  middle alignment will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  // LargePageSizeInBytes if the actual size of the virtual space is in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  // fact larger than LargePageSizeInBytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  char* aligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    (char*) round_to((intptr_t) unaligned_lower_new_high, lower_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  char* aligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    (char*) round_to((intptr_t) unaligned_middle_new_high, middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  char* aligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
    (char*) round_to((intptr_t) unaligned_upper_new_high, upper_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  // Determine which regions need to grow in this expand_by call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  // If you are growing in the lower region, high() must be in that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  // region so calcuate the size based on high().  For the middle and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  // upper regions, determine the starting point of growth based on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // location of high().  By getting the MAX of the region's low address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  // (or the prevoius region's high address) and high(), we can tell if it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // is an intra or inter region growth.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  size_t lower_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  if (aligned_lower_new_high > lower_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    lower_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
      pointer_delta(aligned_lower_new_high, lower_high(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  size_t middle_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  if (aligned_middle_new_high > middle_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    middle_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
      pointer_delta(aligned_middle_new_high, middle_high(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  size_t upper_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  if (aligned_upper_new_high > upper_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    upper_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
      pointer_delta(aligned_upper_new_high, upper_high(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  // Check contiguity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
         lower_high() <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
         middle_high() <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
         upper_high() <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  // Commit regions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  if (lower_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
           lower_high() + lower_needs <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
           "must not expand beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    if (!os::commit_memory(lower_high(), lower_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
      debug_only(warning("os::commit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
      _lower_high += lower_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  if (middle_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
           middle_high() + middle_needs <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
           "must not expand beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    if (!os::commit_memory(middle_high(), middle_needs, middle_alignment())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
      debug_only(warning("os::commit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    _middle_high += middle_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  if (upper_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
           upper_high() + upper_needs <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
           "must not expand beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    if (!os::commit_memory(upper_high(), upper_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      debug_only(warning("os::commit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      _upper_high += upper_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  if (pre_touch || AlwaysPreTouch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    int vm_ps = os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    for (char* curr = previous_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
         curr < unaligned_new_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
         curr += vm_ps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
      // Note the use of a write here; originally we tried just a read, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
      // since the value read was unused, the optimizer removed the read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
      // If we ever have a concurrent touchahead thread, we'll want to use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
      // a read, to avoid the potential of overwriting data (if a mutator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
      // thread beats the touchahead thread to a page).  There are various
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
      // ways of making sure this read is not optimized away: for example,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
      // generating the code for a read procedure at runtime.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
      *curr = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  _high += bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
// A page is uncommitted if the contents of the entire page is deemed unusable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
// Continue to decrement the high() pointer until it reaches a page boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
// in which case that particular page can now be uncommitted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
void VirtualSpace::shrink_by(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  if (committed_size() < size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    fatal("Cannot shrink virtual space to negative size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  if (special()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    // don't uncommit if the entire space is pinned in memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    _high -= size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  char* unaligned_new_high = high() - size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  assert(unaligned_new_high >= low_boundary(), "cannot shrink past lower boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  // Calculate new unaligned address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  char* unaligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    MAX2(unaligned_new_high, middle_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  char* unaligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    MAX2(unaligned_new_high, lower_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  char* unaligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    MAX2(unaligned_new_high, low_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  // Align address to region's alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  char* aligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    (char*) round_to((intptr_t) unaligned_upper_new_high, upper_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  char* aligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    (char*) round_to((intptr_t) unaligned_middle_new_high, middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  char* aligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    (char*) round_to((intptr_t) unaligned_lower_new_high, lower_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  // Determine which regions need to shrink
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  size_t upper_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  if (aligned_upper_new_high < upper_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    upper_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
      pointer_delta(upper_high(), aligned_upper_new_high, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  size_t middle_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  if (aligned_middle_new_high < middle_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    middle_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
      pointer_delta(middle_high(), aligned_middle_new_high, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  size_t lower_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  if (aligned_lower_new_high < lower_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    lower_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
      pointer_delta(lower_high(), aligned_lower_new_high, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  // Check contiguity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
         upper_high() <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
         middle_high() <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
         lower_high() <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  // Uncommit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  if (upper_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    assert(middle_high_boundary() <= aligned_upper_new_high &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
           aligned_upper_new_high + upper_needs <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
           "must not shrink beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    if (!os::uncommit_memory(aligned_upper_new_high, upper_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
      debug_only(warning("os::uncommit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
      _upper_high -= upper_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  if (middle_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    assert(lower_high_boundary() <= aligned_middle_new_high &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
           aligned_middle_new_high + middle_needs <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
           "must not shrink beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    if (!os::uncommit_memory(aligned_middle_new_high, middle_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
      debug_only(warning("os::uncommit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
      _middle_high -= middle_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  if (lower_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    assert(low_boundary() <= aligned_lower_new_high &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
           aligned_lower_new_high + lower_needs <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
           "must not shrink beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    if (!os::uncommit_memory(aligned_lower_new_high, lower_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
      debug_only(warning("os::uncommit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
      _lower_high -= lower_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  _high -= size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
void VirtualSpace::check_for_contiguity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  // Check contiguity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
         lower_high() <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
         middle_high() <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
         upper_high() <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  assert(low() >= low_boundary(), "low");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  assert(low_boundary() <= lower_high_boundary(), "lower high boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  assert(upper_high_boundary() <= high_boundary(), "upper high boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  assert(high() <= upper_high(), "upper high");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
void VirtualSpace::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  tty->print   ("Virtual space:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  if (special()) tty->print(" (pinned in memory)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  tty->print_cr(" - committed: %ld", committed_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  tty->print_cr(" - reserved:  %ld", reserved_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  tty->print_cr(" - [low, high]:     [" INTPTR_FORMAT ", " INTPTR_FORMAT "]",  low(), high());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  tty->print_cr(" - [low_b, high_b]: [" INTPTR_FORMAT ", " INTPTR_FORMAT "]",  low_boundary(), high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
#endif