hotspot/src/share/vm/runtime/virtualspace.hpp
author apetrusenko
Tue, 01 Apr 2008 15:13:47 +0400
changeset 386 7f121b1192f2
parent 1 489c9b5090e2
child 823 9a5271881bc0
permissions -rw-r--r--
6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen Reviewed-by: ysr, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2005 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// ReservedSpace is a data structure for reserving a contiguous address range.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class ReservedSpace VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  char*  _base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  size_t _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  size_t _alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  bool   _special;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  // ReservedSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  ReservedSpace(char* base, size_t size, size_t alignment, bool special);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  void initialize(size_t size, size_t alignment, bool large,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
                  char* requested_address = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // Release parts of an already-reserved memory region [addr, addr + len) to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // get a new region that has "compound alignment."  Return the start of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // resulting region, or NULL on failure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // The region is logically divided into a prefix and a suffix.  The prefix
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // starts at the result address, which is aligned to prefix_align.  The suffix
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // starts at result address + prefix_size, which is aligned to suffix_align.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  // The total size of the result region is size prefix_size + suffix_size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  char* align_reserved_region(char* addr, const size_t len,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
                              const size_t prefix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
                              const size_t prefix_align,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
                              const size_t suffix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
                              const size_t suffix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // Reserve memory, call align_reserved_region() to alignment it and return the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  char* reserve_and_align(const size_t reserve_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                          const size_t prefix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
                          const size_t prefix_align,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
                          const size_t suffix_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
                          const size_t suffix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  ReservedSpace(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  ReservedSpace(size_t size, size_t alignment, bool large,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                char* requested_address = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  ReservedSpace(const size_t prefix_size, const size_t prefix_align,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                const size_t suffix_size, const size_t suffix_align);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  char*  base()      const { return _base;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  size_t size()      const { return _size;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  size_t alignment() const { return _alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  bool   special()   const { return _special;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  bool is_reserved() const { return _base != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  void release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Splitting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  ReservedSpace first_part(size_t partition_size, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                           bool split = false, bool realloc = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  ReservedSpace last_part (size_t partition_size, size_t alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // These simply call the above using the default alignment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  inline ReservedSpace first_part(size_t partition_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                                  bool split = false, bool realloc = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  inline ReservedSpace last_part (size_t partition_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static size_t page_align_size_up(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static size_t page_align_size_down(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static size_t allocation_align_size_up(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  static size_t allocation_align_size_down(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
ReservedSpace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
ReservedSpace::first_part(size_t partition_size, bool split, bool realloc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  return first_part(partition_size, alignment(), split, realloc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
ReservedSpace ReservedSpace::last_part(size_t partition_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return last_part(partition_size, alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// VirtualSpace is data structure for committing a previously reserved address range in smaller chunks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
class VirtualSpace VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Reserved area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  char* _low_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  char* _high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Committed area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  char* _low;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  char* _high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // The entire space has been committed and pinned in memory, no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // os::commit_memory() or os::uncommit_memory().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  bool _special;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // MPSS Support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Each virtualspace region has a lower, middle, and upper region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Each region has an end boundary and a high pointer which is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // high water mark for the last allocated byte.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // The lower and upper unaligned to LargePageSizeInBytes uses default page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // size.  The middle region uses large page size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  char* _lower_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  char* _middle_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  char* _upper_high;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  char* _lower_high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  char* _middle_high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  char* _upper_high_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  size_t _lower_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  size_t _middle_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  size_t _upper_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // MPSS Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  char* lower_high() const { return _lower_high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  char* middle_high() const { return _middle_high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  char* upper_high() const { return _upper_high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  char* lower_high_boundary() const { return _lower_high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  char* middle_high_boundary() const { return _middle_high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  char* upper_high_boundary() const { return _upper_high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  size_t lower_alignment() const { return _lower_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  size_t middle_alignment() const { return _middle_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  size_t upper_alignment() const { return _upper_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // Committed area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  char* low()  const { return _low; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  char* high() const { return _high; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // Reserved area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  char* low_boundary()  const { return _low_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  char* high_boundary() const { return _high_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  bool special() const { return _special; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  VirtualSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  bool initialize(ReservedSpace rs, size_t committed_byte_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Destruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  ~VirtualSpace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // Testers (all sizes are byte sizes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  size_t committed_size()   const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  size_t reserved_size()    const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  size_t uncommitted_size() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  bool   contains(const void* p)  const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // returns true on success, false otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  bool expand_by(size_t bytes, bool pre_touch = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  void shrink_by(size_t bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  void release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void check_for_contiguity() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void print() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
};