src/hotspot/share/adlc/arena.cpp
author pliden
Wed, 20 Nov 2019 10:37:46 +0100
changeset 59152 59272e9e0635
parent 53416 9db898820f63
permissions -rw-r--r--
8234383: Test TestBiasedLockRevocationEvents.java assumes -XX:UseBiasedLocking is enabled Reviewed-by: mgronlun, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 47216
diff changeset
     2
 * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
1
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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
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
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    27
void* AllocateHeap(size_t size) {
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    28
  unsigned char* ptr = (unsigned char*) malloc(size);
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    29
  if (ptr == NULL && size != 0) {
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    30
    fprintf(stderr, "Error: Out of memory in ADLC\n"); // logging can cause crash!
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    31
    fflush(stderr);
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    32
    exit(1);
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    33
  }
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    34
  return ptr;
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    35
}
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
    36
53416
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    37
void* ReAllocateHeap(void* old_ptr, size_t size) {
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    38
  unsigned char* ptr = (unsigned char*) realloc(old_ptr, size);
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    39
  if (ptr == NULL && size != 0) {
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    40
    fprintf(stderr, "Error: Out of memory in ADLC\n"); // logging can cause crash!
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    41
    fflush(stderr);
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    42
    exit(1);
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    43
  }
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    44
  return ptr;
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    45
}
9db898820f63 8217291: Failure of ::realloc() should be handled correctly in adlc/forms.cpp
thartmann
parents: 52583
diff changeset
    46
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 7397
diff changeset
    47
void* Chunk::operator new(size_t requested_size, size_t length) throw() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  return CHeapObj::operator new(requested_size + length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
void  Chunk::operator delete(void* p, size_t length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  CHeapObj::operator delete(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
Chunk::Chunk(size_t length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  _next = NULL;         // Chain on the linked list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _len  = length;       // Save actual size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
//------------------------------chop-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
void Chunk::chop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  Chunk *k = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  while( k ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    Chunk *tmp = k->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    // clear out this chunk (to detect allocation bugs)
51078
fc6cfe40e32a 8207049: Minor improvements of compiler code.
goetz
parents: 47216
diff changeset
    66
    memset(k, 0xBE, k->_len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    free(k);                    // Free chunk (was malloc'd)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    k = tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
void Chunk::next_chop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  _next->chop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
//------------------------------Arena------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
Arena::Arena( size_t init_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  init_size = (init_size+3) & ~3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  _first = _chunk = new (init_size) Chunk(init_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _hwm = _chunk->bottom();      // Save the cached hwm, max
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  _max = _chunk->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  set_size_in_bytes(init_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
Arena::Arena() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  _first = _chunk = new (Chunk::init_size) Chunk(Chunk::init_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  _hwm = _chunk->bottom();      // Save the cached hwm, max
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  _max = _chunk->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  set_size_in_bytes(Chunk::init_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
Arena::Arena( Arena *a )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
: _chunk(a->_chunk), _hwm(a->_hwm), _max(a->_max), _first(a->_first) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  set_size_in_bytes(a->size_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
//------------------------------used-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// Total of all Chunks in arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
size_t Arena::used() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  size_t sum = _chunk->_len - (_max-_hwm); // Size leftover in this Chunk
51050
96ea37459ca7 8207011: Remove uses of the register storage class specifier
mikael
parents: 47216
diff changeset
   102
  Chunk *k = _first;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  while( k != _chunk) {         // Whilst have Chunks in a row
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    sum += k->_len;             // Total size of this Chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    k = k->_next;               // Bump along to next Chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  return sum;                   // Return total consumed space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
//------------------------------grow-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
// Grow a new Chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
void* Arena::grow( size_t x ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Get minimal required size.  Either real big, or even bigger for giant objs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  size_t len = max(x, Chunk::size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
51050
96ea37459ca7 8207011: Remove uses of the register storage class specifier
mikael
parents: 47216
diff changeset
   116
  Chunk *k = _chunk;            // Get filled-up chunk address
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  _chunk = new (len) Chunk(len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  if( k ) k->_next = _chunk;    // Append new chunk to end of linked list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  else _first = _chunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  _hwm  = _chunk->bottom();     // Save the cached hwm, max
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  _max =  _chunk->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  set_size_in_bytes(size_in_bytes() + len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  void* result = _hwm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  _hwm += x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
//------------------------------calloc-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// Allocate zeroed storage in Arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
void *Arena::Acalloc( size_t items, size_t x ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  size_t z = items*x;   // Total size needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  void *ptr = Amalloc(z);       // Get space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  memset( ptr, 0, z );          // Zap space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  return ptr;                   // Return space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
//------------------------------realloc----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
// Reallocate storage in Arena.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
void *Arena::Arealloc( void *old_ptr, size_t old_size, size_t new_size ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  char *c_old = (char*)old_ptr; // Handy name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Stupid fast special case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  if( new_size <= old_size ) {  // Shrink in-place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    if( c_old+old_size == _hwm) // Attempt to free the excess bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      _hwm = c_old+new_size;    // Adjust hwm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    return c_old;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // See if we can resize in-place
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  if( (c_old+old_size == _hwm) &&       // Adjusting recent thing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      (c_old+new_size <= _max) ) {      // Still fits where it sits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    _hwm = c_old+new_size;      // Adjust hwm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    return c_old;               // Return old pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // Oops, got to relocate guts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  void *new_ptr = Amalloc(new_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  memcpy( new_ptr, c_old, old_size );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  Afree(c_old,old_size);        // Mostly done to keep stats accurate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  return new_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
//------------------------------reset------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// Reset this Arena to empty, and return this Arenas guts in a new Arena.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
Arena *Arena::reset(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  Arena *a = new Arena(this);   // New empty arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  _first = _chunk = NULL;       // Normal, new-arena initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  _hwm = _max = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  return a;                     // Return Arena with guts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
//------------------------------contains---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
// Determine if pointer belongs to this Arena or not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
bool Arena::contains( const void *ptr ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  if( (void*)_chunk->bottom() <= ptr && ptr < (void*)_hwm )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    return true;                // Check for in this chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  for( Chunk *c = _first; c; c = c->_next )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    if( (void*)c->bottom() <= ptr && ptr < (void*)c->top())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      return true;              // Check for every chunk in Arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  return false;                 // Not in any Chunk, so not in Arena
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// CHeapObj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 7397
diff changeset
   186
void* CHeapObj::operator new(size_t size) throw() {
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51092
diff changeset
   187
  return (void *) AllocateHeap(size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
void CHeapObj::operator delete(void* p){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
 free(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}