< prev index next >

src/share/vm/gc/parallel/mutableNUMASpace.cpp

Print this page




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "gc/parallel/mutableNUMASpace.hpp"
  27 #include "gc/shared/collectedHeap.hpp"
  28 #include "gc/shared/spaceDecorator.hpp"
  29 #include "oops/oop.inline.hpp"
  30 #include "runtime/atomic.hpp"
  31 #include "runtime/thread.inline.hpp"

  32 
  33 MutableNUMASpace::MutableNUMASpace(size_t alignment) : MutableSpace(alignment), _must_use_large_pages(false) {
  34   _lgrp_spaces = new (ResourceObj::C_HEAP, mtGC) GrowableArray<LGRPSpace*>(0, true);
  35   _page_size = os::vm_page_size();
  36   _adaptation_cycles = 0;
  37   _samples_count = 0;
  38 
  39 #ifdef LINUX
  40   // Changing the page size can lead to freeing of memory. When using large pages
  41   // and the memory has been both reserved and committed, Linux does not support
  42   // freeing parts of it.
  43     if (UseLargePages && !os::can_commit_large_page_memory()) {
  44       _must_use_large_pages = true;
  45     }
  46 #endif // LINUX
  47 
  48   update_layout(true);
  49 }
  50 
  51 MutableNUMASpace::~MutableNUMASpace() {




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "gc/parallel/mutableNUMASpace.hpp"
  27 #include "gc/shared/collectedHeap.hpp"
  28 #include "gc/shared/spaceDecorator.hpp"
  29 #include "oops/oop.inline.hpp"
  30 #include "runtime/atomic.hpp"
  31 #include "runtime/thread.inline.hpp"
  32 #include "utilities/align.hpp"
  33 
  34 MutableNUMASpace::MutableNUMASpace(size_t alignment) : MutableSpace(alignment), _must_use_large_pages(false) {
  35   _lgrp_spaces = new (ResourceObj::C_HEAP, mtGC) GrowableArray<LGRPSpace*>(0, true);
  36   _page_size = os::vm_page_size();
  37   _adaptation_cycles = 0;
  38   _samples_count = 0;
  39 
  40 #ifdef LINUX
  41   // Changing the page size can lead to freeing of memory. When using large pages
  42   // and the memory has been both reserved and committed, Linux does not support
  43   // freeing parts of it.
  44     if (UseLargePages && !os::can_commit_large_page_memory()) {
  45       _must_use_large_pages = true;
  46     }
  47 #endif // LINUX
  48 
  49   update_layout(true);
  50 }
  51 
  52 MutableNUMASpace::~MutableNUMASpace() {


< prev index next >