src/hotspot/share/libadt/dict.cpp
author tschatzl
Wed, 08 Aug 2018 15:31:07 +0200
changeset 51334 cc2c79d22508
parent 51050 96ea37459ca7
child 52434 44f34d2c3243
permissions -rw-r--r--
8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder Reviewed-by: dholmes, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 33794
diff changeset
     2
 * Copyright (c) 1997, 2017, 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: 2154
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2154
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: 2154
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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "libadt/dict.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
// Dictionaries - An Abstract Data Type
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// %%%%% includes not needed with AVM framework - Ungar
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#include <assert.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//------------------------------data-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// String hash tables
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#define MAXID 20
24425
53764d2358f9 8041415: remove port.{cpp,hpp} files
zgu
parents: 7397
diff changeset
    37
static uint8_t initflag = 0;       // True after 1st initialization
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
static const char shft[MAXID] = {1,2,3,4,5,6,7,1,2,3,4,5,6,7,1,2,3,4,5,6};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
static short xsum[MAXID];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//------------------------------bucket---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class bucket : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  uint _cnt, _max;              // Size of bucket
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  void **_keyvals;              // Array of keys and values
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//------------------------------Dict-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// The dictionary is kept has a hash table.  The hash table is a even power
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// of two, for nice modulo operations.  Each bucket in the hash table points
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// to a linear list of key-value pairs; each key & value is just a (void *).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// The list starts with a count.  A hash lookup finds the list head, then a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// simple linear scan finds the key.  If the table gets too full, it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// doubled in size; the total amount of EXTRA times all hash functions are
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// computed for the doubling is no more than the current size - thus the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// doubling in size costs no more than a constant factor in speed.
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 51050
diff changeset
    57
