hotspot/src/share/vm/adlc/arena.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
Initial load
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 1998-2002 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
#include "adlc.hpp"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
void* Chunk::operator new(size_t requested_size, size_t length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  return CHeapObj::operator new(requested_size + length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
void  Chunk::operator delete(void* p, size_t length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  CHeapObj::operator delete(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
Chunk::Chunk(size_t length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  _next = NULL;         // Chain on the linked list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  _len  = length;       // Save actual size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//------------------------------chop-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
void Chunk::chop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  Chunk *k = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  while( k ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    Chunk *tmp = k->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    // clear out this chunk (to detect allocation bugs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    memset(k, 0xBAADBABE, k->_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    free(k);                    // Free chunk (was malloc'd)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    k = tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
void Chunk::next_chop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _next->chop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//------------------------------Arena------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
Arena::Arena( size_t init_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  init_size = (init_size+3) & ~3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _first = _chunk = new (init_size) Chunk(init_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  _hwm = _chunk->bottom();      // Save the cached hwm, max
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  _max = _chunk->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  set_size_in_bytes(init_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
Arena::Arena() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  _first = _chunk = new (Chunk::init_size) Chunk(Chunk::init_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  _hwm = _chunk->bottom();      // Save the cached hwm, max
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  _max = _chunk->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  set_size_in_bytes(Chunk::init_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
Arena::Arena( Arena *a )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
: _chunk(a->_chunk), _hwm(a->_hwm), _max(a->_max), _first(a->_first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  set_size_in_bytes(a->size_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
//------------------------------used-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// Total of all Chunks in arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
size_t Arena::used() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  size_t sum = _chunk->_len - (_max-_hwm); // Size leftover in this Chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  register Chunk *k = _first;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  while( k != _chunk) {         // Whilst have Chunks in a row
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    sum += k->_len;             // Total size of this Chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    k = k->_next;               // Bump along to next Chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  return sum;                   // Return total consumed space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
//------------------------------grow-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// Grow a new Chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
void* Arena::grow( size_t x ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // Get minimal required size.  Either real big, or even bigger for giant objs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  size_t len = max(x, Chunk::size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  register Chunk *k = _chunk;   // Get filled-up chunk address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  _chunk = new (len) Chunk(len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  if( k ) k->_next = _chunk;    // Append new chunk to end of linked list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  else _first = _chunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  _hwm  = _chunk->bottom();     // Save the cached hwm, max
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  _max =  _chunk->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  set_size_in_bytes(size_in_bytes() + len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  void* result = _hwm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  _hwm += x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
//------------------------------calloc-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// Allocate zeroed storage in Arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
void *Arena::Acalloc( size_t items, size_t x ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  size_t z = items*x;   // Total size needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  void *ptr = Amalloc(z);       // Get space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  memset( ptr, 0, z );          // Zap space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  return ptr;                   // Return space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
//------------------------------realloc----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
// Reallocate storage in Arena.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
void *Arena::Arealloc( void *old_ptr, size_t old_size, size_t new_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  char *c_old = (char*)old_ptr; // Handy name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Stupid fast special case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  if( new_size <= old_size ) {  // Shrink in-place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    if( c_old+old_size == _hwm) // Attempt to free the excess bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      _hwm = c_old+new_size;    // Adjust hwm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    return c_old;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // See if we can resize in-place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  if( (c_old+old_size == _hwm) &&       // Adjusting recent thing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      (c_old+new_size <= _max) ) {      // Still fits where it sits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    _hwm = c_old+new_size;      // Adjust hwm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    return c_old;               // Return old pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Oops, got to relocate guts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  void *new_ptr = Amalloc(new_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  memcpy( new_ptr, c_old, old_size );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  Afree(c_old,old_size);        // Mostly done to keep stats accurate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  return new_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
//------------------------------reset------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// Reset this Arena to empty, and return this Arenas guts in a new Arena.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
Arena *Arena::reset(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  Arena *a = new Arena(this);   // New empty arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  _first = _chunk = NULL;       // Normal, new-arena initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  _hwm = _max = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  return a;                     // Return Arena with guts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
//------------------------------contains---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
// Determine if pointer belongs to this Arena or not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
bool Arena::contains( const void *ptr ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  if( (void*)_chunk->bottom() <= ptr && ptr < (void*)_hwm )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    return true;                // Check for in this chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  for( Chunk *c = _first; c; c = c->_next )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    if( (void*)c->bottom() <= ptr && ptr < (void*)c->top())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      return true;              // Check for every chunk in Arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  return false;                 // Not in any Chunk, so not in Arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// CHeapObj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
void* CHeapObj::operator new(size_t size){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  return (void *) malloc(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
void CHeapObj::operator delete(void* p){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
 free(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}