author | twisti |
Thu, 08 Sep 2011 05:11:31 -0700 | |
changeset 10540 | 92d59dba2407 |
parent 8921 | 14bfe81f2a9d |
child 13195 | be27e1b6a4b9 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
8921
14bfe81f2a9d
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents:
8076
diff
changeset
|
2 |
* Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_CLASSFILE_RESOLUTIONERRORS_HPP |
26 |
#define SHARE_VM_CLASSFILE_RESOLUTIONERRORS_HPP |
|
27 |
||
28 |
#include "oops/constantPoolOop.hpp" |
|
29 |
#include "utilities/hashtable.hpp" |
|
30 |
||
1 | 31 |
class ResolutionErrorEntry; |
32 |
||
33 |
// ResolutionError objects are used to record errors encountered during |
|
34 |
// constant pool resolution (JVMS 5.4.3). |
|
35 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
36 |
class ResolutionErrorTable : public Hashtable<constantPoolOop> { |
1 | 37 |
|
38 |
public: |
|
39 |
ResolutionErrorTable(int table_size); |
|
40 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
41 |
ResolutionErrorEntry* new_entry(int hash, constantPoolOop pool, int cp_index, Symbol* error); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
42 |
void free_entry(ResolutionErrorEntry *entry); |
1 | 43 |
|
44 |
ResolutionErrorEntry* bucket(int i) { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
45 |
return (ResolutionErrorEntry*)Hashtable<constantPoolOop>::bucket(i); |
1 | 46 |
} |
47 |
||
48 |
ResolutionErrorEntry** bucket_addr(int i) { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
49 |
return (ResolutionErrorEntry**)Hashtable<constantPoolOop>::bucket_addr(i); |
1 | 50 |
} |
51 |
||
52 |
void add_entry(int index, ResolutionErrorEntry* new_entry) { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
53 |
Hashtable<constantPoolOop>::add_entry(index, (HashtableEntry<constantPoolOop>*)new_entry); |
1 | 54 |
} |
55 |
||
56 |
void add_entry(int index, unsigned int hash, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
57 |
constantPoolHandle pool, int which, Symbol* error); |
1 | 58 |
|
59 |
||
60 |
// find error given the constant pool and constant pool index |
|
61 |
ResolutionErrorEntry* find_entry(int index, unsigned int hash, |
|
62 |
constantPoolHandle pool, int cp_index); |
|
63 |
||
64 |
||
65 |
unsigned int compute_hash(constantPoolHandle pool, int cp_index) { |
|
66 |
return (unsigned int) pool->identity_hash() + cp_index; |
|
67 |
} |
|
68 |
||
69 |
// purges unloaded entries from the table |
|
70 |
void purge_resolution_errors(BoolObjectClosure* is_alive); |
|
71 |
||
72 |
// GC support. |
|
73 |
void oops_do(OopClosure* f); |
|
74 |
}; |
|
75 |
||
76 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
77 |
class ResolutionErrorEntry : public HashtableEntry<constantPoolOop> { |
1 | 78 |
private: |
79 |
int _cp_index; |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
80 |
Symbol* _error; |
1 | 81 |
|
82 |
public: |
|
83 |
constantPoolOop pool() const { return (constantPoolOop)literal(); } |
|
84 |
constantPoolOop* pool_addr() { return (constantPoolOop*)literal_addr(); } |
|
85 |
||
86 |
int cp_index() const { return _cp_index; } |
|
87 |
void set_cp_index(int cp_index) { _cp_index = cp_index; } |
|
88 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
89 |
Symbol* error() const { return _error; } |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
90 |
void set_error(Symbol* e); |
1 | 91 |
|
92 |
ResolutionErrorEntry* next() const { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
93 |
return (ResolutionErrorEntry*)HashtableEntry<constantPoolOop>::next(); |
1 | 94 |
} |
95 |
||
96 |
ResolutionErrorEntry** next_addr() { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
97 |
return (ResolutionErrorEntry**)HashtableEntry<constantPoolOop>::next_addr(); |
1 | 98 |
} |
99 |
||
100 |
// GC support |
|
101 |
void oops_do(OopClosure* blk); |
|
102 |
}; |
|
7397 | 103 |
|
104 |
#endif // SHARE_VM_CLASSFILE_RESOLUTIONERRORS_HPP |