src/share/vm/memory/allocation.inline.hpp

Fri, 29 Apr 2016 00:06:10 +0800

author
aoqi
date
Fri, 29 Apr 2016 00:06:10 +0800
changeset 1
2d8a650513c2
parent 0
f90c822e73f8
child 6876
710a3c8b516e
permissions
-rw-r--r--

Added MIPS 64-bit port.

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #ifndef SHARE_VM_MEMORY_ALLOCATION_INLINE_HPP
aoqi@0 26 #define SHARE_VM_MEMORY_ALLOCATION_INLINE_HPP
aoqi@0 27
aoqi@0 28 #include "runtime/atomic.inline.hpp"
aoqi@0 29 #include "runtime/os.hpp"
aoqi@0 30
aoqi@0 31 // Explicit C-heap memory management
aoqi@0 32
aoqi@0 33 void trace_heap_malloc(size_t size, const char* name, void *p);
aoqi@0 34 void trace_heap_free(void *p);
aoqi@0 35
aoqi@0 36 #ifndef PRODUCT
aoqi@0 37 // Increments unsigned long value for statistics (not atomic on MP).
aoqi@0 38 inline void inc_stat_counter(volatile julong* dest, julong add_value) {
aoqi@0 39 #if defined(SPARC) || defined(X86)
aoqi@0 40 // Sparc and X86 have atomic jlong (8 bytes) instructions
aoqi@0 41 julong value = Atomic::load((volatile jlong*)dest);
aoqi@0 42 value += add_value;
aoqi@0 43 Atomic::store((jlong)value, (volatile jlong*)dest);
aoqi@0 44 #else
aoqi@0 45 // possible word-tearing during load/store
aoqi@0 46 *dest += add_value;
aoqi@0 47 #endif
aoqi@0 48 }
aoqi@0 49 #endif
aoqi@0 50
aoqi@0 51 // allocate using malloc; will fail if no memory available
aoqi@0 52 inline char* AllocateHeap(size_t size, MEMFLAGS flags, address pc = 0,
aoqi@0 53 AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM) {
aoqi@0 54 if (pc == 0) {
aoqi@0 55 pc = CURRENT_PC;
aoqi@0 56 }
aoqi@0 57 char* p = (char*) os::malloc(size, flags, pc);
aoqi@0 58 #ifdef ASSERT
aoqi@0 59 if (PrintMallocFree) trace_heap_malloc(size, "AllocateHeap", p);
aoqi@0 60 #endif
aoqi@0 61 if (p == NULL && alloc_failmode == AllocFailStrategy::EXIT_OOM) {
aoqi@0 62 vm_exit_out_of_memory(size, OOM_MALLOC_ERROR, "AllocateHeap");
aoqi@0 63 }
aoqi@0 64 return p;
aoqi@0 65 }
aoqi@0 66
aoqi@0 67 inline char* ReallocateHeap(char *old, size_t size, MEMFLAGS flags,
aoqi@0 68 AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM) {
aoqi@0 69 char* p = (char*) os::realloc(old, size, flags, CURRENT_PC);
aoqi@0 70 #ifdef ASSERT
aoqi@0 71 if (PrintMallocFree) trace_heap_malloc(size, "ReallocateHeap", p);
aoqi@0 72 #endif
aoqi@0 73 if (p == NULL && alloc_failmode == AllocFailStrategy::EXIT_OOM) {
aoqi@0 74 vm_exit_out_of_memory(size, OOM_MALLOC_ERROR, "ReallocateHeap");
aoqi@0 75 }
aoqi@0 76 return p;
aoqi@0 77 }
aoqi@0 78
aoqi@0 79 inline void FreeHeap(void* p, MEMFLAGS memflags = mtInternal) {
aoqi@0 80 #ifdef ASSERT
aoqi@0 81 if (PrintMallocFree) trace_heap_free(p);
aoqi@0 82 #endif
aoqi@0 83 os::free(p, memflags);
aoqi@0 84 }
aoqi@0 85
aoqi@0 86
aoqi@0 87 template <MEMFLAGS F> void* CHeapObj<F>::operator new(size_t size,
aoqi@0 88 address caller_pc) throw() {
aoqi@0 89 void* p = (void*)AllocateHeap(size, F, (caller_pc != 0 ? caller_pc : CALLER_PC));
aoqi@0 90 #ifdef ASSERT
aoqi@0 91 if (PrintMallocFree) trace_heap_malloc(size, "CHeapObj-new", p);
aoqi@0 92 #endif
aoqi@0 93 return p;
aoqi@0 94 }
aoqi@0 95
aoqi@0 96 template <MEMFLAGS F> void* CHeapObj<F>::operator new (size_t size,
aoqi@0 97 const std::nothrow_t& nothrow_constant, address caller_pc) throw() {
aoqi@0 98 void* p = (void*)AllocateHeap(size, F, (caller_pc != 0 ? caller_pc : CALLER_PC),
aoqi@0 99 AllocFailStrategy::RETURN_NULL);
aoqi@0 100 #ifdef ASSERT
aoqi@0 101 if (PrintMallocFree) trace_heap_malloc(size, "CHeapObj-new", p);
aoqi@0 102 #endif
aoqi@0 103 return p;
aoqi@0 104 }
aoqi@0 105
aoqi@0 106 template <MEMFLAGS F> void* CHeapObj<F>::operator new [](size_t size,
aoqi@0 107 address caller_pc) throw() {
aoqi@0 108 return CHeapObj<F>::operator new(size, caller_pc);
aoqi@0 109 }
aoqi@0 110
aoqi@0 111 template <MEMFLAGS F> void* CHeapObj<F>::operator new [](size_t size,
aoqi@0 112 const std::nothrow_t& nothrow_constant, address caller_pc) throw() {
aoqi@0 113 return CHeapObj<F>::operator new(size, nothrow_constant, caller_pc);
aoqi@0 114 }
aoqi@0 115
aoqi@0 116 template <MEMFLAGS F> void CHeapObj<F>::operator delete(void* p){
aoqi@0 117 FreeHeap(p, F);
aoqi@0 118 }
aoqi@0 119
aoqi@0 120 template <MEMFLAGS F> void CHeapObj<F>::operator delete [](void* p){
aoqi@0 121 FreeHeap(p, F);
aoqi@0 122 }
aoqi@0 123
aoqi@0 124 template <class E, MEMFLAGS F>
aoqi@0 125 E* ArrayAllocator<E, F>::allocate(size_t length) {
aoqi@0 126 assert(_addr == NULL, "Already in use");
aoqi@0 127
aoqi@0 128 _size = sizeof(E) * length;
aoqi@0 129 _use_malloc = _size < ArrayAllocatorMallocLimit;
aoqi@0 130
aoqi@0 131 if (_use_malloc) {
aoqi@0 132 _addr = AllocateHeap(_size, F);
aoqi@0 133 if (_addr == NULL && _size >= (size_t)os::vm_allocation_granularity()) {
aoqi@0 134 // malloc failed let's try with mmap instead
aoqi@0 135 _use_malloc = false;
aoqi@0 136 } else {
aoqi@0 137 return (E*)_addr;
aoqi@0 138 }
aoqi@0 139 }
aoqi@0 140
aoqi@0 141 int alignment = os::vm_allocation_granularity();
aoqi@0 142 _size = align_size_up(_size, alignment);
aoqi@0 143
aoqi@0 144 _addr = os::reserve_memory(_size, NULL, alignment, F);
aoqi@0 145 if (_addr == NULL) {
aoqi@0 146 vm_exit_out_of_memory(_size, OOM_MMAP_ERROR, "Allocator (reserve)");
aoqi@0 147 }
aoqi@0 148
aoqi@0 149 os::commit_memory_or_exit(_addr, _size, !ExecMem, "Allocator (commit)");
aoqi@0 150
aoqi@0 151 return (E*)_addr;
aoqi@0 152 }
aoqi@0 153
aoqi@0 154 template<class E, MEMFLAGS F>
aoqi@0 155 void ArrayAllocator<E, F>::free() {
aoqi@0 156 if (_addr != NULL) {
aoqi@0 157 if (_use_malloc) {
aoqi@0 158 FreeHeap(_addr, F);
aoqi@0 159 } else {
aoqi@0 160 os::release_memory(_addr, _size);
aoqi@0 161 }
aoqi@0 162 _addr = NULL;
aoqi@0 163 }
aoqi@0 164 }
aoqi@0 165
aoqi@0 166 #endif // SHARE_VM_MEMORY_ALLOCATION_INLINE_HPP

mercurial