hotspot/src/share/vm/runtime/virtualspace.hpp
author stefank
Tue, 23 Nov 2010 13:22:55 -0800
changeset 7397 5b173b4ca846
parent 5547 f4b087cbb361
child 13728 882756847a04
permissions -rw-r--r--
6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1997, 2010, 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: 5547
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_VIRTUALSPACE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_RUNTIME_VIRTUALSPACE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// ReservedSpace is a data structure for reserving a contiguous address range.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class ReservedSpace VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  char*  _base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  size_t _size;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    37
  size_t _noaccess_prefix;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  size_t _alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  bool   _special;
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    40
  bool   _executable;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // ReservedSpace
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    43
  ReservedSpace(char* base, size_t size, size_t alignment, bool special,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    44
                bool executable);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  void initialize(size_t size, size_t alignment, bool large,
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    46
                  char* requested_address,
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    47
                  const size_t noaccess_prefix,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    48
                  bool executable);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Release parts of an already-reserved memory region [addr, addr + len) to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // get a new region that has "compound alignment."  Return the start of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // resulting region, or NULL on failure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // The region is logically divided into a prefix and a suffix.  The prefix
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // starts at the result address, which is aligned to prefix_align.  The suffix
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // starts at result address + prefix_size, which is aligned to suffix_align.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // The total size of the result region is size prefix_size + suffix_size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  char* align_reserved_region(char* addr, const size_t len,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
                              const size_t prefix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
                              const size_t prefix_align,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                              const size_t suffix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                              const size_t suffix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Reserve memory, call align_reserved_region() to alignment it and return the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  char* reserve_and_align(const size_t reserve_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                          const size_t prefix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                          const size_t prefix_align,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                          const size_t suffix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                          const size_t suffix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    72
 protected:
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    73
  // Create protection page at the beginning of the space.
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    74
  void protect_noaccess_prefix(const size_t size);
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    75
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  ReservedSpace(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  ReservedSpace(size_t size, size_t alignment, bool large,
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    80
                char* requested_address = NULL,
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    81
                const size_t noaccess_prefix = 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  ReservedSpace(const size_t prefix_size, const size_t prefix_align,
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    83
                const size_t suffix_size, const size_t suffix_align,
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1217
diff changeset
    84
                char* requested_address,
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1217
diff changeset
    85
                const size_t noaccess_prefix = 0);
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    86
  ReservedSpace(size_t size, size_t alignment, bool large, bool executable);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Accessors
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    89
  char*  base()            const { return _base;      }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    90
  size_t size()            const { return _size;      }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    91
  size_t alignment()       const { return _alignment; }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    92
  bool   special()         const { return _special;   }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    93
  bool   executable()      const { return _executable;   }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    94
  size_t noaccess_prefix() const { return _noaccess_prefix;   }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    95
  bool is_reserved()       const { return _base != NULL; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  void release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Splitting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  ReservedSpace first_part(size_t partition_size, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                           bool split = false, bool realloc = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  ReservedSpace last_part (size_t partition_size, size_t alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // These simply call the above using the default alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  inline ReservedSpace first_part(size_t partition_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                                  bool split = false, bool realloc = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  inline ReservedSpace last_part (size_t partition_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static size_t page_align_size_up(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  static size_t page_align_size_down(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static size_t allocation_align_size_up(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  static size_t allocation_align_size_down(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
ReservedSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
ReservedSpace::first_part(size_t partition_size, bool split, bool realloc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  return first_part(partition_size, alignment(), split, realloc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
ReservedSpace ReservedSpace::last_part(size_t partition_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  return last_part(partition_size, alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   126
// Class encapsulating behavior specific of memory space reserved for Java heap
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   127
class ReservedHeapSpace : public ReservedSpace {
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   128
public:
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   129
  // Constructor
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   130
  ReservedHeapSpace(size_t size, size_t forced_base_alignment,
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   131
                    bool large, char* requested_address);
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   132
  ReservedHeapSpace(const size_t prefix_size, const size_t prefix_align,
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1217
diff changeset
   133
                    const size_t suffix_size, const size_t suffix_align,
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 1217
diff changeset
   134
                    char* requested_address);
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   135
};
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   136
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   137
// Class encapsulating behavior specific memory space for Code
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   138
class ReservedCodeSpace : public ReservedSpace {
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   139
 public:
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   140
  // Constructor
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   141
  ReservedCodeSpace(size_t r_size, size_t rs_align, bool large);
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   142
};
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   143
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// VirtualSpace is data structure for committing a previously reserved address range in smaller chunks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
class VirtualSpace VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // Reserved area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  char* _low_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  char* _high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Committed area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  char* _low;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  char* _high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // The entire space has been committed and pinned in memory, no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // os::commit_memory() or os::uncommit_memory().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  bool _special;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   161
  // Need to know if commit should be executable.
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   162
  bool   _executable;
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   163
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // MPSS Support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // Each virtualspace region has a lower, middle, and upper region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // Each region has an end boundary and a high pointer which is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // high water mark for the last allocated byte.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // The lower and upper unaligned to LargePageSizeInBytes uses default page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // size.  The middle region uses large page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  char* _lower_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  char* _middle_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  char* _upper_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  char* _lower_high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  char* _middle_high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  char* _upper_high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  size_t _lower_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  size_t _middle_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  size_t _upper_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // MPSS Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  char* lower_high() const { return _lower_high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  char* middle_high() const { return _middle_high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  char* upper_high() const { return _upper_high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  char* lower_high_boundary() const { return _lower_high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  char* middle_high_boundary() const { return _middle_high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  char* upper_high_boundary() const { return _upper_high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  size_t lower_alignment() const { return _lower_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  size_t middle_alignment() const { return _middle_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  size_t upper_alignment() const { return _upper_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Committed area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  char* low()  const { return _low; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  char* high() const { return _high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // Reserved area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  char* low_boundary()  const { return _low_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  char* high_boundary() const { return _high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  bool special() const { return _special; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  VirtualSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  bool initialize(ReservedSpace rs, size_t committed_byte_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // Destruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  ~VirtualSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // Testers (all sizes are byte sizes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  size_t committed_size()   const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  size_t reserved_size()    const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  size_t uncommitted_size() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  bool   contains(const void* p)  const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // Operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // returns true on success, false otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  bool expand_by(size_t bytes, bool pre_touch = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  void shrink_by(size_t bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  void release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  void check_for_contiguity() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  void print() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   231
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   232
#endif // SHARE_VM_RUNTIME_VIRTUALSPACE_HPP