src/share/vm/memory/allocation.cpp

Wed, 02 Mar 2011 08:18:35 -0500

author
kamg
date
Wed, 02 Mar 2011 08:18:35 -0500
changeset 2589
4a9604cd7c5f
parent 2557
f7de3327c683
child 2834
2a3da7eaf4a6
permissions
-rw-r--r--

6878713: Verifier heap corruption, relating to backward jsrs
Summary: Added overflow detection in arena Amalloc methods
Reviewed-by: coleenp, phh

duke@435 1 /*
kvn@2557 2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "memory/allocation.hpp"
stefank@2314 27 #include "memory/allocation.inline.hpp"
stefank@2314 28 #include "memory/resourceArea.hpp"
stefank@2314 29 #include "runtime/os.hpp"
stefank@2314 30 #include "runtime/task.hpp"
stefank@2314 31 #include "runtime/threadCritical.hpp"
stefank@2314 32 #include "utilities/ostream.hpp"
stefank@2314 33 #ifdef TARGET_OS_FAMILY_linux
stefank@2314 34 # include "os_linux.inline.hpp"
stefank@2314 35 #endif
stefank@2314 36 #ifdef TARGET_OS_FAMILY_solaris
stefank@2314 37 # include "os_solaris.inline.hpp"
stefank@2314 38 #endif
stefank@2314 39 #ifdef TARGET_OS_FAMILY_windows
stefank@2314 40 # include "os_windows.inline.hpp"
stefank@2314 41 #endif
duke@435 42
duke@435 43 void* CHeapObj::operator new(size_t size){
duke@435 44 return (void *) AllocateHeap(size, "CHeapObj-new");
duke@435 45 }
duke@435 46
duke@435 47 void CHeapObj::operator delete(void* p){
duke@435 48 FreeHeap(p);
duke@435 49 }
duke@435 50
duke@435 51 void* StackObj::operator new(size_t size) { ShouldNotCallThis(); return 0; };
duke@435 52 void StackObj::operator delete(void* p) { ShouldNotCallThis(); };
duke@435 53 void* _ValueObj::operator new(size_t size) { ShouldNotCallThis(); return 0; };
duke@435 54 void _ValueObj::operator delete(void* p) { ShouldNotCallThis(); };
duke@435 55
duke@435 56 void* ResourceObj::operator new(size_t size, allocation_type type) {
duke@435 57 address res;
duke@435 58 switch (type) {
duke@435 59 case C_HEAP:
duke@435 60 res = (address)AllocateHeap(size, "C_Heap: ResourceOBJ");
kvn@2040 61 DEBUG_ONLY(set_allocation_type(res, C_HEAP);)
duke@435 62 break;
duke@435 63 case RESOURCE_AREA:
kvn@2043 64 // new(size) sets allocation type RESOURCE_AREA.
duke@435 65 res = (address)operator new(size);
duke@435 66 break;
duke@435 67 default:
duke@435 68 ShouldNotReachHere();
duke@435 69 }
duke@435 70 return res;
duke@435 71 }
duke@435 72
duke@435 73 void ResourceObj::operator delete(void* p) {
duke@435 74 assert(((ResourceObj *)p)->allocated_on_C_heap(),
duke@435 75 "delete only allowed for C_HEAP objects");
kvn@2357 76 DEBUG_ONLY(((ResourceObj *)p)->_allocation_t[0] = (uintptr_t)badHeapOopVal;)
duke@435 77 FreeHeap(p);
duke@435 78 }
duke@435 79
kvn@2040 80 #ifdef ASSERT
kvn@2040 81 void ResourceObj::set_allocation_type(address res, allocation_type type) {
kvn@2040 82 // Set allocation type in the resource object
kvn@2040 83 uintptr_t allocation = (uintptr_t)res;
kvn@2043 84 assert((allocation & allocation_mask) == 0, "address should be aligned to 4 bytes at least");
kvn@2040 85 assert(type <= allocation_mask, "incorrect allocation type");
kvn@2357 86 ResourceObj* resobj = (ResourceObj *)res;
kvn@2357 87 resobj->_allocation_t[0] = ~(allocation + type);
kvn@2357 88 if (type != STACK_OR_EMBEDDED) {
kvn@2357 89 // Called from operator new() and CollectionSetChooser(),
kvn@2357 90 // set verification value.
kvn@2357 91 resobj->_allocation_t[1] = (uintptr_t)&(resobj->_allocation_t[1]) + type;
kvn@2357 92 }
kvn@2040 93 }
kvn@2040 94
kvn@2043 95 ResourceObj::allocation_type ResourceObj::get_allocation_type() const {
kvn@2357 96 assert(~(_allocation_t[0] | allocation_mask) == (uintptr_t)this, "lost resource object");
kvn@2357 97 return (allocation_type)((~_allocation_t[0]) & allocation_mask);
kvn@2357 98 }
kvn@2357 99
kvn@2357 100 bool ResourceObj::is_type_set() const {
kvn@2357 101 allocation_type type = (allocation_type)(_allocation_t[1] & allocation_mask);
kvn@2357 102 return get_allocation_type() == type &&
kvn@2357 103 (_allocation_t[1] - type) == (uintptr_t)(&_allocation_t[1]);
kvn@2040 104 }
kvn@2040 105
kvn@2043 106 ResourceObj::ResourceObj() { // default constructor
kvn@2357 107 if (~(_allocation_t[0] | allocation_mask) != (uintptr_t)this) {
kvn@2357 108 // Operator new() is not called for allocations
kvn@2357 109 // on stack and for embedded objects.
kvn@2040 110 set_allocation_type((address)this, STACK_OR_EMBEDDED);
kvn@2357 111 } else if (allocated_on_stack()) { // STACK_OR_EMBEDDED
kvn@2357 112 // For some reason we got a value which resembles
kvn@2357 113 // an embedded or stack object (operator new() does not
kvn@2357 114 // set such type). Keep it since it is valid value
kvn@2357 115 // (even if it was garbage).
kvn@2357 116 // Ignore garbage in other fields.
kvn@2357 117 } else if (is_type_set()) {
kvn@2357 118 // Operator new() was called and type was set.
kvn@2357 119 assert(!allocated_on_stack(),
kvn@2357 120 err_msg("not embedded or stack, this(" PTR_FORMAT ") type %d a[0]=(" PTR_FORMAT ") a[1]=(" PTR_FORMAT ")",
kvn@2357 121 this, get_allocation_type(), _allocation_t[0], _allocation_t[1]));
kvn@2040 122 } else {
kvn@2357 123 // Operator new() was not called.
kvn@2357 124 // Assume that it is embedded or stack object.
kvn@2357 125 set_allocation_type((address)this, STACK_OR_EMBEDDED);
kvn@2040 126 }
kvn@2357 127 _allocation_t[1] = 0; // Zap verification value
kvn@2040 128 }
kvn@2040 129
kvn@2043 130 ResourceObj::ResourceObj(const ResourceObj& r) { // default copy constructor
kvn@2040 131 // Used in ClassFileParser::parse_constant_pool_entries() for ClassFileStream.
kvn@2357 132 // Note: garbage may resembles valid value.
kvn@2357 133 assert(~(_allocation_t[0] | allocation_mask) != (uintptr_t)this || !is_type_set(),
kvn@2357 134 err_msg("embedded or stack only, this(" PTR_FORMAT ") type %d a[0]=(" PTR_FORMAT ") a[1]=(" PTR_FORMAT ")",
kvn@2357 135 this, get_allocation_type(), _allocation_t[0], _allocation_t[1]));
kvn@2040 136 set_allocation_type((address)this, STACK_OR_EMBEDDED);
kvn@2357 137 _allocation_t[1] = 0; // Zap verification value
kvn@2040 138 }
kvn@2040 139
kvn@2040 140 ResourceObj& ResourceObj::operator=(const ResourceObj& r) { // default copy assignment
kvn@2040 141 // Used in InlineTree::ok_to_inline() for WarmCallInfo.
kvn@2357 142 assert(allocated_on_stack(),
kvn@2357 143 err_msg("copy only into local, this(" PTR_FORMAT ") type %d a[0]=(" PTR_FORMAT ") a[1]=(" PTR_FORMAT ")",
kvn@2357 144 this, get_allocation_type(), _allocation_t[0], _allocation_t[1]));
kvn@2357 145 // Keep current _allocation_t value;
kvn@2040 146 return *this;
kvn@2040 147 }
kvn@2040 148
kvn@2040 149 ResourceObj::~ResourceObj() {
kvn@2043 150 // allocated_on_C_heap() also checks that encoded (in _allocation) address == this.
kvn@2357 151 if (!allocated_on_C_heap()) { // ResourceObj::delete() will zap _allocation for C_heap.
kvn@2357 152 _allocation_t[0] = (uintptr_t)badHeapOopVal; // zap type
kvn@2040 153 }
kvn@2040 154 }
kvn@2040 155 #endif // ASSERT
kvn@2040 156
kvn@2040 157
duke@435 158 void trace_heap_malloc(size_t size, const char* name, void* p) {
duke@435 159 // A lock is not needed here - tty uses a lock internally
kvn@2557 160 tty->print_cr("Heap malloc " INTPTR_FORMAT " " SIZE_FORMAT " %s", p, size, name == NULL ? "" : name);
duke@435 161 }
duke@435 162
duke@435 163
duke@435 164 void trace_heap_free(void* p) {
duke@435 165 // A lock is not needed here - tty uses a lock internally
duke@435 166 tty->print_cr("Heap free " INTPTR_FORMAT, p);
duke@435 167 }
duke@435 168
duke@435 169 bool warn_new_operator = false; // see vm_main
duke@435 170
duke@435 171 //--------------------------------------------------------------------------------------
duke@435 172 // ChunkPool implementation
duke@435 173
duke@435 174 // MT-safe pool of chunks to reduce malloc/free thrashing
duke@435 175 // NB: not using Mutex because pools are used before Threads are initialized
duke@435 176 class ChunkPool {
duke@435 177 Chunk* _first; // first cached Chunk; its first word points to next chunk
duke@435 178 size_t _num_chunks; // number of unused chunks in pool
duke@435 179 size_t _num_used; // number of chunks currently checked out
duke@435 180 const size_t _size; // size of each chunk (must be uniform)
duke@435 181
duke@435 182 // Our three static pools
duke@435 183 static ChunkPool* _large_pool;
duke@435 184 static ChunkPool* _medium_pool;
duke@435 185 static ChunkPool* _small_pool;
duke@435 186
duke@435 187 // return first element or null
duke@435 188 void* get_first() {
duke@435 189 Chunk* c = _first;
duke@435 190 if (_first) {
duke@435 191 _first = _first->next();
duke@435 192 _num_chunks--;
duke@435 193 }
duke@435 194 return c;
duke@435 195 }
duke@435 196
duke@435 197 public:
duke@435 198 // All chunks in a ChunkPool has the same size
duke@435 199 ChunkPool(size_t size) : _size(size) { _first = NULL; _num_chunks = _num_used = 0; }
duke@435 200
duke@435 201 // Allocate a new chunk from the pool (might expand the pool)
duke@435 202 void* allocate(size_t bytes) {
duke@435 203 assert(bytes == _size, "bad size");
duke@435 204 void* p = NULL;
duke@435 205 { ThreadCritical tc;
duke@435 206 _num_used++;
duke@435 207 p = get_first();
duke@435 208 if (p == NULL) p = os::malloc(bytes);
duke@435 209 }
duke@435 210 if (p == NULL)
duke@435 211 vm_exit_out_of_memory(bytes, "ChunkPool::allocate");
duke@435 212
duke@435 213 return p;
duke@435 214 }
duke@435 215
duke@435 216 // Return a chunk to the pool
duke@435 217 void free(Chunk* chunk) {
duke@435 218 assert(chunk->length() + Chunk::aligned_overhead_size() == _size, "bad size");
duke@435 219 ThreadCritical tc;
duke@435 220 _num_used--;
duke@435 221
duke@435 222 // Add chunk to list
duke@435 223 chunk->set_next(_first);
duke@435 224 _first = chunk;
duke@435 225 _num_chunks++;
duke@435 226 }
duke@435 227
duke@435 228 // Prune the pool
duke@435 229 void free_all_but(size_t n) {
duke@435 230 // if we have more than n chunks, free all of them
duke@435 231 ThreadCritical tc;
duke@435 232 if (_num_chunks > n) {
duke@435 233 // free chunks at end of queue, for better locality
duke@435 234 Chunk* cur = _first;
duke@435 235 for (size_t i = 0; i < (n - 1) && cur != NULL; i++) cur = cur->next();
duke@435 236
duke@435 237 if (cur != NULL) {
duke@435 238 Chunk* next = cur->next();
duke@435 239 cur->set_next(NULL);
duke@435 240 cur = next;
duke@435 241
duke@435 242 // Free all remaining chunks
duke@435 243 while(cur != NULL) {
duke@435 244 next = cur->next();
duke@435 245 os::free(cur);
duke@435 246 _num_chunks--;
duke@435 247 cur = next;
duke@435 248 }
duke@435 249 }
duke@435 250 }
duke@435 251 }
duke@435 252
duke@435 253 // Accessors to preallocated pool's
duke@435 254 static ChunkPool* large_pool() { assert(_large_pool != NULL, "must be initialized"); return _large_pool; }
duke@435 255 static ChunkPool* medium_pool() { assert(_medium_pool != NULL, "must be initialized"); return _medium_pool; }
duke@435 256 static ChunkPool* small_pool() { assert(_small_pool != NULL, "must be initialized"); return _small_pool; }
duke@435 257
duke@435 258 static void initialize() {
duke@435 259 _large_pool = new ChunkPool(Chunk::size + Chunk::aligned_overhead_size());
duke@435 260 _medium_pool = new ChunkPool(Chunk::medium_size + Chunk::aligned_overhead_size());
duke@435 261 _small_pool = new ChunkPool(Chunk::init_size + Chunk::aligned_overhead_size());
duke@435 262 }
bobv@2036 263
bobv@2036 264 static void clean() {
bobv@2036 265 enum { BlocksToKeep = 5 };
bobv@2036 266 _small_pool->free_all_but(BlocksToKeep);
bobv@2036 267 _medium_pool->free_all_but(BlocksToKeep);
bobv@2036 268 _large_pool->free_all_but(BlocksToKeep);
bobv@2036 269 }
duke@435 270 };
duke@435 271
duke@435 272 ChunkPool* ChunkPool::_large_pool = NULL;
duke@435 273 ChunkPool* ChunkPool::_medium_pool = NULL;
duke@435 274 ChunkPool* ChunkPool::_small_pool = NULL;
duke@435 275
duke@435 276 void chunkpool_init() {
duke@435 277 ChunkPool::initialize();
duke@435 278 }
duke@435 279
bobv@2036 280 void
bobv@2036 281 Chunk::clean_chunk_pool() {
bobv@2036 282 ChunkPool::clean();
bobv@2036 283 }
bobv@2036 284
duke@435 285
duke@435 286 //--------------------------------------------------------------------------------------
duke@435 287 // ChunkPoolCleaner implementation
bobv@2036 288 //
duke@435 289
duke@435 290 class ChunkPoolCleaner : public PeriodicTask {
bobv@2036 291 enum { CleaningInterval = 5000 }; // cleaning interval in ms
duke@435 292
duke@435 293 public:
duke@435 294 ChunkPoolCleaner() : PeriodicTask(CleaningInterval) {}
duke@435 295 void task() {
bobv@2036 296 ChunkPool::clean();
duke@435 297 }
duke@435 298 };
duke@435 299
duke@435 300 //--------------------------------------------------------------------------------------
duke@435 301 // Chunk implementation
duke@435 302
duke@435 303 void* Chunk::operator new(size_t requested_size, size_t length) {
duke@435 304 // requested_size is equal to sizeof(Chunk) but in order for the arena
duke@435 305 // allocations to come out aligned as expected the size must be aligned
duke@435 306 // to expected arean alignment.
duke@435 307 // expect requested_size but if sizeof(Chunk) doesn't match isn't proper size we must align it.
duke@435 308 assert(ARENA_ALIGN(requested_size) == aligned_overhead_size(), "Bad alignment");
duke@435 309 size_t bytes = ARENA_ALIGN(requested_size) + length;
duke@435 310 switch (length) {
duke@435 311 case Chunk::size: return ChunkPool::large_pool()->allocate(bytes);
duke@435 312 case Chunk::medium_size: return ChunkPool::medium_pool()->allocate(bytes);
duke@435 313 case Chunk::init_size: return ChunkPool::small_pool()->allocate(bytes);
duke@435 314 default: {
duke@435 315 void *p = os::malloc(bytes);
duke@435 316 if (p == NULL)
duke@435 317 vm_exit_out_of_memory(bytes, "Chunk::new");
duke@435 318 return p;
duke@435 319 }
duke@435 320 }
duke@435 321 }
duke@435 322
duke@435 323 void Chunk::operator delete(void* p) {
duke@435 324 Chunk* c = (Chunk*)p;
duke@435 325 switch (c->length()) {
duke@435 326 case Chunk::size: ChunkPool::large_pool()->free(c); break;
duke@435 327 case Chunk::medium_size: ChunkPool::medium_pool()->free(c); break;
duke@435 328 case Chunk::init_size: ChunkPool::small_pool()->free(c); break;
duke@435 329 default: os::free(c);
duke@435 330 }
duke@435 331 }
duke@435 332
duke@435 333 Chunk::Chunk(size_t length) : _len(length) {
duke@435 334 _next = NULL; // Chain on the linked list
duke@435 335 }
duke@435 336
duke@435 337
duke@435 338 void Chunk::chop() {
duke@435 339 Chunk *k = this;
duke@435 340 while( k ) {
duke@435 341 Chunk *tmp = k->next();
duke@435 342 // clear out this chunk (to detect allocation bugs)
duke@435 343 if (ZapResourceArea) memset(k->bottom(), badResourceValue, k->length());
duke@435 344 delete k; // Free chunk (was malloc'd)
duke@435 345 k = tmp;
duke@435 346 }
duke@435 347 }
duke@435 348
duke@435 349 void Chunk::next_chop() {
duke@435 350 _next->chop();
duke@435 351 _next = NULL;
duke@435 352 }
duke@435 353
duke@435 354
duke@435 355 void Chunk::start_chunk_pool_cleaner_task() {
duke@435 356 #ifdef ASSERT
duke@435 357 static bool task_created = false;
duke@435 358 assert(!task_created, "should not start chuck pool cleaner twice");
duke@435 359 task_created = true;
duke@435 360 #endif
duke@435 361 ChunkPoolCleaner* cleaner = new ChunkPoolCleaner();
duke@435 362 cleaner->enroll();
duke@435 363 }
duke@435 364
duke@435 365 //------------------------------Arena------------------------------------------
duke@435 366
duke@435 367 Arena::Arena(size_t init_size) {
duke@435 368 size_t round_size = (sizeof (char *)) - 1;
duke@435 369 init_size = (init_size+round_size) & ~round_size;
duke@435 370 _first = _chunk = new (init_size) Chunk(init_size);
duke@435 371 _hwm = _chunk->bottom(); // Save the cached hwm, max
duke@435 372 _max = _chunk->top();
duke@435 373 set_size_in_bytes(init_size);
duke@435 374 }
duke@435 375
duke@435 376 Arena::Arena() {
duke@435 377 _first = _chunk = new (Chunk::init_size) Chunk(Chunk::init_size);
duke@435 378 _hwm = _chunk->bottom(); // Save the cached hwm, max
duke@435 379 _max = _chunk->top();
duke@435 380 set_size_in_bytes(Chunk::init_size);
duke@435 381 }
duke@435 382
duke@435 383 Arena::Arena(Arena *a) : _chunk(a->_chunk), _hwm(a->_hwm), _max(a->_max), _first(a->_first) {
duke@435 384 set_size_in_bytes(a->size_in_bytes());
duke@435 385 }
duke@435 386
duke@435 387 Arena *Arena::move_contents(Arena *copy) {
duke@435 388 copy->destruct_contents();
duke@435 389 copy->_chunk = _chunk;
duke@435 390 copy->_hwm = _hwm;
duke@435 391 copy->_max = _max;
duke@435 392 copy->_first = _first;
duke@435 393 copy->set_size_in_bytes(size_in_bytes());
duke@435 394 // Destroy original arena
duke@435 395 reset();
duke@435 396 return copy; // Return Arena with contents
duke@435 397 }
duke@435 398
duke@435 399 Arena::~Arena() {
duke@435 400 destruct_contents();
duke@435 401 }
duke@435 402
duke@435 403 // Destroy this arenas contents and reset to empty
duke@435 404 void Arena::destruct_contents() {
duke@435 405 if (UseMallocOnly && _first != NULL) {
duke@435 406 char* end = _first->next() ? _first->top() : _hwm;
duke@435 407 free_malloced_objects(_first, _first->bottom(), end, _hwm);
duke@435 408 }
duke@435 409 _first->chop();
duke@435 410 reset();
duke@435 411 }
duke@435 412
duke@435 413
duke@435 414 // Total of all Chunks in arena
duke@435 415 size_t Arena::used() const {
duke@435 416 size_t sum = _chunk->length() - (_max-_hwm); // Size leftover in this Chunk
duke@435 417 register Chunk *k = _first;
duke@435 418 while( k != _chunk) { // Whilst have Chunks in a row
duke@435 419 sum += k->length(); // Total size of this Chunk
duke@435 420 k = k->next(); // Bump along to next Chunk
duke@435 421 }
duke@435 422 return sum; // Return total consumed space.
duke@435 423 }
duke@435 424
kamg@2589 425 void Arena::signal_out_of_memory(size_t sz, const char* whence) const {
kamg@2589 426 vm_exit_out_of_memory(sz, whence);
kamg@2589 427 }
duke@435 428
duke@435 429 // Grow a new Chunk
duke@435 430 void* Arena::grow( size_t x ) {
duke@435 431 // Get minimal required size. Either real big, or even bigger for giant objs
duke@435 432 size_t len = MAX2(x, (size_t) Chunk::size);
duke@435 433
duke@435 434 Chunk *k = _chunk; // Get filled-up chunk address
duke@435 435 _chunk = new (len) Chunk(len);
duke@435 436
kamg@2589 437 if (_chunk == NULL) {
kamg@2589 438 signal_out_of_memory(len * Chunk::aligned_overhead_size(), "Arena::grow");
kamg@2589 439 }
duke@435 440
duke@435 441 if (k) k->set_next(_chunk); // Append new chunk to end of linked list
duke@435 442 else _first = _chunk;
duke@435 443 _hwm = _chunk->bottom(); // Save the cached hwm, max
duke@435 444 _max = _chunk->top();
duke@435 445 set_size_in_bytes(size_in_bytes() + len);
duke@435 446 void* result = _hwm;
duke@435 447 _hwm += x;
duke@435 448 return result;
duke@435 449 }
duke@435 450
duke@435 451
duke@435 452
duke@435 453 // Reallocate storage in Arena.
duke@435 454 void *Arena::Arealloc(void* old_ptr, size_t old_size, size_t new_size) {
duke@435 455 assert(new_size >= 0, "bad size");
duke@435 456 if (new_size == 0) return NULL;
duke@435 457 #ifdef ASSERT
duke@435 458 if (UseMallocOnly) {
duke@435 459 // always allocate a new object (otherwise we'll free this one twice)
duke@435 460 char* copy = (char*)Amalloc(new_size);
duke@435 461 size_t n = MIN2(old_size, new_size);
duke@435 462 if (n > 0) memcpy(copy, old_ptr, n);
duke@435 463 Afree(old_ptr,old_size); // Mostly done to keep stats accurate
duke@435 464 return copy;
duke@435 465 }
duke@435 466 #endif
duke@435 467 char *c_old = (char*)old_ptr; // Handy name
duke@435 468 // Stupid fast special case
duke@435 469 if( new_size <= old_size ) { // Shrink in-place
duke@435 470 if( c_old+old_size == _hwm) // Attempt to free the excess bytes
duke@435 471 _hwm = c_old+new_size; // Adjust hwm
duke@435 472 return c_old;
duke@435 473 }
duke@435 474
duke@435 475 // make sure that new_size is legal
duke@435 476 size_t corrected_new_size = ARENA_ALIGN(new_size);
duke@435 477
duke@435 478 // See if we can resize in-place
duke@435 479 if( (c_old+old_size == _hwm) && // Adjusting recent thing
duke@435 480 (c_old+corrected_new_size <= _max) ) { // Still fits where it sits
duke@435 481 _hwm = c_old+corrected_new_size; // Adjust hwm
duke@435 482 return c_old; // Return old pointer
duke@435 483 }
duke@435 484
duke@435 485 // Oops, got to relocate guts
duke@435 486 void *new_ptr = Amalloc(new_size);
duke@435 487 memcpy( new_ptr, c_old, old_size );
duke@435 488 Afree(c_old,old_size); // Mostly done to keep stats accurate
duke@435 489 return new_ptr;
duke@435 490 }
duke@435 491
duke@435 492
duke@435 493 // Determine if pointer belongs to this Arena or not.
duke@435 494 bool Arena::contains( const void *ptr ) const {
duke@435 495 #ifdef ASSERT
duke@435 496 if (UseMallocOnly) {
duke@435 497 // really slow, but not easy to make fast
duke@435 498 if (_chunk == NULL) return false;
duke@435 499 char** bottom = (char**)_chunk->bottom();
duke@435 500 for (char** p = (char**)_hwm - 1; p >= bottom; p--) {
duke@435 501 if (*p == ptr) return true;
duke@435 502 }
duke@435 503 for (Chunk *c = _first; c != NULL; c = c->next()) {
duke@435 504 if (c == _chunk) continue; // current chunk has been processed
duke@435 505 char** bottom = (char**)c->bottom();
duke@435 506 for (char** p = (char**)c->top() - 1; p >= bottom; p--) {
duke@435 507 if (*p == ptr) return true;
duke@435 508 }
duke@435 509 }
duke@435 510 return false;
duke@435 511 }
duke@435 512 #endif
duke@435 513 if( (void*)_chunk->bottom() <= ptr && ptr < (void*)_hwm )
duke@435 514 return true; // Check for in this chunk
duke@435 515 for (Chunk *c = _first; c; c = c->next()) {
duke@435 516 if (c == _chunk) continue; // current chunk has been processed
duke@435 517 if ((void*)c->bottom() <= ptr && ptr < (void*)c->top()) {
duke@435 518 return true; // Check for every chunk in Arena
duke@435 519 }
duke@435 520 }
duke@435 521 return false; // Not in any Chunk, so not in Arena
duke@435 522 }
duke@435 523
duke@435 524
duke@435 525 #ifdef ASSERT
duke@435 526 void* Arena::malloc(size_t size) {
duke@435 527 assert(UseMallocOnly, "shouldn't call");
duke@435 528 // use malloc, but save pointer in res. area for later freeing
duke@435 529 char** save = (char**)internal_malloc_4(sizeof(char*));
duke@435 530 return (*save = (char*)os::malloc(size));
duke@435 531 }
duke@435 532
duke@435 533 // for debugging with UseMallocOnly
duke@435 534 void* Arena::internal_malloc_4(size_t x) {
duke@435 535 assert( (x&(sizeof(char*)-1)) == 0, "misaligned size" );
kamg@2589 536 check_for_overflow(x, "Arena::internal_malloc_4");
duke@435 537 if (_hwm + x > _max) {
duke@435 538 return grow(x);
duke@435 539 } else {
duke@435 540 char *old = _hwm;
duke@435 541 _hwm += x;
duke@435 542 return old;
duke@435 543 }
duke@435 544 }
duke@435 545 #endif
duke@435 546
duke@435 547
duke@435 548 //--------------------------------------------------------------------------------------
duke@435 549 // Non-product code
duke@435 550
duke@435 551 #ifndef PRODUCT
duke@435 552 // The global operator new should never be called since it will usually indicate
duke@435 553 // a memory leak. Use CHeapObj as the base class of such objects to make it explicit
duke@435 554 // that they're allocated on the C heap.
duke@435 555 // Commented out in product version to avoid conflicts with third-party C++ native code.
duke@435 556 // %% note this is causing a problem on solaris debug build. the global
duke@435 557 // new is being called from jdk source and causing data corruption.
duke@435 558 // src/share/native/sun/awt/font/fontmanager/textcache/hsMemory.cpp::hsSoftNew
duke@435 559 // define CATCH_OPERATOR_NEW_USAGE if you want to use this.
duke@435 560 #ifdef CATCH_OPERATOR_NEW_USAGE
duke@435 561 void* operator new(size_t size){
duke@435 562 static bool warned = false;
duke@435 563 if (!warned && warn_new_operator)
duke@435 564 warning("should not call global (default) operator new");
duke@435 565 warned = true;
duke@435 566 return (void *) AllocateHeap(size, "global operator new");
duke@435 567 }
duke@435 568 #endif
duke@435 569
duke@435 570 void AllocatedObj::print() const { print_on(tty); }
duke@435 571 void AllocatedObj::print_value() const { print_value_on(tty); }
duke@435 572
duke@435 573 void AllocatedObj::print_on(outputStream* st) const {
duke@435 574 st->print_cr("AllocatedObj(" INTPTR_FORMAT ")", this);
duke@435 575 }
duke@435 576
duke@435 577 void AllocatedObj::print_value_on(outputStream* st) const {
duke@435 578 st->print("AllocatedObj(" INTPTR_FORMAT ")", this);
duke@435 579 }
duke@435 580
kvn@2557 581 julong Arena::_bytes_allocated = 0;
kvn@2557 582
kvn@2557 583 void Arena::inc_bytes_allocated(size_t x) { inc_stat_counter(&_bytes_allocated, x); }
duke@435 584
duke@435 585 AllocStats::AllocStats() {
kvn@2557 586 start_mallocs = os::num_mallocs;
kvn@2557 587 start_frees = os::num_frees;
duke@435 588 start_malloc_bytes = os::alloc_bytes;
kvn@2557 589 start_mfree_bytes = os::free_bytes;
kvn@2557 590 start_res_bytes = Arena::_bytes_allocated;
duke@435 591 }
duke@435 592
kvn@2557 593 julong AllocStats::num_mallocs() { return os::num_mallocs - start_mallocs; }
kvn@2557 594 julong AllocStats::alloc_bytes() { return os::alloc_bytes - start_malloc_bytes; }
kvn@2557 595 julong AllocStats::num_frees() { return os::num_frees - start_frees; }
kvn@2557 596 julong AllocStats::free_bytes() { return os::free_bytes - start_mfree_bytes; }
kvn@2557 597 julong AllocStats::resource_bytes() { return Arena::_bytes_allocated - start_res_bytes; }
duke@435 598 void AllocStats::print() {
kvn@2557 599 tty->print_cr(UINT64_FORMAT " mallocs (" UINT64_FORMAT "MB), "
kvn@2557 600 UINT64_FORMAT" frees (" UINT64_FORMAT "MB), " UINT64_FORMAT "MB resrc",
kvn@2557 601 num_mallocs(), alloc_bytes()/M, num_frees(), free_bytes()/M, resource_bytes()/M);
duke@435 602 }
duke@435 603
duke@435 604
duke@435 605 // debugging code
duke@435 606 inline void Arena::free_all(char** start, char** end) {
duke@435 607 for (char** p = start; p < end; p++) if (*p) os::free(*p);
duke@435 608 }
duke@435 609
duke@435 610 void Arena::free_malloced_objects(Chunk* chunk, char* hwm, char* max, char* hwm2) {
duke@435 611 assert(UseMallocOnly, "should not call");
duke@435 612 // free all objects malloced since resource mark was created; resource area
duke@435 613 // contains their addresses
duke@435 614 if (chunk->next()) {
duke@435 615 // this chunk is full, and some others too
duke@435 616 for (Chunk* c = chunk->next(); c != NULL; c = c->next()) {
duke@435 617 char* top = c->top();
duke@435 618 if (c->next() == NULL) {
duke@435 619 top = hwm2; // last junk is only used up to hwm2
duke@435 620 assert(c->contains(hwm2), "bad hwm2");
duke@435 621 }
duke@435 622 free_all((char**)c->bottom(), (char**)top);
duke@435 623 }
duke@435 624 assert(chunk->contains(hwm), "bad hwm");
duke@435 625 assert(chunk->contains(max), "bad max");
duke@435 626 free_all((char**)hwm, (char**)max);
duke@435 627 } else {
duke@435 628 // this chunk was partially used
duke@435 629 assert(chunk->contains(hwm), "bad hwm");
duke@435 630 assert(chunk->contains(hwm2), "bad hwm2");
duke@435 631 free_all((char**)hwm, (char**)hwm2);
duke@435 632 }
duke@435 633 }
duke@435 634
duke@435 635
duke@435 636 ReallocMark::ReallocMark() {
duke@435 637 #ifdef ASSERT
duke@435 638 Thread *thread = ThreadLocalStorage::get_thread_slow();
duke@435 639 _nesting = thread->resource_area()->nesting();
duke@435 640 #endif
duke@435 641 }
duke@435 642
duke@435 643 void ReallocMark::check() {
duke@435 644 #ifdef ASSERT
duke@435 645 if (_nesting != Thread::current()->resource_area()->nesting()) {
duke@435 646 fatal("allocation bug: array could grow within nested ResourceMark");
duke@435 647 }
duke@435 648 #endif
duke@435 649 }
duke@435 650
duke@435 651 #endif // Non-product

mercurial