Dict::Dict(CmpKey initcmp, Hash inithash) : _arena(Thread::current()->resource_area()),
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 51050
diff changeset
    58
  _hash(inithash), _cmp(initcmp) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Precompute table of null character hashes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  if( !initflag ) {             // Not initializated yet?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    xsum[0] = (1<<shft[0])+1;   // Initialize
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    for(i=1; i<MAXID; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      xsum[i] = (1<<shft[i])+1+xsum[i-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    initflag = 1;               // Never again
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  _size = 16;                   // Size is a power of 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  _cnt = 0;                     // Dictionary is empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  _bin = (bucket*)_arena->Amalloc_4(sizeof(bucket)*_size);
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 33794
diff changeset
    73
  memset((void*)_bin,0,sizeof(bucket)*_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
Dict::Dict(CmpKey initcmp, Hash inithash, Arena *arena, int size)
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 51050
diff changeset
    77
: _arena(arena), _hash(inithash), _cmp(initcmp) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Precompute table of null character hashes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  if( !initflag ) {             // Not initializated yet?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    xsum[0] = (1<<shft[0])+1;   // Initialize
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    for(i=1; i<MAXID; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
      xsum[i] = (1<<shft[i])+1+xsum[i-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    initflag = 1;               // Never again
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  i=16;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  while( i < size ) i <<= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  _size = i;                    // Size is a power of 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  _cnt = 0;                     // Dictionary is empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  _bin = (bucket*)_arena->Amalloc_4(sizeof(bucket)*_size);
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 33794
diff changeset
    94
  memset((void*)_bin,0,sizeof(bucket)*_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
//------------------------------~Dict------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// Delete an existing dictionary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
Dict::~Dict() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  tty->print("~Dict %d/%d: ",_cnt,_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  for( uint i=0; i < _size; i++) // For complete new table do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    tty->print("%d ",_bin[i]._cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  tty->print("\n");*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  /*for( uint i=0; i<_size; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    FREE_FAST( _bin[i]._keyvals );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    } */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
//------------------------------Clear----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
// Zap to empty; ready for re-use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
void Dict::Clear() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  _cnt = 0;                     // Empty contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  for( uint i=0; i<_size; i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    _bin[i]._cnt = 0;           // Empty buckets, but leave allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Leave _size & _bin alone, under the assumption that dictionary will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // grow to this size again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
//------------------------------doubhash---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
// Double hash table size.  If can't do so, just suffer.  If can, then run
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
// thru old hash table, moving things to new table.  Note that since hash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
// table doubled, exactly 1 new bit is exposed in the mask - so everything
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
// in the old table ends up on 1 of two lists in the new table; a hi and a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
// lo list depending on the value of the bit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
void Dict::doubhash(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  uint oldsize = _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  _size <<= 1;                  // Double in size
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   129
  _bin = (bucket*)_arena->Arealloc(_bin, sizeof(bucket) * oldsize, sizeof(bucket) * _size);
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 33794
diff changeset
   130
  memset((void*)(&_bin[oldsize]), 0, oldsize * sizeof(bucket));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // Rehash things to spread into new table
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   132
  for (uint i = 0; i < oldsize; i++) { // For complete OLD table do
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   133
    bucket *b = &_bin[i];              // Handy shortcut for _bin[i]
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   134
    if (!b->_keyvals) continue;        // Skip empties fast
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   136
    bucket *nb = &_bin[i+oldsize];     // New bucket shortcut
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   137
    uint j = b->_max;                  // Trim new bucket to nearest power of 2
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   138
    while (j > b->_cnt) { j >>= 1; }   // above old bucket _cnt
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   139
    if (!j) { j = 1; }                 // Handle zero-sized buckets
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   140
    nb->_max = j << 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    // Allocate worst case space for key-value pairs
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   142
    nb->_keyvals = (void**)_arena->Amalloc_4(sizeof(void *) * nb->_max * 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    uint nbcnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   145
    for (j = 0; j < b->_cnt; ) {           // Rehash all keys in this bucket
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   146
      void *key = b->_keyvals[j + j];
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   147
      if ((_hash(key) & (_size-1)) != i) { // Moving to hi bucket?
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   148
        nb->_keyvals[nbcnt + nbcnt] = key;
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   149
        nb->_keyvals[nbcnt + nbcnt + 1] = b->_keyvals[j + j + 1];
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   150
        nb->_cnt = nbcnt = nbcnt + 1;
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   151
        b->_cnt--;                         // Remove key/value from lo bucket
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   152
        b->_keyvals[j + j] = b->_keyvals[b->_cnt + b->_cnt];
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   153
        b->_keyvals[j + j + 1] = b->_keyvals[b->_cnt + b->_cnt + 1];
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   154
        // Don't increment j, hash compacted element also.
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   155
      } else {
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33148
diff changeset
   156
        j++; // Iterate.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    } // End of for all key-value pairs in bucket
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  } // End of for all buckets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
//------------------------------Dict-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// Deep copy a dictionary.
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 51050
diff changeset
   164
Dict::Dict( const Dict &d ) : _arena(d._arena), _size(d._size), _cnt(d._cnt), _hash(d._hash), _cmp(d._cmp) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  _bin = (bucket*)_arena->Amalloc_4(sizeof(bucket)*_size);
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 33794
diff changeset
   166
  memcpy( (void*)_bin, (void*)d._bin, sizeof(bucket)*_size );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  for( uint i=0; i<_size; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    if( !_bin[i]._keyvals ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    _bin[i]._keyvals=(void**)_arena->Amalloc_4( sizeof(void *)*_bin[i]._max*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    memcpy( _bin[i]._keyvals, d._bin[i]._keyvals,_bin[i]._cnt*2*sizeof(void*));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
//------------------------------Dict-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// Deep copy a dictionary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
Dict &Dict::operator =( const Dict &d ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  if( _size < d._size ) {       // If must have more buckets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    _arena = d._arena;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    _bin = (bucket*)_arena->Arealloc( _bin, sizeof(bucket)*_size, sizeof(bucket)*d._size );
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 33794
diff changeset
   180
    memset( (void*)(&_bin[_size]), 0, (d._size-_size)*sizeof(bucket) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    _size = d._size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  uint i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  for( i=0; i<_size; i++ ) // All buckets are empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    _bin[i]._cnt = 0;           // But leave bucket allocations alone
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  _cnt = d._cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  *(Hash*)(&_hash) = d._hash;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  *(CmpKey*)(&_cmp) = d._cmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  for( i=0; i<_size; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    bucket *b = &d._bin[i];     // Shortcut to source bucket
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    for( uint j=0; j<b->_cnt; j++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      Insert( b->_keyvals[j+j], b->_keyvals[j+j+1] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  return *this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
//------------------------------Insert----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
// Insert or replace a key/value pair in the given dictionary.  If the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
// dictionary is too full, it's size is doubled.  The prior value being
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
// replaced is returned (NULL if this is a 1st insertion of that key).  If
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
// an old value is found, it's swapped with the prior key-value pair on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
// list.  This moves a commonly searched-for value towards the list head.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
void *Dict::Insert(void *key, void *val, bool replace) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  uint hash = _hash( key );     // Get hash key
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  uint i = hash & (_size-1);    // Get hash key, corrected for size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  bucket *b = &_bin[i];         // Handy shortcut
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  for( uint j=0; j<b->_cnt; j++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    if( !_cmp(key,b->_keyvals[j+j]) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
      if (!replace) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
        return b->_keyvals[j+j+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
        void *prior = b->_keyvals[j+j+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
        b->_keyvals[j+j  ] = key;       // Insert current key-value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
        b->_keyvals[j+j+1] = val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
        return prior;           // Return prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  if( ++_cnt > _size ) {        // Hash table is full
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    doubhash();                 // Grow whole table if too full
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    i = hash & (_size-1);       // Rehash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    b = &_bin[i];               // Handy shortcut
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if( b->_cnt == b->_max ) {    // Must grow bucket?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    if( !b->_keyvals ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      b->_max = 2;              // Initial bucket size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
      b->_keyvals = (void**)_arena->Amalloc_4(sizeof(void*) * b->_max * 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
      b->_keyvals = (void**)_arena->Arealloc(b->_keyvals, sizeof(void*) * b->_max * 2, sizeof(void*) * b->_max * 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
      b->_max <<= 1;            // Double bucket
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  b->_keyvals[b->_cnt+b->_cnt  ] = key;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  b->_keyvals[b->_cnt+b->_cnt+1] = val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  b->_cnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  return NULL;                  // Nothing found prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
//------------------------------Delete---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
// Find & remove a value from dictionary. Return old value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
void *Dict::Delete(void *key) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  uint i = _hash( key ) & (_size-1);    // Get hash key, corrected for size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  bucket *b = &_bin[i];         // Handy shortcut
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  for( uint j=0; j<b->_cnt; j++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    if( !_cmp(key,b->_keyvals[j+j]) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      void *prior = b->_keyvals[j+j+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      b->_cnt--;                // Remove key/value from lo bucket
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      b->_keyvals[j+j  ] = b->_keyvals[b->_cnt+b->_cnt  ];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      b->_keyvals[j+j+1] = b->_keyvals[b->_cnt+b->_cnt+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      _cnt--;                   // One less thing in table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      return prior;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
//------------------------------FindDict-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// Find a key-value pair in the given dictionary.  If not found, return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
// If found, move key-value pair towards head of list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
void *Dict::operator [](const void *key) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  uint i = _hash( key ) & (_size-1);    // Get hash key, corrected for size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  bucket *b = &_bin[i];         // Handy shortcut
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  for( uint j=0; j<b->_cnt; j++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    if( !_cmp(key,b->_keyvals[j+j]) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      return b->_keyvals[j+j+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
//------------------------------CmpDict--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
// CmpDict compares two dictionaries; they must have the same keys (their
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// keys must match using CmpKey) and they must have the same values (pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// comparison).  If so 1 is returned, if not 0 is returned.
24425
53764d2358f9 8041415: remove port.{cpp,hpp} files
zgu
parents: 7397
diff changeset
   272
int32_t Dict::operator ==(const Dict &d2) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  if( _cnt != d2._cnt ) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  if( _hash != d2._hash ) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  if( _cmp != d2._cmp ) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  for( uint i=0; i < _size; i++) {      // For complete hash table do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    bucket *b = &_bin[i];       // Handy shortcut
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    if( b->_cnt != d2._bin[i]._cnt ) return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    if( memcmp(b->_keyvals, d2._bin[i]._keyvals, b->_cnt*2*sizeof(void*) ) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      return 0;                 // Key-value pairs must match
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  return 1;                     // All match, is OK
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
//------------------------------print------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
// Handier print routine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
void Dict::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  DictI i(this); // Moved definition in iterator here because of g++.
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 24429
diff changeset
   289
  tty->print("Dict@" INTPTR_FORMAT "[%d] = {", p2i(this), _cnt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  for( ; i.test(); ++i ) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 24429
diff changeset
   291
    tty->print("(" INTPTR_FORMAT "," INTPTR_FORMAT "),", p2i(i._key), p2i(i._value));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  tty->print_cr("}");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
//------------------------------Hashing Functions----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
// Convert string to hash key.  This algorithm implements a universal hash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
// function with the multipliers frozen (ok, so it's not universal).  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// multipliers (and allowable characters) are all odd, so the resultant sum
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2026
diff changeset
   300
// is odd - guaranteed not divisible by any power of two, so the hash tables
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
// can be any power of two with good results.  Also, I choose multipliers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
// that have only 2 bits set (the low is always set to be odd) so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
// multiplication requires only shifts and adds.  Characters are required to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
// be in the range 0-127 (I double & add 1 to force oddness).  Keys are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// limited to MAXID characters in length.  Experimental evidence on 150K of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// C text shows excellent spreading of values for any size hash table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
int hashstr(const void *t) {
51050
96ea37459ca7 8207011: Remove uses of the register storage class specifier
mikael
parents: 47216
diff changeset
   308
  char c, k = 0;
96ea37459ca7 8207011: Remove uses of the register storage class specifier
mikael
parents: 47216
diff changeset
   309
  int32_t sum = 0;
96ea37459ca7 8207011: Remove uses of the register storage class specifier
mikael
parents: 47216
diff changeset
   310
  const char *s = (const char *)t;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  while( ((c = *s++) != '\0') && (k < MAXID-1) ) { // Get characters till null or MAXID-1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    c = (c<<1)+1;               // Characters are always odd!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    sum += c + (c<<shft[k++]);  // Universal hash function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  return (int)((sum+xsum[k]) >> 1); // Hash key, un-modulo'd table size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
//------------------------------hashptr--------------------------------------
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2026
diff changeset
   320
// Slimey cheap hash function; no guaranteed performance.  Better than the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
// default for pointers, especially on MS-DOS machines.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
int hashptr(const void *key) {
24425
53764d2358f9 8041415: remove port.{cpp,hpp} files
zgu
parents: 7397
diff changeset
   323
  return ((intptr_t)key >> 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2026
diff changeset
   326
// Slimey cheap hash function; no guaranteed performance.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
int hashkey(const void *key) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  return (intptr_t)key;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
//------------------------------Key Comparator Functions---------------------
24425
53764d2358f9 8041415: remove port.{cpp,hpp} files
zgu
parents: 7397
diff changeset
   332
int32_t cmpstr(const void *k1, const void *k2) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  return strcmp((const char *)k1,(const char *)k2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
2026
d15da7324f58 6798785: Crash in OopFlow::build_oop_map: incorrect comparison of 64bit pointers
never
parents: 1
diff changeset
   336
// Cheap key comparator.
24425
53764d2358f9 8041415: remove port.{cpp,hpp} files
zgu
parents: 7397
diff changeset
   337
int32_t cmpkey(const void *key1, const void *key2) {
2026
d15da7324f58 6798785: Crash in OopFlow::build_oop_map: incorrect comparison of 64bit pointers
never
parents: 1
diff changeset
   338
  if (key1 == key2) return 0;
d15da7324f58 6798785: Crash in OopFlow::build_oop_map: incorrect comparison of 64bit pointers
never
parents: 1
diff changeset
   339
  intptr_t delta = (intptr_t)key1 - (intptr_t)key2;
d15da7324f58 6798785: Crash in OopFlow::build_oop_map: incorrect comparison of 64bit pointers
never
parents: 1
diff changeset
   340
  if (delta > 0) return 1;
d15da7324f58 6798785: Crash in OopFlow::build_oop_map: incorrect comparison of 64bit pointers
never
parents: 1
diff changeset
   341
  return -1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
//------------------------------reset------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
// Create an iterator and initialize the first variables.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
void DictI::reset( const Dict *dict ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  _d = dict;                    // The dictionary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  _i = (uint)-1;                // Before the first bin
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  _j = 0;                       // Nothing left in the current bin
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  ++(*this);                    // Step to first real value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
//------------------------------next-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
// Find the next key-value pair in the dictionary, or return a NULL key and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
// value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
void DictI::operator ++(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  if( _j-- ) {                  // Still working in current bin?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    _key   = _d->_bin[_i]._keyvals[_j+_j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    _value = _d->_bin[_i]._keyvals[_j+_j+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  while( ++_i < _d->_size ) {   // Else scan for non-zero bucket
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    _j = _d->_bin[_i]._cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    if( !_j ) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    _j--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    _key   = _d->_bin[_i]._keyvals[_j+_j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
    _value = _d->_bin[_i]._keyvals[_j+_j+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  _key = _value = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
}