hotspot/src/share/vm/runtime/virtualspace.cpp
author hseigel
Tue, 22 Jul 2014 16:16:51 +0400
changeset 27022 2db6fe33afc2
parent 26700 8107d0778244
child 28208 d67f748ece0a
permissions -rw-r--r--
8036533: Method for correct defaults 8036156: Limit default method hierarchy Summary: Fix protected access checks Reviewed-by: coleenp, lfoltan, acorn, ahgross
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: 22876
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: 3261
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
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: 3261
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: 5898
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5898
diff changeset
    26
#include "oops/markOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5898
diff changeset
    27
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5898
diff changeset
    28
#include "runtime/virtualspace.hpp"
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
    29
#include "services/memTracker.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
    31
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// ReservedSpace
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    34
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    35
// Dummy constructor
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    36
ReservedSpace::ReservedSpace() : _base(NULL), _size(0), _noaccess_prefix(0),
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    37
    _alignment(0), _special(false), _executable(false) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    38
}
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    39
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
ReservedSpace::ReservedSpace(size_t size) {
26700
8107d0778244 8049864: TestParallelHeapSizeFlags fails with unexpected heap size
ehelin
parents: 25469
diff changeset
    41
  size_t page_size = os::page_size_for_region(size, 1);
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    42
  bool large_pages = page_size != (size_t)os::vm_page_size();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    43
  // Don't force the alignment to be large page aligned,
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    44
  // since that will waste memory.
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    45
  size_t alignment = os::vm_allocation_granularity();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    46
  initialize(size, alignment, large_pages, NULL, 0, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
ReservedSpace::ReservedSpace(size_t size, size_t alignment,
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    50
                             bool large,
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    51
                             char* requested_address,
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    52
                             const size_t noaccess_prefix) {
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    53
  initialize(size+noaccess_prefix, alignment, large, requested_address,
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    54
             noaccess_prefix, false);
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    55
}
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    56
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    57
ReservedSpace::ReservedSpace(size_t size, size_t alignment,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    58
                             bool large,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    59
                             bool executable) {
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    60
  initialize(size, alignment, large, NULL, 0, executable);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    63
// Helper method.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    64
static bool failed_to_reserve_as_requested(char* base, char* requested_address,
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    65
                                           const size_t size, bool special)
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    66
{
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    67
  if (base == requested_address || requested_address == NULL)
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    68
    return false; // did not fail
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    69
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    70
  if (base != NULL) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    71
    // Different reserve address may be acceptable in other cases
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    72
    // but for compressed oops heap should be at requested address.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    73
    assert(UseCompressedOops, "currently requested address used only for compressed oops");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    74
    if (PrintCompressedOopsMode) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    75
      tty->cr();
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
    76
      tty->print_cr("Reserved memory not at requested address: " PTR_FORMAT " vs " PTR_FORMAT, base, requested_address);
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    77
    }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    78
    // OS ignored requested address. Try different address.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    79
    if (special) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    80
      if (!os::release_memory_special(base, size)) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    81
        fatal("os::release_memory_special failed");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    82
      }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    83
    } else {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    84
      if (!os::release_memory(base, size)) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    85
        fatal("os::release_memory failed");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    86
      }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    87
    }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    88
  }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    89
  return true;
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    90
}
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    91
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
void ReservedSpace::initialize(size_t size, size_t alignment, bool large,
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    93
                               char* requested_address,
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    94
                               const size_t noaccess_prefix,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    95
                               bool executable) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  const size_t granularity = os::vm_allocation_granularity();
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
    97
  assert((size & (granularity - 1)) == 0,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
         "size not aligned to os::vm_allocation_granularity()");
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
    99
  assert((alignment & (granularity - 1)) == 0,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
         "alignment not aligned to os::vm_allocation_granularity()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  assert(alignment == 0 || is_power_of_2((intptr_t)alignment),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
         "not a power of 2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   104
  alignment = MAX2(alignment, (size_t)os::vm_page_size());
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   105
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   106
  // Assert that if noaccess_prefix is used, it is the same as alignment.
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   107
  assert(noaccess_prefix == 0 ||
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   108
         noaccess_prefix == alignment, "noaccess prefix wrong");
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   109
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  _base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  _special = false;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   113
  _executable = executable;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  _alignment = 0;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   115
  _noaccess_prefix = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  if (size == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // If OS doesn't support demand paging for large page memory, we need
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // to use reserve_memory_special() to reserve and pin the entire region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  bool special = large && !os::can_commit_large_page_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  char* base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   125
  if (requested_address != 0) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   126
    requested_address -= noaccess_prefix; // adjust requested address
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   127
    assert(requested_address != NULL, "huge noaccess prefix?");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   128
  }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   129
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  if (special) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   132
    base = os::reserve_memory_special(size, alignment, requested_address, executable);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    if (base != NULL) {
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   135
      if (failed_to_reserve_as_requested(base, requested_address, size, true)) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   136
        // OS ignored requested address. Try different address.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   137
        return;
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   138
      }
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   139
      // Check alignment constraints.
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   140
      assert((uintptr_t) base % alignment == 0,
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   141
             err_msg("Large pages returned a non-aligned address, base: "
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   142
                 PTR_FORMAT " alignment: " PTR_FORMAT,
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   143
                 base, (void*)(uintptr_t)alignment));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      _special = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      // failed; try to reserve regular memory below
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   147
      if (UseLargePages && (!FLAG_IS_DEFAULT(UseLargePages) ||
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   148
                            !FLAG_IS_DEFAULT(LargePageSizeInBytes))) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   149
        if (PrintCompressedOopsMode) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   150
          tty->cr();
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   151
          tty->print_cr("Reserve regular memory without large pages.");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   152
        }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   153
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  if (base == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    // Optimistically assume that the OSes returns an aligned base pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    // When reserving a large address range, most OSes seem to align to at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // least 64K.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // If the memory was requested at a particular address, use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    // os::attempt_reserve_memory_at() to avoid over mapping something
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    // important.  If available space is not detected, return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    if (requested_address != 0) {
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   167
      base = os::attempt_reserve_memory_at(size, requested_address);
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   168
      if (failed_to_reserve_as_requested(base, requested_address, size, false)) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   169
        // OS ignored requested address. Try different address.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   170
        base = NULL;
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   171
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
      base = os::reserve_memory(size, NULL, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    if (base == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    // Check alignment constraints
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   179
    if ((((size_t)base + noaccess_prefix) & (alignment - 1)) != 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
      // Base not aligned, retry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
      if (!os::release_memory(base, size)) fatal("os::release_memory failed");
14840
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13728
diff changeset
   182
      // Make sure that size is aligned
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      size = align_size_up(size, alignment);
14840
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13728
diff changeset
   184
      base = os::reserve_memory_aligned(size, alignment);
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   185
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   186
      if (requested_address != 0 &&
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   187
          failed_to_reserve_as_requested(base, requested_address, size, false)) {
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   188
        // As a result of the alignment constraints, the allocated base differs
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   189
        // from the requested address. Return back to the caller who can
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   190
        // take remedial action (like try again without a requested address).
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   191
        assert(_base == NULL, "should be");
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   192
        return;
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   193
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  _base = base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  _size = size;
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   199
  _alignment = alignment;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   200
  _noaccess_prefix = noaccess_prefix;
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   201
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   202
  // Assert that if noaccess_prefix is used, it is the same as alignment.
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   203
  assert(noaccess_prefix == 0 ||
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   204
         noaccess_prefix == _alignment, "noaccess prefix wrong");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  assert(markOopDesc::encode_pointer_as_mark(_base)->decode_pointer() == _base,
22775
52bc5222f5f1 8026849: Fix typos in the GC code, part 2
jwilhelm
parents: 22551
diff changeset
   207
         "area must be distinguishable from marks for mark-sweep");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  assert(markOopDesc::encode_pointer_as_mark(&_base[size])->decode_pointer() == &_base[size],
22775
52bc5222f5f1 8026849: Fix typos in the GC code, part 2
jwilhelm
parents: 22551
diff changeset
   209
         "area must be distinguishable from marks for mark-sweep");
1
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
ReservedSpace::ReservedSpace(char* base, size_t size, size_t alignment,
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   214
                             bool special, bool executable) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  assert((size % os::vm_allocation_granularity()) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
         "size not allocation aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  _base = base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  _size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  _alignment = alignment;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   220
  _noaccess_prefix = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  _special = special;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   222
  _executable = executable;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
ReservedSpace ReservedSpace::first_part(size_t partition_size, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
                                        bool split, bool realloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  assert(partition_size <= size(), "partition failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (split) {
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   230
    os::split_reserved_memory(base(), size(), partition_size, realloc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   232
  ReservedSpace result(base(), partition_size, alignment, special(),
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   233
                       executable());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
ReservedSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
ReservedSpace::last_part(size_t partition_size, size_t alignment) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  assert(partition_size <= size(), "partition failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  ReservedSpace result(base() + partition_size, size() - partition_size,
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   242
                       alignment, special(), executable());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
size_t ReservedSpace::page_align_size_up(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  return align_size_up(size, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
size_t ReservedSpace::page_align_size_down(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  return align_size_down(size, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
size_t ReservedSpace::allocation_align_size_up(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  return align_size_up(size, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
size_t ReservedSpace::allocation_align_size_down(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  return align_size_down(size, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
void ReservedSpace::release() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  if (is_reserved()) {
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   269
    char *real_base = _base - _noaccess_prefix;
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   270
    const size_t real_size = _size + _noaccess_prefix;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    if (special()) {
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   272
      os::release_memory_special(real_base, real_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    } else{
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   274
      os::release_memory(real_base, real_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    _base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    _size = 0;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   278
    _noaccess_prefix = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    _special = false;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   280
    _executable = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   284
void ReservedSpace::protect_noaccess_prefix(const size_t size) {
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   285
  assert( (_noaccess_prefix != 0) == (UseCompressedOops && _base != NULL &&
11778
eadd8fa553d9 7146354: Re-enable Compressed OOPs after 7118647 is resolved
coleenp
parents: 10565
diff changeset
   286
                                      (Universe::narrow_oop_base() != NULL) &&
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   287
                                      Universe::narrow_oop_use_implicit_null_checks()),
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   288
         "noaccess_prefix should be used only with non zero based compressed oops");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   289
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   290
  // If there is no noaccess prefix, return.
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   291
  if (_noaccess_prefix == 0) return;
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   292
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   293
  assert(_noaccess_prefix >= (size_t)os::vm_page_size(),
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   294
         "must be at least page size big");
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   295
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   296
  // Protect memory at the base of the allocated region.
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   297
  // If special, the page was committed (only matters on windows)
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   298
  if (!os::protect_memory(_base, _noaccess_prefix, os::MEM_PROT_NONE,
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   299
                          _special)) {
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   300
    fatal("cannot protect protection page");
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   301
  }
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   302
  if (PrintCompressedOopsMode) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   303
    tty->cr();
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   304
    tty->print_cr("Protected page at the reserved heap base: " PTR_FORMAT " / " INTX_FORMAT " bytes", _base, _noaccess_prefix);
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   305
  }
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   306
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   307
  _base += _noaccess_prefix;
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   308
  _size -= _noaccess_prefix;
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   309
  assert((size == _size) && ((uintptr_t)_base % _alignment == 0),
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   310
         "must be exactly of required size and alignment");
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   311
}
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   312
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   313
ReservedHeapSpace::ReservedHeapSpace(size_t size, size_t alignment,
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   314
                                     bool large, char* requested_address) :
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   315
  ReservedSpace(size, alignment, large,
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   316
                requested_address,
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1412
diff changeset
   317
                (UseCompressedOops && (Universe::narrow_oop_base() != NULL) &&
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1412
diff changeset
   318
                 Universe::narrow_oop_use_implicit_null_checks()) ?
1129
ec4dfac10759 6741004: UseLargePages + UseCompressedOops breaks implicit null checking guard page
coleenp
parents: 823
diff changeset
   319
                  lcm(os::vm_page_size(), alignment) : 0) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
   320
  if (base() > 0) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
   321
    MemTracker::record_virtual_memory_type((address)base(), mtJavaHeap);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
   322
  }
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
   323
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   324
  // Only reserved space for the java heap should have a noaccess_prefix
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   325
  // if using compressed oops.
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   326
  protect_noaccess_prefix(size);
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   327
}
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   328
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   329
// Reserve space for code segment.  Same as Java heap only we mark this as
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   330
// executable.
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   331
ReservedCodeSpace::ReservedCodeSpace(size_t r_size,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   332
                                     size_t rs_align,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   333
                                     bool large) :
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   334
  ReservedSpace(r_size, rs_align, large, /*executable*/ true) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
   335
  MemTracker::record_virtual_memory_type((address)base(), mtCode);
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   336
}
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   337
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
// VirtualSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
VirtualSpace::VirtualSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  _low_boundary           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  _high_boundary          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  _low                    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  _high                   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  _lower_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  _middle_high            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  _upper_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  _lower_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  _middle_high_boundary   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  _upper_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  _lower_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  _middle_alignment       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  _upper_alignment        = 0;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   354
  _special                = false;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   355
  _executable             = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
bool VirtualSpace::initialize(ReservedSpace rs, size_t committed_size) {
26700
8107d0778244 8049864: TestParallelHeapSizeFlags fails with unexpected heap size
ehelin
parents: 25469
diff changeset
   360
  const size_t max_commit_granularity = os::page_size_for_region(rs.size(), 1);
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   361
  return initialize_with_granularity(rs, committed_size, max_commit_granularity);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   362
}
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   363
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   364
bool VirtualSpace::initialize_with_granularity(ReservedSpace rs, size_t committed_size, size_t max_commit_granularity) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  if(!rs.is_reserved()) return false;  // allocation failed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  assert(_low_boundary == NULL, "VirtualSpace already initialized");
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   367
  assert(max_commit_granularity > 0, "Granularity must be non-zero.");
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   368
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  _low_boundary  = rs.base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  _high_boundary = low_boundary() + rs.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  _low = low_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  _high = low();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  _special = rs.special();
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   376
  _executable = rs.executable();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // When a VirtualSpace begins life at a large size, make all future expansion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // and shrinking occur aligned to a granularity of large pages.  This avoids
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // fragmentation of physical addresses that inhibits the use of large pages
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // by the OS virtual memory system.  Empirically,  we see that with a 4MB
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // page size, the only spaces that get handled this way are codecache and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // the heap itself, both of which provide a substantial performance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // boost in many benchmarks when covered by large pages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // No attempt is made to force large page alignment at the very top and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // bottom of the space if they are not aligned so already.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  _lower_alignment  = os::vm_page_size();
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   389
  _middle_alignment = max_commit_granularity;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  _upper_alignment  = os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // End of each region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  _lower_high_boundary = (char*) round_to((intptr_t) low_boundary(), middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  _middle_high_boundary = (char*) round_down((intptr_t) high_boundary(), middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  _upper_high_boundary = high_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // High address of each region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  _lower_high = low_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  _middle_high = lower_high_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  _upper_high = middle_high_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // commit to initial size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  if (committed_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    if (!expand_by(committed_size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
VirtualSpace::~VirtualSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
void VirtualSpace::release() {
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   418
  // This does not release memory it never reserved.
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   419
  // Caller must release via rs.release();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  _low_boundary           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  _high_boundary          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  _low                    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  _high                   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  _lower_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  _middle_high            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  _upper_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  _lower_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  _middle_high_boundary   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  _upper_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  _lower_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  _middle_alignment       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  _upper_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  _special                = false;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   434
  _executable             = false;
1
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
size_t VirtualSpace::committed_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  return pointer_delta(high(), low(), sizeof(char));
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
size_t VirtualSpace::reserved_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  return pointer_delta(high_boundary(), low_boundary(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
size_t VirtualSpace::uncommitted_size()  const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  return reserved_size() - committed_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   452
size_t VirtualSpace::actual_committed_size() const {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   453
  // Special VirtualSpaces commit all reserved space up front.
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   454
  if (special()) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   455
    return reserved_size();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   456
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   457
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   458
  size_t committed_low    = pointer_delta(_lower_high,  _low_boundary,         sizeof(char));
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   459
  size_t committed_middle = pointer_delta(_middle_high, _lower_high_boundary,  sizeof(char));
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   460
  size_t committed_high   = pointer_delta(_upper_high,  _middle_high_boundary, sizeof(char));
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   461
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   462
#ifdef ASSERT
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   463
  size_t lower  = pointer_delta(_lower_high_boundary,  _low_boundary,         sizeof(char));
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   464
  size_t middle = pointer_delta(_middle_high_boundary, _lower_high_boundary,  sizeof(char));
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   465
  size_t upper  = pointer_delta(_upper_high_boundary,  _middle_high_boundary, sizeof(char));
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   466
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   467
  if (committed_high > 0) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   468
    assert(committed_low == lower, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   469
    assert(committed_middle == middle, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   470
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   471
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   472
  if (committed_middle > 0) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   473
    assert(committed_low == lower, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   474
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   475
  if (committed_middle < middle) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   476
    assert(committed_high == 0, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   477
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   478
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   479
  if (committed_low < lower) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   480
    assert(committed_high == 0, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   481
    assert(committed_middle == 0, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   482
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   483
#endif
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   484
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   485
  return committed_low + committed_middle + committed_high;
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   486
}
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   487
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
bool VirtualSpace::contains(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  return low() <= (const char*) p && (const char*) p < high();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
   First we need to determine if a particular virtual space is using large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
   pages.  This is done at the initialize function and only virtual spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
   that are larger than LargePageSizeInBytes use large pages.  Once we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
   have determined this, all expand_by and shrink_by calls must grow and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
   shrink by large page size chunks.  If a particular request
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
   is within the current large page, the call to commit and uncommit memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
   can be ignored.  In the case that the low and high boundaries of this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
   space is not large page aligned, the pages leading to the first large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
   page address and the pages after the last large page address must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
   allocated with default pages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
bool VirtualSpace::expand_by(size_t bytes, bool pre_touch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  if (uncommitted_size() < bytes) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  if (special()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    // don't commit memory if the entire space is pinned in memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    _high += bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  char* previous_high = high();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  char* unaligned_new_high = high() + bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  assert(unaligned_new_high <= high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
         "cannot expand by more than upper boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  // Calculate where the new high for each of the regions should be.  If
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  // the low_boundary() and high_boundary() are LargePageSizeInBytes aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  // then the unaligned lower and upper new highs would be the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  // lower_high() and upper_high() respectively.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  char* unaligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    MIN2(unaligned_new_high, lower_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  char* unaligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    MIN2(unaligned_new_high, middle_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  char* unaligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    MIN2(unaligned_new_high, upper_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  // Align the new highs based on the regions alignment.  lower and upper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  // alignment will always be default page size.  middle alignment will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // LargePageSizeInBytes if the actual size of the virtual space is in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // fact larger than LargePageSizeInBytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  char* aligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    (char*) round_to((intptr_t) unaligned_lower_new_high, lower_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  char* aligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    (char*) round_to((intptr_t) unaligned_middle_new_high, middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  char* aligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    (char*) round_to((intptr_t) unaligned_upper_new_high, upper_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  // Determine which regions need to grow in this expand_by call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  // If you are growing in the lower region, high() must be in that
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20402
diff changeset
   543
  // region so calculate the size based on high().  For the middle and
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  // upper regions, determine the starting point of growth based on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  // location of high().  By getting the MAX of the region's low address
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20402
diff changeset
   546
  // (or the previous region's high address) and high(), we can tell if it
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  // is an intra or inter region growth.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  size_t lower_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  if (aligned_lower_new_high > lower_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    lower_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      pointer_delta(aligned_lower_new_high, lower_high(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  size_t middle_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  if (aligned_middle_new_high > middle_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    middle_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
      pointer_delta(aligned_middle_new_high, middle_high(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  size_t upper_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  if (aligned_upper_new_high > upper_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    upper_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
      pointer_delta(aligned_upper_new_high, upper_high(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  // Check contiguity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
         lower_high() <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
         middle_high() <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
         upper_high() <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  // Commit regions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  if (lower_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
           lower_high() + lower_needs <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
           "must not expand beyond region");
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   580
    if (!os::commit_memory(lower_high(), lower_needs, _executable)) {
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   581
      debug_only(warning("INFO: os::commit_memory(" PTR_FORMAT
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   582
                         ", lower_needs=" SIZE_FORMAT ", %d) failed",
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   583
                         lower_high(), lower_needs, _executable);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
      _lower_high += lower_needs;
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   587
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  if (middle_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
    assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
           middle_high() + middle_needs <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
           "must not expand beyond region");
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   593
    if (!os::commit_memory(middle_high(), middle_needs, middle_alignment(),
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   594
                           _executable)) {
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   595
      debug_only(warning("INFO: os::commit_memory(" PTR_FORMAT
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   596
                         ", middle_needs=" SIZE_FORMAT ", " SIZE_FORMAT
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   597
                         ", %d) failed", middle_high(), middle_needs,
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   598
                         middle_alignment(), _executable);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    _middle_high += middle_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  if (upper_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
           upper_high() + upper_needs <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
           "must not expand beyond region");
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   607
    if (!os::commit_memory(upper_high(), upper_needs, _executable)) {
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   608
      debug_only(warning("INFO: os::commit_memory(" PTR_FORMAT
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   609
                         ", upper_needs=" SIZE_FORMAT ", %d) failed",
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   610
                         upper_high(), upper_needs, _executable);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
      _upper_high += upper_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  if (pre_touch || AlwaysPreTouch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    int vm_ps = os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    for (char* curr = previous_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
         curr < unaligned_new_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
         curr += vm_ps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
      // Note the use of a write here; originally we tried just a read, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
      // since the value read was unused, the optimizer removed the read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
      // If we ever have a concurrent touchahead thread, we'll want to use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
      // a read, to avoid the potential of overwriting data (if a mutator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
      // thread beats the touchahead thread to a page).  There are various
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
      // ways of making sure this read is not optimized away: for example,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
      // generating the code for a read procedure at runtime.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
      *curr = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  _high += bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
// A page is uncommitted if the contents of the entire page is deemed unusable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
// Continue to decrement the high() pointer until it reaches a page boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
// in which case that particular page can now be uncommitted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
void VirtualSpace::shrink_by(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  if (committed_size() < size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    fatal("Cannot shrink virtual space to negative size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  if (special()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    // don't uncommit if the entire space is pinned in memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    _high -= size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  char* unaligned_new_high = high() - size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  assert(unaligned_new_high >= low_boundary(), "cannot shrink past lower boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  // Calculate new unaligned address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  char* unaligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    MAX2(unaligned_new_high, middle_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  char* unaligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    MAX2(unaligned_new_high, lower_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  char* unaligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    MAX2(unaligned_new_high, low_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  // Align address to region's alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  char* aligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    (char*) round_to((intptr_t) unaligned_upper_new_high, upper_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  char* aligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    (char*) round_to((intptr_t) unaligned_middle_new_high, middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  char* aligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    (char*) round_to((intptr_t) unaligned_lower_new_high, lower_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  // Determine which regions need to shrink
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  size_t upper_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  if (aligned_upper_new_high < upper_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    upper_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
      pointer_delta(upper_high(), aligned_upper_new_high, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  size_t middle_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  if (aligned_middle_new_high < middle_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    middle_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
      pointer_delta(middle_high(), aligned_middle_new_high, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  size_t lower_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  if (aligned_lower_new_high < lower_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    lower_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
      pointer_delta(lower_high(), aligned_lower_new_high, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  // Check contiguity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
         upper_high() <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
         middle_high() <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
         lower_high() <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  // Uncommit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  if (upper_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
    assert(middle_high_boundary() <= aligned_upper_new_high &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
           aligned_upper_new_high + upper_needs <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
           "must not shrink beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    if (!os::uncommit_memory(aligned_upper_new_high, upper_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
      debug_only(warning("os::uncommit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      _upper_high -= upper_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  if (middle_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    assert(lower_high_boundary() <= aligned_middle_new_high &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
           aligned_middle_new_high + middle_needs <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
           "must not shrink beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
    if (!os::uncommit_memory(aligned_middle_new_high, middle_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
      debug_only(warning("os::uncommit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
      _middle_high -= middle_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  if (lower_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    assert(low_boundary() <= aligned_lower_new_high &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
           aligned_lower_new_high + lower_needs <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
           "must not shrink beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    if (!os::uncommit_memory(aligned_lower_new_high, lower_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
      debug_only(warning("os::uncommit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
      _lower_high -= lower_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  _high -= size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
void VirtualSpace::check_for_contiguity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  // Check contiguity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
         lower_high() <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
         middle_high() <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
         upper_high() <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  assert(low() >= low_boundary(), "low");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  assert(low_boundary() <= lower_high_boundary(), "lower high boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  assert(upper_high_boundary() <= high_boundary(), "upper high boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  assert(high() <= upper_high(), "upper high");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
19993
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   753
void VirtualSpace::print_on(outputStream* out) {
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   754
  out->print   ("Virtual space:");
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   755
  if (special()) out->print(" (pinned in memory)");
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   756
  out->cr();
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   757
  out->print_cr(" - committed: " SIZE_FORMAT, committed_size());
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   758
  out->print_cr(" - reserved:  " SIZE_FORMAT, reserved_size());
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   759
  out->print_cr(" - [low, high]:     [" INTPTR_FORMAT ", " INTPTR_FORMAT "]",  low(), high());
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   760
  out->print_cr(" - [low_b, high_b]: [" INTPTR_FORMAT ", " INTPTR_FORMAT "]",  low_boundary(), high_boundary());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
19993
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   763
void VirtualSpace::print() {
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   764
  print_on(tty);
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   765
}
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   766
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   767
/////////////// Unit tests ///////////////
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   768
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   769
#ifndef PRODUCT
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   770
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   771
#define test_log(...) \
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   772
  do {\
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   773
    if (VerboseInternalVMTests) { \
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   774
      tty->print_cr(__VA_ARGS__); \
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   775
      tty->flush(); \
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   776
    }\
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   777
  } while (false)
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   778
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   779
class TestReservedSpace : AllStatic {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   780
 public:
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   781
  static void small_page_write(void* addr, size_t size) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   782
    size_t page_size = os::vm_page_size();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   783
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   784
    char* end = (char*)addr + size;
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   785
    for (char* p = (char*)addr; p < end; p += page_size) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   786
      *p = 1;
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   787
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   788
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   789
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   790
  static void release_memory_for_test(ReservedSpace rs) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   791
    if (rs.special()) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   792
      guarantee(os::release_memory_special(rs.base(), rs.size()), "Shouldn't fail");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   793
    } else {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   794
      guarantee(os::release_memory(rs.base(), rs.size()), "Shouldn't fail");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   795
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   796
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   797
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   798
  static void test_reserved_space1(size_t size, size_t alignment) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   799
    test_log("test_reserved_space1(%p)", (void*) (uintptr_t) size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   800
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   801
    assert(is_size_aligned(size, alignment), "Incorrect input parameters");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   802
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   803
    ReservedSpace rs(size,          // size
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   804
                     alignment,     // alignment
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   805
                     UseLargePages, // large
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   806
                     NULL,          // requested_address
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   807
                     0);            // noacces_prefix
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   808
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   809
    test_log(" rs.special() == %d", rs.special());
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   810
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   811
    assert(rs.base() != NULL, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   812
    assert(rs.size() == size, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   813
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   814
    assert(is_ptr_aligned(rs.base(), alignment), "aligned sizes should always give aligned addresses");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   815
    assert(is_size_aligned(rs.size(), alignment), "aligned sizes should always give aligned addresses");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   816
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   817
    if (rs.special()) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   818
      small_page_write(rs.base(), size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   819
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   820
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   821
    release_memory_for_test(rs);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   822
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   823
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   824
  static void test_reserved_space2(size_t size) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   825
    test_log("test_reserved_space2(%p)", (void*)(uintptr_t)size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   826
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   827
    assert(is_size_aligned(size, os::vm_allocation_granularity()), "Must be at least AG aligned");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   828
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   829
    ReservedSpace rs(size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   830
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   831
    test_log(" rs.special() == %d", rs.special());
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   832
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   833
    assert(rs.base() != NULL, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   834
    assert(rs.size() == size, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   835
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   836
    if (rs.special()) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   837
      small_page_write(rs.base(), size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   838
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   839
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   840
    release_memory_for_test(rs);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   841
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   842
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   843
  static void test_reserved_space3(size_t size, size_t alignment, bool maybe_large) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   844
    test_log("test_reserved_space3(%p, %p, %d)",
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   845
        (void*)(uintptr_t)size, (void*)(uintptr_t)alignment, maybe_large);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   846
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   847
    assert(is_size_aligned(size, os::vm_allocation_granularity()), "Must be at least AG aligned");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   848
    assert(is_size_aligned(size, alignment), "Must be at least aligned against alignment");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   849
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   850
    bool large = maybe_large && UseLargePages && size >= os::large_page_size();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   851
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   852
    ReservedSpace rs(size, alignment, large, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   853
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   854
    test_log(" rs.special() == %d", rs.special());
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   855
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   856
    assert(rs.base() != NULL, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   857
    assert(rs.size() == size, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   858
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   859
    if (rs.special()) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   860
      small_page_write(rs.base(), size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   861
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   862
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   863
    release_memory_for_test(rs);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   864
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   865
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   866
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   867
  static void test_reserved_space1() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   868
    size_t size = 2 * 1024 * 1024;
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   869
    size_t ag   = os::vm_allocation_granularity();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   870
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   871
    test_reserved_space1(size,      ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   872
    test_reserved_space1(size * 2,  ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   873
    test_reserved_space1(size * 10, ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   874
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   875
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   876
  static void test_reserved_space2() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   877
    size_t size = 2 * 1024 * 1024;
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   878
    size_t ag = os::vm_allocation_granularity();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   879
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   880
    test_reserved_space2(size * 1);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   881
    test_reserved_space2(size * 2);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   882
    test_reserved_space2(size * 10);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   883
    test_reserved_space2(ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   884
    test_reserved_space2(size - ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   885
    test_reserved_space2(size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   886
    test_reserved_space2(size + ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   887
    test_reserved_space2(size * 2);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   888
    test_reserved_space2(size * 2 - ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   889
    test_reserved_space2(size * 2 + ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   890
    test_reserved_space2(size * 3);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   891
    test_reserved_space2(size * 3 - ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   892
    test_reserved_space2(size * 3 + ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   893
    test_reserved_space2(size * 10);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   894
    test_reserved_space2(size * 10 + size / 2);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   895
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   896
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   897
  static void test_reserved_space3() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   898
    size_t ag = os::vm_allocation_granularity();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   899
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   900
    test_reserved_space3(ag,      ag    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   901
    test_reserved_space3(ag * 2,  ag    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   902
    test_reserved_space3(ag * 3,  ag    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   903
    test_reserved_space3(ag * 2,  ag * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   904
    test_reserved_space3(ag * 4,  ag * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   905
    test_reserved_space3(ag * 8,  ag * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   906
    test_reserved_space3(ag * 4,  ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   907
    test_reserved_space3(ag * 8,  ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   908
    test_reserved_space3(ag * 16, ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   909
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   910
    if (UseLargePages) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   911
      size_t lp = os::large_page_size();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   912
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   913
      // Without large pages
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   914
      test_reserved_space3(lp,     ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   915
      test_reserved_space3(lp * 2, ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   916
      test_reserved_space3(lp * 4, ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   917
      test_reserved_space3(lp,     lp    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   918
      test_reserved_space3(lp * 2, lp    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   919
      test_reserved_space3(lp * 3, lp    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   920
      test_reserved_space3(lp * 2, lp * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   921
      test_reserved_space3(lp * 4, lp * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   922
      test_reserved_space3(lp * 8, lp * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   923
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   924
      // With large pages
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   925
      test_reserved_space3(lp, ag * 4    , true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   926
      test_reserved_space3(lp * 2, ag * 4, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   927
      test_reserved_space3(lp * 4, ag * 4, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   928
      test_reserved_space3(lp, lp        , true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   929
      test_reserved_space3(lp * 2, lp    , true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   930
      test_reserved_space3(lp * 3, lp    , true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   931
      test_reserved_space3(lp * 2, lp * 2, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   932
      test_reserved_space3(lp * 4, lp * 2, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   933
      test_reserved_space3(lp * 8, lp * 2, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   934
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   935
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   936
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   937
  static void test_reserved_space() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   938
    test_reserved_space1();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   939
    test_reserved_space2();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   940
    test_reserved_space3();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   941
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   942
};
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   943
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   944
void TestReservedSpace_test() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   945
  TestReservedSpace::test_reserved_space();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   946
}
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   947
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   948
#define assert_equals(actual, expected)     \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   949
  assert(actual == expected,                \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   950
    err_msg("Got " SIZE_FORMAT " expected " \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   951
      SIZE_FORMAT, actual, expected));
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   952
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   953
#define assert_ge(value1, value2)                  \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   954
  assert(value1 >= value2,                         \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   955
    err_msg("'" #value1 "': " SIZE_FORMAT " '"     \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   956
      #value2 "': " SIZE_FORMAT, value1, value2));
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   957
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   958
#define assert_lt(value1, value2)                  \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   959
  assert(value1 < value2,                          \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   960
    err_msg("'" #value1 "': " SIZE_FORMAT " '"     \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   961
      #value2 "': " SIZE_FORMAT, value1, value2));
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   962
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   963
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   964
class TestVirtualSpace : AllStatic {
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   965
  enum TestLargePages {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   966
    Default,
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   967
    Disable,
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   968
    Reserve,
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   969
    Commit
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   970
  };
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   971
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   972
  static ReservedSpace reserve_memory(size_t reserve_size_aligned, TestLargePages mode) {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   973
    switch(mode) {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   974
    default:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   975
    case Default:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   976
    case Reserve:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   977
      return ReservedSpace(reserve_size_aligned);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   978
    case Disable:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   979
    case Commit:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   980
      return ReservedSpace(reserve_size_aligned,
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   981
                           os::vm_allocation_granularity(),
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   982
                           /* large */ false, /* exec */ false);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   983
    }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   984
  }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   985
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   986
  static bool initialize_virtual_space(VirtualSpace& vs, ReservedSpace rs, TestLargePages mode) {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   987
    switch(mode) {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   988
    default:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   989
    case Default:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   990
    case Reserve:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   991
      return vs.initialize(rs, 0);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   992
    case Disable:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   993
      return vs.initialize_with_granularity(rs, 0, os::vm_page_size());
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   994
    case Commit:
26700
8107d0778244 8049864: TestParallelHeapSizeFlags fails with unexpected heap size
ehelin
parents: 25469
diff changeset
   995
      return vs.initialize_with_granularity(rs, 0, os::page_size_for_region(rs.size(), 1));
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   996
    }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   997
  }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   998
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   999
 public:
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1000
  static void test_virtual_space_actual_committed_space(size_t reserve_size, size_t commit_size,
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1001
                                                        TestLargePages mode = Default) {
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1002
    size_t granularity = os::vm_allocation_granularity();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1003
    size_t reserve_size_aligned = align_size_up(reserve_size, granularity);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1004
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1005
    ReservedSpace reserved = reserve_memory(reserve_size_aligned, mode);
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1006
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1007
    assert(reserved.is_reserved(), "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1008
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1009
    VirtualSpace vs;
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1010
    bool initialized = initialize_virtual_space(vs, reserved, mode);
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1011
    assert(initialized, "Failed to initialize VirtualSpace");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1012
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1013
    vs.expand_by(commit_size, false);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1014
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1015
    if (vs.special()) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1016
      assert_equals(vs.actual_committed_size(), reserve_size_aligned);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1017
    } else {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1018
      assert_ge(vs.actual_committed_size(), commit_size);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1019
      // Approximate the commit granularity.
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1020
      // Make sure that we don't commit using large pages
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1021
      // if large pages has been disabled for this VirtualSpace.
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1022
      size_t commit_granularity = (mode == Disable || !UseLargePages) ?
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1023
                                   os::vm_page_size() : os::large_page_size();
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1024
      assert_lt(vs.actual_committed_size(), commit_size + commit_granularity);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1025
    }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1026
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1027
    reserved.release();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1028
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1029
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1030
  static void test_virtual_space_actual_committed_space_one_large_page() {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1031
    if (!UseLargePages) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1032
      return;
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1033
    }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1034
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1035
    size_t large_page_size = os::large_page_size();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1036
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1037
    ReservedSpace reserved(large_page_size, large_page_size, true, false);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1038
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1039
    assert(reserved.is_reserved(), "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1040
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1041
    VirtualSpace vs;
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1042
    bool initialized = vs.initialize(reserved, 0);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1043
    assert(initialized, "Failed to initialize VirtualSpace");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1044
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1045
    vs.expand_by(large_page_size, false);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1046
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1047
    assert_equals(vs.actual_committed_size(), large_page_size);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1048
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1049
    reserved.release();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1050
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1051
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1052
  static void test_virtual_space_actual_committed_space() {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1053
    test_virtual_space_actual_committed_space(4 * K, 0);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1054
    test_virtual_space_actual_committed_space(4 * K, 4 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1055
    test_virtual_space_actual_committed_space(8 * K, 0);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1056
    test_virtual_space_actual_committed_space(8 * K, 4 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1057
    test_virtual_space_actual_committed_space(8 * K, 8 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1058
    test_virtual_space_actual_committed_space(12 * K, 0);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1059
    test_virtual_space_actual_committed_space(12 * K, 4 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1060
    test_virtual_space_actual_committed_space(12 * K, 8 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1061
    test_virtual_space_actual_committed_space(12 * K, 12 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1062
    test_virtual_space_actual_committed_space(64 * K, 0);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1063
    test_virtual_space_actual_committed_space(64 * K, 32 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1064
    test_virtual_space_actual_committed_space(64 * K, 64 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1065
    test_virtual_space_actual_committed_space(2 * M, 0);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1066
    test_virtual_space_actual_committed_space(2 * M, 4 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1067
    test_virtual_space_actual_committed_space(2 * M, 64 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1068
    test_virtual_space_actual_committed_space(2 * M, 1 * M);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1069
    test_virtual_space_actual_committed_space(2 * M, 2 * M);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1070
    test_virtual_space_actual_committed_space(10 * M, 0);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1071
    test_virtual_space_actual_committed_space(10 * M, 4 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1072
    test_virtual_space_actual_committed_space(10 * M, 8 * K);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1073
    test_virtual_space_actual_committed_space(10 * M, 1 * M);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1074
    test_virtual_space_actual_committed_space(10 * M, 2 * M);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1075
    test_virtual_space_actual_committed_space(10 * M, 5 * M);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1076
    test_virtual_space_actual_committed_space(10 * M, 10 * M);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1077
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1078
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1079
  static void test_virtual_space_disable_large_pages() {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1080
    if (!UseLargePages) {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1081
      return;
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1082
    }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1083
    // These test cases verify that if we force VirtualSpace to disable large pages
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1084
    test_virtual_space_actual_committed_space(10 * M, 0, Disable);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1085
    test_virtual_space_actual_committed_space(10 * M, 4 * K, Disable);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1086
    test_virtual_space_actual_committed_space(10 * M, 8 * K, Disable);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1087
    test_virtual_space_actual_committed_space(10 * M, 1 * M, Disable);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1088
    test_virtual_space_actual_committed_space(10 * M, 2 * M, Disable);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1089
    test_virtual_space_actual_committed_space(10 * M, 5 * M, Disable);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1090
    test_virtual_space_actual_committed_space(10 * M, 10 * M, Disable);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1091
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1092
    test_virtual_space_actual_committed_space(10 * M, 0, Reserve);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1093
    test_virtual_space_actual_committed_space(10 * M, 4 * K, Reserve);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1094
    test_virtual_space_actual_committed_space(10 * M, 8 * K, Reserve);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1095
    test_virtual_space_actual_committed_space(10 * M, 1 * M, Reserve);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1096
    test_virtual_space_actual_committed_space(10 * M, 2 * M, Reserve);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1097
    test_virtual_space_actual_committed_space(10 * M, 5 * M, Reserve);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1098
    test_virtual_space_actual_committed_space(10 * M, 10 * M, Reserve);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1099
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1100
    test_virtual_space_actual_committed_space(10 * M, 0, Commit);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1101
    test_virtual_space_actual_committed_space(10 * M, 4 * K, Commit);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1102
    test_virtual_space_actual_committed_space(10 * M, 8 * K, Commit);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1103
    test_virtual_space_actual_committed_space(10 * M, 1 * M, Commit);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1104
    test_virtual_space_actual_committed_space(10 * M, 2 * M, Commit);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1105
    test_virtual_space_actual_committed_space(10 * M, 5 * M, Commit);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1106
    test_virtual_space_actual_committed_space(10 * M, 10 * M, Commit);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1107
  }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1108
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1109
  static void test_virtual_space() {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1110
    test_virtual_space_actual_committed_space();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1111
    test_virtual_space_actual_committed_space_one_large_page();
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1112
    test_virtual_space_disable_large_pages();
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1113
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1114
};
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1115
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1116
void TestVirtualSpace_test() {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1117
  TestVirtualSpace::test_virtual_space();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1118
}
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1119
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1120
#endif // PRODUCT
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1121
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
#endif