hotspot/src/share/vm/memory/virtualspace.cpp
author david
Tue, 29 Sep 2015 11:02:08 +0200
changeset 33105 294e48b4f704
parent 31620 53be635ad49c
child 33148 68fa8b6c4340
permissions -rw-r--r--
8080775: Better argument formatting for assert() and friends Reviewed-by: kbarrett, pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
     2
 * Copyright (c) 1997, 2015, 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"
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30291
diff changeset
    26
#include "code/codeCacheExtensions.hpp"
30291
54cdc5c1a9cb 8068352: Move virtualspace.* out of src/share/vm/runtime to memory directory
coleenp
parents: 30166
diff changeset
    27
#include "memory/virtualspace.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5898
diff changeset
    28
#include "oops/markOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5898
diff changeset
    29
#include "oops/oop.inline.hpp"
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
    30
#include "services/memTracker.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
    32
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// ReservedSpace
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    35
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    36
// Dummy constructor
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    37
ReservedSpace::ReservedSpace() : _base(NULL), _size(0), _noaccess_prefix(0),
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    38
    _alignment(0), _special(false), _executable(false) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    39
}
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    40
30166
a85188117643 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 30158
diff changeset
    41
ReservedSpace::ReservedSpace(size_t size, size_t preferred_page_size) {
a85188117643 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 30158
diff changeset
    42
  bool has_preferred_page_size = preferred_page_size != 0;
28631
a56cae1b428d 8066875: VirtualSpace does not use large pages
ehelin
parents: 28372
diff changeset
    43
  // Want to use large pages where possible and pad with small pages.
30166
a85188117643 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 30158
diff changeset
    44
  size_t page_size = has_preferred_page_size ? preferred_page_size : os::page_size_for_region_unaligned(size, 1);
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
    45
  bool large_pages = page_size != (size_t)os::vm_page_size();
30158
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    46
  size_t alignment;
30166
a85188117643 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 30158
diff changeset
    47
  if (large_pages && has_preferred_page_size) {
30158
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    48
    alignment = MAX2(page_size, (size_t)os::vm_allocation_granularity());
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    49
    // ReservedSpace initialization requires size to be aligned to the given
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    50
    // alignment. Align the size up.
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    51
    size = align_size_up(size, alignment);
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    52
  } else {
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    53
    // Don't force the alignment to be large page aligned,
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    54
    // since that will waste memory.
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    55
    alignment = os::vm_allocation_granularity();
bd6094906ef8 8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents: 29580
diff changeset
    56
  }
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
    57
  initialize(size, alignment, large_pages, NULL, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
ReservedSpace::ReservedSpace(size_t size, size_t alignment,
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    61
                             bool large,
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
    62
                             char* requested_address) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
    63
  initialize(size, alignment, large, requested_address, false);
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    64
}
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    65
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    66
ReservedSpace::ReservedSpace(size_t size, size_t alignment,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    67
                             bool large,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    68
                             bool executable) {
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
    69
  initialize(size, alignment, large, NULL, executable);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    72
// Helper method.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    73
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
    74
                                           const size_t size, bool special)
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    75
{
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    76
  if (base == requested_address || requested_address == NULL)
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    77
    return false; // did not fail
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    78
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    79
  if (base != NULL) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    80
    // Different reserve address may be acceptable in other cases
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    81
    // but for compressed oops heap should be at requested address.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    82
    assert(UseCompressedOops, "currently requested address used only for compressed oops");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    83
    if (PrintCompressedOopsMode) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    84
      tty->cr();
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
    85
      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
    86
    }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    87
    // OS ignored requested address. Try different address.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    88
    if (special) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    89
      if (!os::release_memory_special(base, size)) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    90
        fatal("os::release_memory_special failed");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    91
      }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    92
    } else {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    93
      if (!os::release_memory(base, size)) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    94
        fatal("os::release_memory failed");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    95
      }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    96
    }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    97
  }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    98
  return true;
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
    99
}
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   100
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
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
   102
                               char* requested_address,
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   103
                               bool executable) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  const size_t granularity = os::vm_allocation_granularity();
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   105
  assert((size & (granularity - 1)) == 0,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
         "size not aligned to os::vm_allocation_granularity()");
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   107
  assert((alignment & (granularity - 1)) == 0,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
         "alignment not aligned to os::vm_allocation_granularity()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  assert(alignment == 0 || is_power_of_2((intptr_t)alignment),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
         "not a power of 2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   112
  alignment = MAX2(alignment, (size_t)os::vm_page_size());
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   113
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  _base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  _special = false;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   117
  _executable = executable;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  _alignment = 0;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   119
  _noaccess_prefix = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  if (size == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // If OS doesn't support demand paging for large page memory, we need
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // to use reserve_memory_special() to reserve and pin the entire region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  bool special = large && !os::can_commit_large_page_memory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  char* base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  if (special) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   131
    base = os::reserve_memory_special(size, alignment, requested_address, executable);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    if (base != NULL) {
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   134
      if (failed_to_reserve_as_requested(base, requested_address, size, true)) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   135
        // OS ignored requested address. Try different address.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   136
        return;
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   137
      }
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
   138
      // Check alignment constraints.
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   139
      assert((uintptr_t) base % alignment == 0,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
   140
             "Large pages returned a non-aligned address, base: "
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
   141
             PTR_FORMAT " alignment: " PTR_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
   142
             base, (void*)(uintptr_t)alignment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      _special = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      // failed; try to reserve regular memory below
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   146
      if (UseLargePages && (!FLAG_IS_DEFAULT(UseLargePages) ||
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   147
                            !FLAG_IS_DEFAULT(LargePageSizeInBytes))) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   148
        if (PrintCompressedOopsMode) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   149
          tty->cr();
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   150
          tty->print_cr("Reserve regular memory without large pages.");
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   151
        }
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   152
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  if (base == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    // Optimistically assume that the OSes returns an aligned base pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    // When reserving a large address range, most OSes seem to align to at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    // least 64K.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    // If the memory was requested at a particular address, use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // os::attempt_reserve_memory_at() to avoid over mapping something
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    // important.  If available space is not detected, return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    if (requested_address != 0) {
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   166
      base = os::attempt_reserve_memory_at(size, requested_address);
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   167
      if (failed_to_reserve_as_requested(base, requested_address, size, false)) {
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   168
        // OS ignored requested address. Try different address.
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   169
        base = NULL;
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   170
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      base = os::reserve_memory(size, NULL, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    if (base == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    // Check alignment constraints
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   178
    if ((((size_t)base) & (alignment - 1)) != 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      // Base not aligned, retry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
      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
   181
      // Make sure that size is aligned
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      size = align_size_up(size, alignment);
14840
8994c2377547 7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents: 13728
diff changeset
   183
      base = os::reserve_memory_aligned(size, alignment);
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   184
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   185
      if (requested_address != 0 &&
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   186
          failed_to_reserve_as_requested(base, requested_address, size, false)) {
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   187
        // As a result of the alignment constraints, the allocated base differs
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   188
        // from the requested address. Return back to the caller who can
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   189
        // take remedial action (like try again without a requested address).
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   190
        assert(_base == NULL, "should be");
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   191
        return;
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   192
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // Done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  _base = base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  _size = size;
10237
df347ffafa0d 7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents: 7397
diff changeset
   198
  _alignment = alignment;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
ReservedSpace::ReservedSpace(char* base, size_t size, size_t alignment,
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   203
                             bool special, bool executable) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  assert((size % os::vm_allocation_granularity()) == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
         "size not allocation aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  _base = base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  _size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  _alignment = alignment;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   209
  _noaccess_prefix = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  _special = special;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   211
  _executable = executable;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
ReservedSpace ReservedSpace::first_part(size_t partition_size, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
                                        bool split, bool realloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  assert(partition_size <= size(), "partition failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  if (split) {
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   219
    os::split_reserved_memory(base(), size(), partition_size, realloc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  }
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   221
  ReservedSpace result(base(), partition_size, alignment, special(),
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   222
                       executable());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
ReservedSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
ReservedSpace::last_part(size_t partition_size, size_t alignment) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  assert(partition_size <= size(), "partition failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  ReservedSpace result(base() + partition_size, size() - partition_size,
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   231
                       alignment, special(), executable());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
size_t ReservedSpace::page_align_size_up(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  return align_size_up(size, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
size_t ReservedSpace::page_align_size_down(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  return align_size_down(size, os::vm_page_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
size_t ReservedSpace::allocation_align_size_up(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  return align_size_up(size, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
size_t ReservedSpace::allocation_align_size_down(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  return align_size_down(size, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
void ReservedSpace::release() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  if (is_reserved()) {
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   258
    char *real_base = _base - _noaccess_prefix;
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   259
    const size_t real_size = _size + _noaccess_prefix;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    if (special()) {
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   261
      os::release_memory_special(real_base, real_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    } else{
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   263
      os::release_memory(real_base, real_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    _base = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    _size = 0;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   267
    _noaccess_prefix = 0;
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   268
    _alignment = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    _special = false;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   270
    _executable = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   274
static size_t noaccess_prefix_size(size_t alignment) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   275
  return lcm(os::vm_page_size(), alignment);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   276
}
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   277
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   278
void ReservedHeapSpace::establish_noaccess_prefix() {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   279
  assert(_alignment >= (size_t)os::vm_page_size(), "must be at least page size big");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   280
  _noaccess_prefix = noaccess_prefix_size(_alignment);
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   281
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   282
  if (base() && base() + _size > (char *)OopEncodingHeapMax) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   283
    if (true
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   284
        WIN64_ONLY(&& !UseLargePages)
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   285
        AIX_ONLY(&& os::vm_page_size() != SIZE_64K)) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   286
      // Protect memory at the base of the allocated region.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   287
      // If special, the page was committed (only matters on windows)
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   288
      if (!os::protect_memory(_base, _noaccess_prefix, os::MEM_PROT_NONE, _special)) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   289
        fatal("cannot protect protection page");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   290
      }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   291
      if (PrintCompressedOopsMode) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   292
        tty->cr();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   293
        tty->print_cr("Protected page at the reserved heap base: "
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   294
                      PTR_FORMAT " / " INTX_FORMAT " bytes", _base, _noaccess_prefix);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   295
      }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   296
      assert(Universe::narrow_oop_use_implicit_null_checks() == true, "not initialized?");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   297
    } else {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   298
      Universe::set_narrow_oop_use_implicit_null_checks(false);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   299
    }
5898
7f882d601e07 6947341: JVM Crash running Oracle ATG CRMDemo
kvn
parents: 5547
diff changeset
   300
  }
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   301
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   302
  _base += _noaccess_prefix;
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   303
  _size -= _noaccess_prefix;
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   304
  assert(((uintptr_t)_base % _alignment == 0), "must be exactly of required alignment");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   305
}
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   306
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   307
// Tries to allocate memory of size 'size' at address requested_address with alignment 'alignment'.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   308
// Does not check whether the reserved memory actually is at requested_address, as the memory returned
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   309
// might still fulfill the wishes of the caller.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   310
// Assures the memory is aligned to 'alignment'.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   311
// NOTE: If ReservedHeapSpace already points to some reserved memory this is freed, first.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   312
void ReservedHeapSpace::try_reserve_heap(size_t size,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   313
                                         size_t alignment,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   314
                                         bool large,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   315
                                         char* requested_address) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   316
  if (_base != NULL) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   317
    // We tried before, but we didn't like the address delivered.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   318
    release();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   319
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   320
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   321
  // If OS doesn't support demand paging for large page memory, we need
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   322
  // to use reserve_memory_special() to reserve and pin the entire region.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   323
  bool special = large && !os::can_commit_large_page_memory();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   324
  char* base = NULL;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   325
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   326
  if (PrintCompressedOopsMode && Verbose) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   327
    tty->print("Trying to allocate at address " PTR_FORMAT " heap of size " PTR_FORMAT ".\n",
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   328
               requested_address, (address)size);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   329
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   330
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   331
  if (special) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   332
    base = os::reserve_memory_special(size, alignment, requested_address, false);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   333
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   334
    if (base != NULL) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   335
      // Check alignment constraints.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   336
      assert((uintptr_t) base % alignment == 0,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
   337
             "Large pages returned a non-aligned address, base: "
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
   338
             PTR_FORMAT " alignment: " PTR_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
   339
             base, (void*)(uintptr_t)alignment);
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   340
      _special = true;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   341
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   342
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   343
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   344
  if (base == NULL) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   345
    // Failed; try to reserve regular memory below
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   346
    if (UseLargePages && (!FLAG_IS_DEFAULT(UseLargePages) ||
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   347
                          !FLAG_IS_DEFAULT(LargePageSizeInBytes))) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   348
      if (PrintCompressedOopsMode) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   349
        tty->cr();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   350
        tty->print_cr("Reserve regular memory without large pages.");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   351
      }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   352
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   353
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   354
    // Optimistically assume that the OSes returns an aligned base pointer.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   355
    // When reserving a large address range, most OSes seem to align to at
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   356
    // least 64K.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   357
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   358
    // If the memory was requested at a particular address, use
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   359
    // os::attempt_reserve_memory_at() to avoid over mapping something
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   360
    // important.  If available space is not detected, return NULL.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   361
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   362
    if (requested_address != 0) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   363
      base = os::attempt_reserve_memory_at(size, requested_address);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   364
    } else {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   365
      base = os::reserve_memory(size, NULL, alignment);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   366
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   367
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   368
  if (base == NULL) { return; }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   369
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   370
  // Done
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   371
  _base = base;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   372
  _size = size;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   373
  _alignment = alignment;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   374
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   375
  // Check alignment constraints
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   376
  if ((((size_t)base) & (alignment - 1)) != 0) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   377
    // Base not aligned, retry.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   378
    release();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   379
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   380
}
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   381
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   382
void ReservedHeapSpace::try_reserve_range(char *highest_start,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   383
                                          char *lowest_start,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   384
                                          size_t attach_point_alignment,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   385
                                          char *aligned_heap_base_min_address,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   386
                                          char *upper_bound,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   387
                                          size_t size,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   388
                                          size_t alignment,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   389
                                          bool large) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   390
  const size_t attach_range = highest_start - lowest_start;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   391
  // Cap num_attempts at possible number.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   392
  // At least one is possible even for 0 sized attach range.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   393
  const uint64_t num_attempts_possible = (attach_range / attach_point_alignment) + 1;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   394
  const uint64_t num_attempts_to_try   = MIN2((uint64_t)HeapSearchSteps, num_attempts_possible);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   395
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   396
  const size_t stepsize = (attach_range == 0) ? // Only one try.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   397
    (size_t) highest_start : align_size_up(attach_range / num_attempts_to_try, attach_point_alignment);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   398
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   399
  // Try attach points from top to bottom.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   400
  char* attach_point = highest_start;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   401
  while (attach_point >= lowest_start  &&
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   402
         attach_point <= highest_start &&  // Avoid wrap around.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   403
         ((_base == NULL) ||
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   404
          (_base < aligned_heap_base_min_address || _base + size > upper_bound))) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   405
    try_reserve_heap(size, alignment, large, attach_point);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   406
    attach_point -= stepsize;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   407
  }
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   408
}
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   409
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   410
#define SIZE_64K  ((uint64_t) UCONST64(      0x10000))
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   411
#define SIZE_256M ((uint64_t) UCONST64(   0x10000000))
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   412
#define SIZE_32G  ((uint64_t) UCONST64(  0x800000000))
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   413
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   414
// Helper for heap allocation. Returns an array with addresses
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   415
// (OS-specific) which are suited for disjoint base mode. Array is
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   416
// NULL terminated.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   417
static char** get_attach_addresses_for_disjoint_mode() {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   418
  static uint64_t addresses[] = {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   419
     2 * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   420
     3 * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   421
     4 * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   422
     8 * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   423
    10 * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   424
     1 * SIZE_64K * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   425
     2 * SIZE_64K * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   426
     3 * SIZE_64K * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   427
     4 * SIZE_64K * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   428
    16 * SIZE_64K * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   429
    32 * SIZE_64K * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   430
    34 * SIZE_64K * SIZE_32G,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   431
    0
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   432
  };
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   433
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   434
  // Sort out addresses smaller than HeapBaseMinAddress. This assumes
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   435
  // the array is sorted.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   436
  uint i = 0;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   437
  while (addresses[i] != 0 &&
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   438
         (addresses[i] < OopEncodingHeapMax || addresses[i] < HeapBaseMinAddress)) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   439
    i++;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   440
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   441
  uint start = i;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   442
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   443
  // Avoid more steps than requested.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   444
  i = 0;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   445
  while (addresses[start+i] != 0) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   446
    if (i == HeapSearchSteps) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   447
      addresses[start+i] = 0;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   448
      break;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   449
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   450
    i++;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   451
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   452
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   453
  return (char**) &addresses[start];
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   454
}
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   455
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   456
void ReservedHeapSpace::initialize_compressed_heap(const size_t size, size_t alignment, bool large) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   457
  guarantee(size + noaccess_prefix_size(alignment) <= OopEncodingHeapMax,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   458
            "can not allocate compressed oop heap for this size");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   459
  guarantee(alignment == MAX2(alignment, (size_t)os::vm_page_size()), "alignment too small");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   460
  assert(HeapBaseMinAddress > 0, "sanity");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   461
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   462
  const size_t granularity = os::vm_allocation_granularity();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   463
  assert((size & (granularity - 1)) == 0,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   464
         "size not aligned to os::vm_allocation_granularity()");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   465
  assert((alignment & (granularity - 1)) == 0,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   466
         "alignment not aligned to os::vm_allocation_granularity()");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   467
  assert(alignment == 0 || is_power_of_2((intptr_t)alignment),
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   468
         "not a power of 2");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   469
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   470
  // The necessary attach point alignment for generated wish addresses.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   471
  // This is needed to increase the chance of attaching for mmap and shmat.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   472
  const size_t os_attach_point_alignment =
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   473
    AIX_ONLY(SIZE_256M)  // Known shm boundary alignment.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   474
    NOT_AIX(os::vm_allocation_granularity());
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   475
  const size_t attach_point_alignment = lcm(alignment, os_attach_point_alignment);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   476
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   477
  char *aligned_heap_base_min_address = (char *)align_ptr_up((void *)HeapBaseMinAddress, alignment);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   478
  size_t noaccess_prefix = ((aligned_heap_base_min_address + size) > (char*)OopEncodingHeapMax) ?
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   479
    noaccess_prefix_size(alignment) : 0;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   480
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   481
  // Attempt to alloc at user-given address.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   482
  if (!FLAG_IS_DEFAULT(HeapBaseMinAddress)) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   483
    try_reserve_heap(size + noaccess_prefix, alignment, large, aligned_heap_base_min_address);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   484
    if (_base != aligned_heap_base_min_address) { // Enforce this exact address.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   485
      release();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   486
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   487
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   488
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   489
  // Keep heap at HeapBaseMinAddress.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   490
  if (_base == NULL) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   491
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   492
    // Try to allocate the heap at addresses that allow efficient oop compression.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   493
    // Different schemes are tried, in order of decreasing optimization potential.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   494
    //
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   495
    // For this, try_reserve_heap() is called with the desired heap base addresses.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   496
    // A call into the os layer to allocate at a given address can return memory
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   497
    // at a different address than requested.  Still, this might be memory at a useful
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   498
    // address. try_reserve_heap() always returns this allocated memory, as only here
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   499
    // the criteria for a good heap are checked.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   500
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   501
    // Attempt to allocate so that we can run without base and scale (32-Bit unscaled compressed oops).
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   502
    // Give it several tries from top of range to bottom.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   503
    if (aligned_heap_base_min_address + size <= (char *)UnscaledOopHeapMax) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   504
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   505
      // Calc address range within we try to attach (range of possible start addresses).
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   506
      char* const highest_start = (char *)align_ptr_down((char *)UnscaledOopHeapMax - size, attach_point_alignment);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   507
      char* const lowest_start  = (char *)align_ptr_up  (        aligned_heap_base_min_address             , attach_point_alignment);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   508
      try_reserve_range(highest_start, lowest_start, attach_point_alignment,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   509
                        aligned_heap_base_min_address, (char *)UnscaledOopHeapMax, size, alignment, large);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   510
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   511
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   512
    // zerobased: Attempt to allocate in the lower 32G.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   513
    // But leave room for the compressed class pointers, which is allocated above
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   514
    // the heap.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   515
    char *zerobased_max = (char *)OopEncodingHeapMax;
28946
24261e03ba4c 8072434: 8064457: introduces performance regressions in 9-b47
goetz
parents: 28631
diff changeset
   516
    const size_t class_space = align_size_up(CompressedClassSpaceSize, alignment);
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   517
    // For small heaps, save some space for compressed class pointer
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   518
    // space so it can be decoded with no base.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   519
    if (UseCompressedClassPointers && !UseSharedSpaces &&
28946
24261e03ba4c 8072434: 8064457: introduces performance regressions in 9-b47
goetz
parents: 28631
diff changeset
   520
        OopEncodingHeapMax <= KlassEncodingMetaspaceMax &&
24261e03ba4c 8072434: 8064457: introduces performance regressions in 9-b47
goetz
parents: 28631
diff changeset
   521
        (uint64_t)(aligned_heap_base_min_address + size + class_space) <= KlassEncodingMetaspaceMax) {
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   522
      zerobased_max = (char *)OopEncodingHeapMax - class_space;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   523
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   524
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   525
    // Give it several tries from top of range to bottom.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   526
    if (aligned_heap_base_min_address + size <= zerobased_max &&    // Zerobased theoretical possible.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   527
        ((_base == NULL) ||                        // No previous try succeeded.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   528
         (_base + size > zerobased_max))) {        // Unscaled delivered an arbitrary address.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   529
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   530
      // Calc address range within we try to attach (range of possible start addresses).
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   531
      char *const highest_start = (char *)align_ptr_down(zerobased_max - size, attach_point_alignment);
29580
a67a581cfe11 8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents: 28946
diff changeset
   532
      // Need to be careful about size being guaranteed to be less
a67a581cfe11 8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents: 28946
diff changeset
   533
      // than UnscaledOopHeapMax due to type constraints.
a67a581cfe11 8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents: 28946
diff changeset
   534
      char *lowest_start = aligned_heap_base_min_address;
a67a581cfe11 8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents: 28946
diff changeset
   535
      uint64_t unscaled_end = UnscaledOopHeapMax - size;
a67a581cfe11 8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents: 28946
diff changeset
   536
      if (unscaled_end < UnscaledOopHeapMax) { // unscaled_end wrapped if size is large
a67a581cfe11 8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents: 28946
diff changeset
   537
        lowest_start = MAX2(lowest_start, (char*)unscaled_end);
a67a581cfe11 8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents: 28946
diff changeset
   538
      }
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   539
      lowest_start  = (char *)align_ptr_up(lowest_start, attach_point_alignment);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   540
      try_reserve_range(highest_start, lowest_start, attach_point_alignment,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   541
                        aligned_heap_base_min_address, zerobased_max, size, alignment, large);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   542
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   543
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   544
    // Now we go for heaps with base != 0.  We need a noaccess prefix to efficiently
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   545
    // implement null checks.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   546
    noaccess_prefix = noaccess_prefix_size(alignment);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   547
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   548
    // Try to attach at addresses that are aligned to OopEncodingHeapMax. Disjointbase mode.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   549
    char** addresses = get_attach_addresses_for_disjoint_mode();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   550
    int i = 0;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   551
    while (addresses[i] &&                                 // End of array not yet reached.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   552
           ((_base == NULL) ||                             // No previous try succeeded.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   553
            (_base + size >  (char *)OopEncodingHeapMax && // Not zerobased or unscaled address.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   554
             !Universe::is_disjoint_heap_base_address((address)_base)))) {  // Not disjoint address.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   555
      char* const attach_point = addresses[i];
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   556
      assert(attach_point >= aligned_heap_base_min_address, "Flag support broken");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   557
      try_reserve_heap(size + noaccess_prefix, alignment, large, attach_point);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   558
      i++;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   559
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   560
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   561
    // Last, desperate try without any placement.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   562
    if (_base == NULL) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   563
      if (PrintCompressedOopsMode && Verbose) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   564
        tty->print("Trying to allocate at address NULL heap of size " PTR_FORMAT ".\n", (address)size + noaccess_prefix);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   565
      }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   566
      initialize(size + noaccess_prefix, alignment, large, NULL, false);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   567
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   568
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   569
}
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   570
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   571
ReservedHeapSpace::ReservedHeapSpace(size_t size, size_t alignment, bool large) : ReservedSpace() {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   572
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   573
  if (size == 0) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   574
    return;
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   575
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   576
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   577
  // Heap size should be aligned to alignment, too.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   578
  guarantee(is_size_aligned(size, alignment), "set by caller");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   579
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   580
  if (UseCompressedOops) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   581
    initialize_compressed_heap(size, alignment, large);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   582
    if (_size > size) {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   583
      // We allocated heap with noaccess prefix.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   584
      // It can happen we get a zerobased/unscaled heap with noaccess prefix,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   585
      // if we had to try at arbitrary address.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   586
      establish_noaccess_prefix();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   587
    }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   588
  } else {
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   589
    initialize(size, alignment, large, NULL, false);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   590
  }
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   591
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   592
  assert(markOopDesc::encode_pointer_as_mark(_base)->decode_pointer() == _base,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   593
         "area must be distinguishable from marks for mark-sweep");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   594
  assert(markOopDesc::encode_pointer_as_mark(&_base[size])->decode_pointer() == &_base[size],
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   595
         "area must be distinguishable from marks for mark-sweep");
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
   596
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
   597
  if (base() > 0) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
   598
    MemTracker::record_virtual_memory_type((address)base(), mtJavaHeap);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
   599
  }
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   600
}
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   601
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   602
// 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
   603
// executable.
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   604
ReservedCodeSpace::ReservedCodeSpace(size_t r_size,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   605
                                     size_t rs_align,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   606
                                     bool large) :
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30291
diff changeset
   607
  ReservedSpace(r_size, rs_align, large, /*executable*/ CodeCacheExtensions::support_dynamic_code()) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11778
diff changeset
   608
  MemTracker::record_virtual_memory_type((address)base(), mtCode);
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   609
}
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   610
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
// VirtualSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
VirtualSpace::VirtualSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  _low_boundary           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  _high_boundary          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  _low                    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  _high                   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  _lower_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  _middle_high            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  _upper_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  _lower_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  _middle_high_boundary   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  _upper_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  _lower_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  _middle_alignment       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  _upper_alignment        = 0;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   627
  _special                = false;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   628
  _executable             = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
bool VirtualSpace::initialize(ReservedSpace rs, size_t committed_size) {
28631
a56cae1b428d 8066875: VirtualSpace does not use large pages
ehelin
parents: 28372
diff changeset
   633
  const size_t max_commit_granularity = os::page_size_for_region_unaligned(rs.size(), 1);
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   634
  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
   635
}
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   636
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   637
bool VirtualSpace::initialize_with_granularity(ReservedSpace rs, size_t committed_size, size_t max_commit_granularity) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  if(!rs.is_reserved()) return false;  // allocation failed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  assert(_low_boundary == NULL, "VirtualSpace already initialized");
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   640
  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
   641
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  _low_boundary  = rs.base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  _high_boundary = low_boundary() + rs.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  _low = low_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  _high = low();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  _special = rs.special();
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   649
  _executable = rs.executable();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  // When a VirtualSpace begins life at a large size, make all future expansion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  // and shrinking occur aligned to a granularity of large pages.  This avoids
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  // fragmentation of physical addresses that inhibits the use of large pages
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  // by the OS virtual memory system.  Empirically,  we see that with a 4MB
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  // page size, the only spaces that get handled this way are codecache and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  // the heap itself, both of which provide a substantial performance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  // boost in many benchmarks when covered by large pages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  // No attempt is made to force large page alignment at the very top and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  // bottom of the space if they are not aligned so already.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  _lower_alignment  = os::vm_page_size();
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   662
  _middle_alignment = max_commit_granularity;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  _upper_alignment  = os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  // End of each region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  _lower_high_boundary = (char*) round_to((intptr_t) low_boundary(), middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  _middle_high_boundary = (char*) round_down((intptr_t) high_boundary(), middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  _upper_high_boundary = high_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  // High address of each region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  _lower_high = low_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  _middle_high = lower_high_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  _upper_high = middle_high_boundary();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  // commit to initial size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  if (committed_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    if (!expand_by(committed_size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
VirtualSpace::~VirtualSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
void VirtualSpace::release() {
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   691
  // This does not release memory it never reserved.
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   692
  // Caller must release via rs.release();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  _low_boundary           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  _high_boundary          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  _low                    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  _high                   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  _lower_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  _middle_high            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  _upper_high             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  _lower_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  _middle_high_boundary   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  _upper_high_boundary    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  _lower_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  _middle_alignment       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  _upper_alignment        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  _special                = false;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   707
  _executable             = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
size_t VirtualSpace::committed_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  return pointer_delta(high(), low(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
size_t VirtualSpace::reserved_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  return pointer_delta(high_boundary(), low_boundary(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
size_t VirtualSpace::uncommitted_size()  const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  return reserved_size() - committed_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   725
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
   726
  // 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
   727
  if (special()) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   728
    return reserved_size();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   729
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   730
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   731
  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
   732
  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
   733
  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
   734
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   735
#ifdef ASSERT
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   736
  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
   737
  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
   738
  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
   739
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   740
  if (committed_high > 0) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   741
    assert(committed_low == lower, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   742
    assert(committed_middle == middle, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   743
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   744
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   745
  if (committed_middle > 0) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   746
    assert(committed_low == lower, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   747
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   748
  if (committed_middle < middle) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   749
    assert(committed_high == 0, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   750
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   751
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   752
  if (committed_low < lower) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   753
    assert(committed_high == 0, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   754
    assert(committed_middle == 0, "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   755
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   756
#endif
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   757
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   758
  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
   759
}
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   760
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
bool VirtualSpace::contains(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  return low() <= (const char*) p && (const char*) p < high();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
   First we need to determine if a particular virtual space is using large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
   pages.  This is done at the initialize function and only virtual spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
   that are larger than LargePageSizeInBytes use large pages.  Once we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
   have determined this, all expand_by and shrink_by calls must grow and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
   shrink by large page size chunks.  If a particular request
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
   is within the current large page, the call to commit and uncommit memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
   can be ignored.  In the case that the low and high boundaries of this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
   space is not large page aligned, the pages leading to the first large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
   page address and the pages after the last large page address must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
   allocated with default pages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
bool VirtualSpace::expand_by(size_t bytes, bool pre_touch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  if (uncommitted_size() < bytes) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  if (special()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    // don't commit memory if the entire space is pinned in memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    _high += bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  char* previous_high = high();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  char* unaligned_new_high = high() + bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  assert(unaligned_new_high <= high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
         "cannot expand by more than upper boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  // Calculate where the new high for each of the regions should be.  If
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  // the low_boundary() and high_boundary() are LargePageSizeInBytes aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  // then the unaligned lower and upper new highs would be the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  // lower_high() and upper_high() respectively.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  char* unaligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    MIN2(unaligned_new_high, lower_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  char* unaligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    MIN2(unaligned_new_high, middle_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  char* unaligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    MIN2(unaligned_new_high, upper_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  // Align the new highs based on the regions alignment.  lower and upper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  // alignment will always be default page size.  middle alignment will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  // LargePageSizeInBytes if the actual size of the virtual space is in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  // fact larger than LargePageSizeInBytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  char* aligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    (char*) round_to((intptr_t) unaligned_lower_new_high, lower_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  char* aligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    (char*) round_to((intptr_t) unaligned_middle_new_high, middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  char* aligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    (char*) round_to((intptr_t) unaligned_upper_new_high, upper_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  // Determine which regions need to grow in this expand_by call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  // 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
   816
  // region so calculate the size based on high().  For the middle and
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  // upper regions, determine the starting point of growth based on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  // 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
   819
  // (or the previous region's high address) and high(), we can tell if it
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  // is an intra or inter region growth.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  size_t lower_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  if (aligned_lower_new_high > lower_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
    lower_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
      pointer_delta(aligned_lower_new_high, lower_high(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  size_t middle_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  if (aligned_middle_new_high > middle_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
    middle_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
      pointer_delta(aligned_middle_new_high, middle_high(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  size_t upper_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  if (aligned_upper_new_high > upper_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    upper_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
      pointer_delta(aligned_upper_new_high, upper_high(), sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  // Check contiguity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
         lower_high() <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
         middle_high() <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
         upper_high() <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  // Commit regions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  if (lower_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
           lower_high() + lower_needs <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
           "must not expand beyond region");
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   853
    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
   854
      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
   855
                         ", 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
   856
                         lower_high(), lower_needs, _executable);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
      _lower_high += lower_needs;
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   860
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  if (middle_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
           middle_high() + middle_needs <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
           "must not expand beyond region");
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   866
    if (!os::commit_memory(middle_high(), middle_needs, middle_alignment(),
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   867
                           _executable)) {
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17113
diff changeset
   868
      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
   869
                         ", 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
   870
                         ", %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
   871
                         middle_alignment(), _executable);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
    _middle_high += middle_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  if (upper_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
    assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
           upper_high() + upper_needs <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
           "must not expand beyond region");
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   880
    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
   881
      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
   882
                         ", 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
   883
                         upper_high(), upper_needs, _executable);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
      _upper_high += upper_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  if (pre_touch || AlwaysPreTouch) {
28208
d67f748ece0a 8067469: G1 ignores AlwaysPreTouch
tschatzl
parents: 26700
diff changeset
   891
    os::pretouch_memory(previous_high, unaligned_new_high);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  _high += bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
// A page is uncommitted if the contents of the entire page is deemed unusable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
// Continue to decrement the high() pointer until it reaches a page boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
// in which case that particular page can now be uncommitted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
void VirtualSpace::shrink_by(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  if (committed_size() < size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
    fatal("Cannot shrink virtual space to negative size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  if (special()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    // don't uncommit if the entire space is pinned in memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
    _high -= size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  char* unaligned_new_high = high() - size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  assert(unaligned_new_high >= low_boundary(), "cannot shrink past lower boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  // Calculate new unaligned address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  char* unaligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
    MAX2(unaligned_new_high, middle_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  char* unaligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    MAX2(unaligned_new_high, lower_high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  char* unaligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
    MAX2(unaligned_new_high, low_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  // Align address to region's alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  char* aligned_upper_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    (char*) round_to((intptr_t) unaligned_upper_new_high, upper_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  char* aligned_middle_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    (char*) round_to((intptr_t) unaligned_middle_new_high, middle_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  char* aligned_lower_new_high =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
    (char*) round_to((intptr_t) unaligned_lower_new_high, lower_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  // Determine which regions need to shrink
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  size_t upper_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  if (aligned_upper_new_high < upper_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    upper_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
      pointer_delta(upper_high(), aligned_upper_new_high, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  size_t middle_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  if (aligned_middle_new_high < middle_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    middle_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
      pointer_delta(middle_high(), aligned_middle_new_high, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  size_t lower_needs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  if (aligned_lower_new_high < lower_high()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
    lower_needs =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
      pointer_delta(lower_high(), aligned_lower_new_high, sizeof(char));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  // Check contiguity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
         upper_high() <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
         middle_high() <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
         lower_high() <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  // Uncommit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  if (upper_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
    assert(middle_high_boundary() <= aligned_upper_new_high &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
           aligned_upper_new_high + upper_needs <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
           "must not shrink beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
    if (!os::uncommit_memory(aligned_upper_new_high, upper_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
      debug_only(warning("os::uncommit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
      _upper_high -= upper_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  if (middle_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    assert(lower_high_boundary() <= aligned_middle_new_high &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
           aligned_middle_new_high + middle_needs <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
           "must not shrink beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    if (!os::uncommit_memory(aligned_middle_new_high, middle_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
      debug_only(warning("os::uncommit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
      _middle_high -= middle_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  if (lower_needs > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    assert(low_boundary() <= aligned_lower_new_high &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
           aligned_lower_new_high + lower_needs <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
           "must not shrink beyond region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
    if (!os::uncommit_memory(aligned_lower_new_high, lower_needs)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
      debug_only(warning("os::uncommit_memory failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
      _lower_high -= lower_needs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  _high -= size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
void VirtualSpace::check_for_contiguity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  // Check contiguity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  assert(low_boundary() <= lower_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
         lower_high() <= lower_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
  assert(lower_high_boundary() <= middle_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
         middle_high() <= middle_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  assert(middle_high_boundary() <= upper_high() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
         upper_high() <= upper_high_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
         "high address must be contained within the region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
  assert(low() >= low_boundary(), "low");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  assert(low_boundary() <= lower_high_boundary(), "lower high boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  assert(upper_high_boundary() <= high_boundary(), "upper high boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  assert(high() <= upper_high(), "upper high");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
19993
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
  1014
void VirtualSpace::print_on(outputStream* out) {
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
  1015
  out->print   ("Virtual space:");
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
  1016
  if (special()) out->print(" (pinned in memory)");
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
  1017
  out->cr();
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
  1018
  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
  1019
  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
  1020
  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
  1021
  out->print_cr(" - [low_b, high_b]: [" INTPTR_FORMAT ", " INTPTR_FORMAT "]",  low_boundary(), high_boundary());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
19993
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
  1024
void VirtualSpace::print() {
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
  1025
  print_on(tty);
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
  1026
}
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1027
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1028
/////////////// Unit tests ///////////////
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1029
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1030
#ifndef PRODUCT
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1031
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1032
#define test_log(...) \
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1033
  do {\
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1034
    if (VerboseInternalVMTests) { \
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1035
      tty->print_cr(__VA_ARGS__); \
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1036
      tty->flush(); \
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1037
    }\
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1038
  } while (false)
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1039
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1040
class TestReservedSpace : AllStatic {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1041
 public:
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1042
  static void small_page_write(void* addr, size_t size) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1043
    size_t page_size = os::vm_page_size();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1044
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1045
    char* end = (char*)addr + size;
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1046
    for (char* p = (char*)addr; p < end; p += page_size) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1047
      *p = 1;
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1048
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1049
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1050
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1051
  static void release_memory_for_test(ReservedSpace rs) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1052
    if (rs.special()) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1053
      guarantee(os::release_memory_special(rs.base(), rs.size()), "Shouldn't fail");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1054
    } else {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1055
      guarantee(os::release_memory(rs.base(), rs.size()), "Shouldn't fail");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1056
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1057
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1058
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1059
  static void test_reserved_space1(size_t size, size_t alignment) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1060
    test_log("test_reserved_space1(%p)", (void*) (uintptr_t) size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1061
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1062
    assert(is_size_aligned(size, alignment), "Incorrect input parameters");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1063
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1064
    ReservedSpace rs(size,          // size
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1065
                     alignment,     // alignment
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1066
                     UseLargePages, // large
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 28208
diff changeset
  1067
                     (char *)NULL); // requested_address
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1068
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1069
    test_log(" rs.special() == %d", rs.special());
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1070
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1071
    assert(rs.base() != NULL, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1072
    assert(rs.size() == size, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1073
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1074
    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
  1075
    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
  1076
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1077
    if (rs.special()) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1078
      small_page_write(rs.base(), size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1079
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1080
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1081
    release_memory_for_test(rs);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1082
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1083
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1084
  static void test_reserved_space2(size_t size) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1085
    test_log("test_reserved_space2(%p)", (void*)(uintptr_t)size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1086
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1087
    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
  1088
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1089
    ReservedSpace rs(size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1090
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1091
    test_log(" rs.special() == %d", rs.special());
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1092
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1093
    assert(rs.base() != NULL, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1094
    assert(rs.size() == size, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1095
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1096
    if (rs.special()) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1097
      small_page_write(rs.base(), size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1098
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1099
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1100
    release_memory_for_test(rs);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1101
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1102
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1103
  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
  1104
    test_log("test_reserved_space3(%p, %p, %d)",
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1105
        (void*)(uintptr_t)size, (void*)(uintptr_t)alignment, maybe_large);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1106
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1107
    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
  1108
    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
  1109
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1110
    bool large = maybe_large && UseLargePages && size >= os::large_page_size();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1111
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1112
    ReservedSpace rs(size, alignment, large, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1113
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1114
    test_log(" rs.special() == %d", rs.special());
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1115
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1116
    assert(rs.base() != NULL, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1117
    assert(rs.size() == size, "Must be");
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1118
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1119
    if (rs.special()) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1120
      small_page_write(rs.base(), size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1121
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1122
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1123
    release_memory_for_test(rs);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1124
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1125
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1126
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1127
  static void test_reserved_space1() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1128
    size_t size = 2 * 1024 * 1024;
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1129
    size_t ag   = os::vm_allocation_granularity();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1130
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1131
    test_reserved_space1(size,      ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1132
    test_reserved_space1(size * 2,  ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1133
    test_reserved_space1(size * 10, ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1134
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1135
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1136
  static void test_reserved_space2() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1137
    size_t size = 2 * 1024 * 1024;
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1138
    size_t ag = os::vm_allocation_granularity();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1139
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1140
    test_reserved_space2(size * 1);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1141
    test_reserved_space2(size * 2);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1142
    test_reserved_space2(size * 10);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1143
    test_reserved_space2(ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1144
    test_reserved_space2(size - ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1145
    test_reserved_space2(size);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1146
    test_reserved_space2(size + ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1147
    test_reserved_space2(size * 2);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1148
    test_reserved_space2(size * 2 - ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1149
    test_reserved_space2(size * 2 + ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1150
    test_reserved_space2(size * 3);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1151
    test_reserved_space2(size * 3 - ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1152
    test_reserved_space2(size * 3 + ag);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1153
    test_reserved_space2(size * 10);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1154
    test_reserved_space2(size * 10 + size / 2);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1155
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1156
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1157
  static void test_reserved_space3() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1158
    size_t ag = os::vm_allocation_granularity();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1159
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1160
    test_reserved_space3(ag,      ag    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1161
    test_reserved_space3(ag * 2,  ag    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1162
    test_reserved_space3(ag * 3,  ag    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1163
    test_reserved_space3(ag * 2,  ag * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1164
    test_reserved_space3(ag * 4,  ag * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1165
    test_reserved_space3(ag * 8,  ag * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1166
    test_reserved_space3(ag * 4,  ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1167
    test_reserved_space3(ag * 8,  ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1168
    test_reserved_space3(ag * 16, ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1169
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1170
    if (UseLargePages) {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1171
      size_t lp = os::large_page_size();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1172
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1173
      // Without large pages
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1174
      test_reserved_space3(lp,     ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1175
      test_reserved_space3(lp * 2, ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1176
      test_reserved_space3(lp * 4, ag * 4, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1177
      test_reserved_space3(lp,     lp    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1178
      test_reserved_space3(lp * 2, lp    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1179
      test_reserved_space3(lp * 3, lp    , false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1180
      test_reserved_space3(lp * 2, lp * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1181
      test_reserved_space3(lp * 4, lp * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1182
      test_reserved_space3(lp * 8, lp * 2, false);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1183
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1184
      // With large pages
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1185
      test_reserved_space3(lp, ag * 4    , true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1186
      test_reserved_space3(lp * 2, ag * 4, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1187
      test_reserved_space3(lp * 4, ag * 4, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1188
      test_reserved_space3(lp, lp        , true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1189
      test_reserved_space3(lp * 2, lp    , true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1190
      test_reserved_space3(lp * 3, lp    , true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1191
      test_reserved_space3(lp * 2, lp * 2, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1192
      test_reserved_space3(lp * 4, lp * 2, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1193
      test_reserved_space3(lp * 8, lp * 2, true);
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1194
    }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1195
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1196
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1197
  static void test_reserved_space() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1198
    test_reserved_space1();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1199
    test_reserved_space2();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1200
    test_reserved_space3();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1201
  }
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1202
};
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1203
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1204
void TestReservedSpace_test() {
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1205
  TestReservedSpace::test_reserved_space();
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1206
}
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1207
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
  1208
#define assert_equals(actual, expected)  \
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
  1209
  assert(actual == expected,             \
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
  1210
         "Got " SIZE_FORMAT " expected " \
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
  1211
         SIZE_FORMAT, actual, expected);
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1212
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1213
#define assert_ge(value1, value2)                  \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1214
  assert(value1 >= value2,                         \
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
  1215
         "'" #value1 "': " SIZE_FORMAT " '"        \
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
  1216
         #value2 "': " SIZE_FORMAT, value1, value2);
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1217
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1218
#define assert_lt(value1, value2)                  \
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1219
  assert(value1 < value2,                          \
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
  1220
         "'" #value1 "': " SIZE_FORMAT " '"        \
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31620
diff changeset
  1221
         #value2 "': " SIZE_FORMAT, value1, value2);
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1222
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1223
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1224
class TestVirtualSpace : AllStatic {
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1225
  enum TestLargePages {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1226
    Default,
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1227
    Disable,
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1228
    Reserve,
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1229
    Commit
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1230
  };
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1231
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1232
  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
  1233
    switch(mode) {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1234
    default:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1235
    case Default:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1236
    case Reserve:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1237
      return ReservedSpace(reserve_size_aligned);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1238
    case Disable:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1239
    case Commit:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1240
      return ReservedSpace(reserve_size_aligned,
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1241
                           os::vm_allocation_granularity(),
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1242
                           /* large */ false, /* exec */ false);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1243
    }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1244
  }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1245
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1246
  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
  1247
    switch(mode) {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1248
    default:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1249
    case Default:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1250
    case Reserve:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1251
      return vs.initialize(rs, 0);
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1252
    case Disable:
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1253
      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
  1254
    case Commit:
28631
a56cae1b428d 8066875: VirtualSpace does not use large pages
ehelin
parents: 28372
diff changeset
  1255
      return vs.initialize_with_granularity(rs, 0, os::page_size_for_region_unaligned(rs.size(), 1));
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1256
    }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1257
  }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1258
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1259
 public:
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1260
  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
  1261
                                                        TestLargePages mode = Default) {
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1262
    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
  1263
    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
  1264
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1265
    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
  1266
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1267
    assert(reserved.is_reserved(), "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1268
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1269
    VirtualSpace vs;
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1270
    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
  1271
    assert(initialized, "Failed to initialize VirtualSpace");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1272
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1273
    vs.expand_by(commit_size, false);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1274
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1275
    if (vs.special()) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1276
      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
  1277
    } else {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1278
      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
  1279
      // Approximate the commit granularity.
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1280
      // 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
  1281
      // 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
  1282
      size_t commit_granularity = (mode == Disable || !UseLargePages) ?
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1283
                                   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
  1284
      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
  1285
    }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1286
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1287
    reserved.release();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1288
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1289
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1290
  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
  1291
    if (!UseLargePages) {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1292
      return;
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1293
    }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1294
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1295
    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
  1296
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1297
    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
  1298
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1299
    assert(reserved.is_reserved(), "Must be");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1300
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1301
    VirtualSpace vs;
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1302
    bool initialized = vs.initialize(reserved, 0);
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1303
    assert(initialized, "Failed to initialize VirtualSpace");
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1304
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1305
    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
  1306
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1307
    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
  1308
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1309
    reserved.release();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1310
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1311
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1312
  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
  1313
    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
  1314
    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
  1315
    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
  1316
    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
  1317
    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
  1318
    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
  1319
    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
  1320
    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
  1321
    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
  1322
    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
  1323
    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
  1324
    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
  1325
    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
  1326
    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
  1327
    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
  1328
    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
  1329
    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
  1330
    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
  1331
    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
  1332
    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
  1333
    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
  1334
    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
  1335
    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
  1336
    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
  1337
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1338
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1339
  static void test_virtual_space_disable_large_pages() {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1340
    if (!UseLargePages) {
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1341
      return;
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1342
    }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1343
    // 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
  1344
    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
  1345
    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
  1346
    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
  1347
    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
  1348
    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
  1349
    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
  1350
    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
  1351
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1352
    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
  1353
    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
  1354
    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
  1355
    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
  1356
    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
  1357
    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
  1358
    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
  1359
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1360
    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
  1361
    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
  1362
    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
  1363
    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
  1364
    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
  1365
    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
  1366
    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
  1367
  }
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
  1368
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1369
  static void test_virtual_space() {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1370
    test_virtual_space_actual_committed_space();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1371
    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
  1372
    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
  1373
  }
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1374
};
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1375
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1376
void TestVirtualSpace_test() {
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1377
  TestVirtualSpace::test_virtual_space();
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1378
}
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
  1379
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1380
#endif // PRODUCT
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 18069
diff changeset
  1381
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
#endif