src/hotspot/share/memory/virtualspace.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 53149 259c36ef27df
child 53547 9d1a788dea3d
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53149
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 49621
diff changeset
     2
 * Copyright (c) 1997, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
    25
#ifndef SHARE_MEMORY_VIRTUALSPACE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
    26
#define SHARE_MEMORY_VIRTUALSPACE_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
49621
5ef28d560b6f 8200276: Cleanup allocation.hpp includes
coleenp
parents: 49364
diff changeset
    28
#include "utilities/globalDefinitions.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
53149
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 49621
diff changeset
    30
class outputStream;
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 49621
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// ReservedSpace is a data structure for reserving a contiguous address range.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48153
diff changeset
    34
class ReservedSpace {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  friend class VMStructs;
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
    36
 protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  char*  _base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  size_t _size;
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
    39
  size_t _noaccess_prefix;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  size_t _alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  bool   _special;
48153
cfa2c43e58c2 8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents: 47216
diff changeset
    42
  int    _fd_for_heap;
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
    43
 private:
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    44
  bool   _executable;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // ReservedSpace
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    47
  ReservedSpace(char* base, size_t size, size_t alignment, bool special,
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    48
                bool executable);
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
    49
 protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  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
    51
                  char* requested_address,
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    52
                  bool executable);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Constructor
19546
f6b7c9e96ea3 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 17113
diff changeset
    56
  ReservedSpace();
30166
a85188117643 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 30158
diff changeset
    57
  // Initialize the reserved space with the given size. If preferred_page_size
a85188117643 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 30158
diff changeset
    58
  // is set, use this as minimum page size/alignment. This may waste some space
a85188117643 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 30158
diff changeset
    59
  // if the given size is not aligned to that value, as the reservation will be
a85188117643 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 30158
diff changeset
    60
  // aligned up to the final alignment in this case.
