annotate src/share/vm/adlc/dict2.hpp @ 8804:91bf0bdae37b

8008217: CDS: Class data sharing limits the malloc heap on Solaris Summary: In 64bit VM move CDS archive address to 32G on all platforms using new flag SharedBaseAddress. In 32bit VM set CDS archive address to 3Gb on Linux and let other OSs pick the address. Reviewed-by: kvn, dcubed, zgu, hseigel
author coleenp
date Wed, 20 Mar 2013 08:04:54 -0400
parents f95d63e2154a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 605
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 605
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 605
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_ADLC_DICT2_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_ADLC_DICT2_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Dictionaries - An Abstract Data Type
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class Dict;
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // These dictionaries define a key-value mapping. They can be inserted to,
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // searched or deleted from. They grow and shrink as needed. The key is a
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // pointer to something (or anything which can be stored in a pointer). A
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // key comparison routine determines if two keys are equal or not. A hash
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // function can be provided; if it's not provided the key itself is used
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // instead. A nice string hash function is included.
a61af66fc99e Initial load
duke
parents:
diff changeset
39 typedef int (*CmpKey)(const void *key1, const void *key2);
a61af66fc99e Initial load
duke
parents:
diff changeset
40 typedef int (*Hash)(const void *key);
a61af66fc99e Initial load
duke
parents:
diff changeset
41 typedef void (*PrintKeyOrValue)(const void *key_or_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
42 typedef void (*FuncDict)(const void *key, const void *val, Dict *d);
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 class Dict { // Dictionary structure
a61af66fc99e Initial load
duke
parents:
diff changeset
45 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 class Arena *_arena; // Where to draw storage from
a61af66fc99e Initial load
duke
parents:
diff changeset
47 class bucket *_bin; // Hash table is array of buckets
a61af66fc99e Initial load
duke
parents:
diff changeset
48 int _size; // Size (# of slots) in hash table
a61af66fc99e Initial load
duke
parents:
diff changeset
49 int _cnt; // Number of key-value pairs in hash table
a61af66fc99e Initial load
duke
parents:
diff changeset
50 const Hash _hash; // Hashing function
a61af66fc99e Initial load
duke
parents:
diff changeset
51 const CmpKey _cmp; // Key comparison function
a61af66fc99e Initial load
duke
parents:
diff changeset
52 void doubhash( void ); // Double hash table size
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 friend class DictI; // Friendly iterator function
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // cmp is a key comparision routine. hash is a routine to hash a key.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 Dict( CmpKey cmp, Hash hash );
a61af66fc99e Initial load
duke
parents:
diff changeset
59 Dict( CmpKey cmp, Hash hash, Arena *arena );
a61af66fc99e Initial load
duke
parents:
diff changeset
60 void init();
a61af66fc99e Initial load
duke
parents:
diff changeset
61 ~Dict();
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 Dict( const Dict & ); // Deep-copy guts
a61af66fc99e Initial load
duke
parents:
diff changeset
64 Dict &operator =( const Dict & );
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // Zap to empty; ready for re-use
a61af66fc99e Initial load
duke
parents:
diff changeset
67 void Clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Return # of key-value pairs in dict
a61af66fc99e Initial load
duke
parents:
diff changeset
70 int Size(void) const { return _cnt; }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Insert inserts the given key-value pair into the dictionary. The prior
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // value of the key is returned; NULL if the key was not previously defined.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 const void *Insert(const void *key, const void *val); // A new key-value
a61af66fc99e Initial load
duke
parents:
diff changeset
75 const void *Delete(void *key); // Delete & return old
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // Find finds the value of a given key; or NULL if not found.
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // The dictionary is NOT changed.
a61af66fc99e Initial load
duke
parents:
diff changeset
79 const void *operator [](const void *key) const; // Do a lookup
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // == compares two dictionaries; they must have the same keys (their keys
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // must match using CmpKey) and they must have the same values (pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // comparison). If so 1 is returned, if not 0 is returned.
a61af66fc99e Initial load
duke
parents:
diff changeset
84 int operator ==(const Dict &d) const; // Compare dictionaries for equal
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Print out the dictionary contents as key-value pairs
a61af66fc99e Initial load
duke
parents:
diff changeset
87 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 void print(PrintKeyOrValue print_key, PrintKeyOrValue print_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 };
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Hashing functions
a61af66fc99e Initial load
duke
parents:
diff changeset
92 int hashstr(const void *s); // Nice string hash
605
98cb887364d3 6810672: Comment typos
twisti
parents: 0
diff changeset
93 // Slimey cheap hash function; no guaranteed performance. Better than the
0
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // default for pointers, especially on MS-DOS machines.
a61af66fc99e Initial load
duke
parents:
diff changeset
95 int hashptr(const void *key);
605
98cb887364d3 6810672: Comment typos
twisti
parents: 0
diff changeset
96 // Slimey cheap hash function; no guaranteed performance.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
97 int hashkey(const void *key);
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Key comparators
a61af66fc99e Initial load
duke
parents:
diff changeset
100 int cmpstr(const void *k1, const void *k2);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Slimey cheap key comparator.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 int cmpkey(const void *key1, const void *key2);
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 //------------------------------Iteration--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // The class of dictionary iterators. Fails in the presences of modifications
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // to the dictionary during iteration (including searches).
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Usage: for( DictI i(dict); i.test(); ++i ) { body = i.key; body = i.value;}
a61af66fc99e Initial load
duke
parents:
diff changeset
108 class DictI {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
110 const Dict *_d; // Dictionary being iterated over
a61af66fc99e Initial load
duke
parents:
diff changeset
111 int _i; // Counter over the bins
a61af66fc99e Initial load
duke
parents:
diff changeset
112 int _j; // Counter inside each bin
a61af66fc99e Initial load
duke
parents:
diff changeset
113 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
114 const void *_key, *_value; // Easy access to the key-value pair
a61af66fc99e Initial load
duke
parents:
diff changeset
115 DictI( const Dict *d ) {reset(d);}; // Create a new iterator
a61af66fc99e Initial load
duke
parents:
diff changeset
116 void reset( const Dict *dict ); // Reset existing iterator
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void operator ++(void); // Increment iterator
a61af66fc99e Initial load
duke
parents:
diff changeset
118 int test(void) { return _i<_d->_size;} // Test for end of iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
119 };
a61af66fc99e Initial load
duke
parents:
diff changeset
120
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
121 #endif // SHARE_VM_ADLC_DICT2_HPP