hotspot/src/share/vm/adlc/dict2.hpp
author twisti
Fri, 27 Feb 2009 13:27:09 -0800
changeset 2131 98f9cef66a34
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6810672: Comment typos Summary: I have collected some typos I have found while looking at the code. Reviewed-by: kvn, never
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-2000 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
#ifndef _DICT_
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#define _DICT_
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// Dictionaries - An Abstract Data Type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class Dict;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// These dictionaries define a key-value mapping.  They can be inserted to,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// searched or deleted from.  They grow and shrink as needed.  The key is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// pointer to something (or anything which can be stored in a pointer).  A
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// key comparison routine determines if two keys are equal or not.  A hash
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// function can be provided; if it's not provided the key itself is used
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// instead.  A nice string hash function is included.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
typedef int  (*CmpKey)(const void *key1, const void *key2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
typedef int  (*Hash)(const void *key);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
typedef void (*PrintKeyOrValue)(const void *key_or_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
typedef void (*FuncDict)(const void *key, const void *val, Dict *d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class Dict { // Dictionary structure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  class Arena *_arena;          // Where to draw storage from
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  class bucket *_bin;           // Hash table is array of buckets
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  int _size;                    // Size (# of slots) in hash table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  int _cnt;                     // Number of key-value pairs in hash table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  const Hash _hash;             // Hashing function
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  const CmpKey _cmp;            // Key comparison function
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  void doubhash( void );        // Double hash table size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  friend class DictI;            // Friendly iterator function
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // cmp is a key comparision routine.  hash is a routine to hash a key.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  Dict( CmpKey cmp, Hash hash );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  Dict( CmpKey cmp, Hash hash, Arena *arena );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  ~Dict();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  Dict( const Dict & );         // Deep-copy guts
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  Dict &operator =( const Dict & );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // Zap to empty; ready for re-use
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  void Clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // Return # of key-value pairs in dict
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  int Size(void) const { return _cnt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // Insert inserts the given key-value pair into the dictionary.  The prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // value of the key is returned; NULL if the key was not previously defined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  const void *Insert(const void *key, const void *val); // A new key-value
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  const void *Delete(void *key);                        // Delete & return old
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Find finds the value of a given key; or NULL if not found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // The dictionary is NOT changed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  const void *operator [](const void *key) const;  // Do a lookup
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // == compares two dictionaries; they must have the same keys (their keys
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // must match using CmpKey) and they must have the same values (pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // comparison).  If so 1 is returned, if not 0 is returned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  int operator ==(const Dict &d) const;   // Compare dictionaries for equal
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Print out the dictionary contents as key-value pairs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  void print(PrintKeyOrValue print_key, PrintKeyOrValue print_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// Hashing functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
int hashstr(const void *s);        // Nice string hash
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1
diff changeset
    92
// Slimey cheap hash function; no guaranteed performance.  Better than the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// default for pointers, especially on MS-DOS machines.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
int hashptr(const void *key);
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1
diff changeset
    95
// Slimey cheap hash function; no guaranteed performance.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
int hashkey(const void *key);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// Key comparators
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
int cmpstr(const void *k1, const void *k2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
// Slimey cheap key comparator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
int cmpkey(const void *key1, const void *key2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
//------------------------------Iteration--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// The class of dictionary iterators.  Fails in the presences of modifications
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
// to the dictionary during iteration (including searches).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// Usage:  for( DictI i(dict); i.test(); ++i ) { body = i.key; body = i.value;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
class DictI {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  const Dict *_d;               // Dictionary being iterated over
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  int _i;                      // Counter over the bins
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  int _j;                      // Counter inside each bin
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  const void *_key, *_value;          // Easy access to the key-value pair
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  DictI( const Dict *d ) {reset(d);}; // Create a new iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  void reset( const Dict *dict );     // Reset existing iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  void operator ++(void);             // Increment iterator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  int test(void) { return _i<_d->_size;} // Test for end of iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
#endif // _DICT_