a85188117643 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 30158
diff changeset
    61
  ReservedSpace(size_t size, size_t preferred_page_size = 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ReservedSpace(size_t size, size_t alignment, bool large,
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
    63
                char* requested_address = NULL);
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    64
  ReservedSpace(size_t size, size_t alignment, bool large, bool executable);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Accessors
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    67
  char*  base()            const { return _base;      }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    68
  size_t size()            const { return _size;      }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 42650
diff changeset
    69
  char*  end()             const { return _base + _size; }
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    70
  size_t alignment()       const { return _alignment; }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    71
  bool   special()         const { return _special;   }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    72
  bool   executable()      const { return _executable;   }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    73
  size_t noaccess_prefix() const { return _noaccess_prefix;   }
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
    74
  bool is_reserved()       const { return _base != NULL; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // Splitting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  ReservedSpace first_part(size_t partition_size, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                           bool split = false, bool realloc = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  ReservedSpace last_part (size_t partition_size, size_t alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // These simply call the above using the default alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  inline ReservedSpace first_part(size_t partition_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                                  bool split = false, bool realloc = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  inline ReservedSpace last_part (size_t partition_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // Alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  static size_t page_align_size_up(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  static size_t page_align_size_down(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static size_t allocation_align_size_up(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static size_t allocation_align_size_down(size_t size);
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 42650
diff changeset
    92
  bool contains(const void* p) const {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 42650
diff changeset
    93
    return (base() <= ((char*)p)) && (((char*)p) < (base() + size()));
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 42650
diff changeset
    94
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
ReservedSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
ReservedSpace::first_part(size_t partition_size, bool split, bool realloc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  return first_part(partition_size, alignment(), split, realloc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
ReservedSpace ReservedSpace::last_part(size_t partition_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  return last_part(partition_size, alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   108
// Class encapsulating behavior specific of memory space reserved for Java heap.
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   109
class ReservedHeapSpace : public ReservedSpace {
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   110
 private:
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   111
  void try_reserve_heap(size_t size, size_t alignment, bool large,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   112
                        char *requested_address);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   113
  void try_reserve_range(char *highest_start, char *lowest_start,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   114
                         size_t attach_point_alignment, char *aligned_HBMA,
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   115
                         char *upper_bound, size_t size, size_t alignment, bool large);
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   116
  void 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: 22234
diff changeset
   117
  // Create protection page at the beginning of the space.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   118
  void establish_noaccess_prefix();
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   119
 public:
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   120
  // Constructor. Tries to find a heap that is good for compressed oops.
48153
cfa2c43e58c2 8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents: 47216
diff changeset
   121
  // heap_allocation_directory is the path to the backing memory for Java heap. When set, Java heap will be allocated
cfa2c43e58c2 8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents: 47216
diff changeset
   122
  // on the device which is managed by the file system where the directory resides.
cfa2c43e58c2 8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents: 47216
diff changeset
   123
  ReservedHeapSpace(size_t size, size_t forced_base_alignment, bool large, const char* heap_allocation_directory = NULL);
28372
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   124
  // Returns the base to be used for compression, i.e. so that null can be
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   125
  // encoded safely and implicit null checks can work.
ce0aad4b8c44 8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents: 22234
diff changeset
   126
  char *compressed_oop_base() { return _base - _noaccess_prefix; }
823
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   127
};
9a5271881bc0 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 1
diff changeset
   128
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   129
// Class encapsulating behavior specific memory space for Code
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   130
class ReservedCodeSpace : public ReservedSpace {
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   131
 public:
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   132
  // Constructor
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   133
  ReservedCodeSpace(size_t r_size, size_t rs_align, bool large);
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   134
};
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   135
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
// VirtualSpace is data structure for committing a previously reserved address range in smaller chunks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48153
diff changeset
   138
class VirtualSpace {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Reserved area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  char* _low_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  char* _high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // Committed area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  char* _low;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  char* _high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // The entire space has been committed and pinned in memory, no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // os::commit_memory() or os::uncommit_memory().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  bool _special;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
2268
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   153
  // Need to know if commit should be executable.
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   154
  bool   _executable;
bea8be80ec88 6541756: Reduce executable C-heap
coleenp
parents: 2254
diff changeset
   155
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // MPSS Support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Each virtualspace region has a lower, middle, and upper region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Each region has an end boundary and a high pointer which is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // high water mark for the last allocated byte.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // The lower and upper unaligned to LargePageSizeInBytes uses default page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // size.  The middle region uses large page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  char* _lower_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  char* _middle_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  char* _upper_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  char* _lower_high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  char* _middle_high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  char* _upper_high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  size_t _lower_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  size_t _middle_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  size_t _upper_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // MPSS Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  char* lower_high() const { return _lower_high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  char* middle_high() const { return _middle_high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  char* upper_high() const { return _upper_high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  char* lower_high_boundary() const { return _lower_high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  char* middle_high_boundary() const { return _middle_high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  char* upper_high_boundary() const { return _upper_high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  size_t lower_alignment() const { return _lower_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  size_t middle_alignment() const { return _middle_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  size_t upper_alignment() const { return _upper_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // Committed area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  char* low()  const { return _low; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  char* high() const { return _high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Reserved area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  char* low_boundary()  const { return _low_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  char* high_boundary() const { return _high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 30291
diff changeset
   196
#if INCLUDE_AOT
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 30291
diff changeset
   197
  // Set boundaries for code section in AOT library.
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 30291
diff changeset
   198
  void set_low_boundary(char *p)  { _low_boundary = p; }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 30291
diff changeset
   199
  void set_high_boundary(char *p) { _high_boundary = p; }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 30291
diff changeset
   200
  void set_low(char *p)           { _low = p; }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 30291
diff changeset
   201
  void set_high(char *p)          { _high = p; }
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 30291
diff changeset
   202
#endif
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 30291
diff changeset
   203
1
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();
20402
9def9d6d969a 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 19993
diff changeset
   209
  bool initialize_with_granularity(ReservedSpace rs, size_t committed_byte_size, size_t max_commit_ganularity);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  bool initialize(ReservedSpace rs, size_t committed_byte_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Destruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  ~VirtualSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   215
  // Reserved memory
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   216
  size_t reserved_size() const;
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   217
  // Actually committed OS memory
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   218
  size_t actual_committed_size() const;
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   219
  // Memory used/expanded in this virtual space
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   220
  size_t committed_size() const;
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   221
  // Memory left to use/expand in this virtual space
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  size_t uncommitted_size() const;
19989
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   223
0fc247fb59bc 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 19546
diff changeset
   224
  bool   contains(const void* p) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // Operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // returns true on success, false otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  bool expand_by(size_t bytes, bool pre_touch = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  void shrink_by(size_t bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  void release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  void check_for_contiguity() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Debugging
19993
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   235
  void print_on(outputStream* out) PRODUCT_RETURN;
b1d392324718 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 19989
diff changeset
   236
  void print();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   238
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
   239
#endif // SHARE_MEMORY_VIRTUALSPACE_HPP