annotate src/share/vm/classfile/resolutionErrors.hpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class ResolutionErrorEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // ResolutionError objects are used to record errors encountered during
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // constant pool resolution (JVMS 5.4.3).
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class ResolutionErrorTable : public Hashtable {
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
33 ResolutionErrorTable(int table_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 ResolutionErrorEntry* new_entry(int hash, constantPoolOop pool, int cp_index, symbolOop error);
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 ResolutionErrorEntry* bucket(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 return (ResolutionErrorEntry*)Hashtable::bucket(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
39 }
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 ResolutionErrorEntry** bucket_addr(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 return (ResolutionErrorEntry**)Hashtable::bucket_addr(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 void add_entry(int index, ResolutionErrorEntry* new_entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 Hashtable::add_entry(index, (HashtableEntry*)new_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
47 }
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 void add_entry(int index, unsigned int hash,
a61af66fc99e Initial load
duke
parents:
diff changeset
50 constantPoolHandle pool, int which, symbolHandle error);
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // find error given the constant pool and constant pool index
a61af66fc99e Initial load
duke
parents:
diff changeset
54 ResolutionErrorEntry* find_entry(int index, unsigned int hash,
a61af66fc99e Initial load
duke
parents:
diff changeset
55 constantPoolHandle pool, int cp_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 unsigned int compute_hash(constantPoolHandle pool, int cp_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 return (unsigned int) pool->identity_hash() + cp_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // purges unloaded entries from the table
a61af66fc99e Initial load
duke
parents:
diff changeset
63 void purge_resolution_errors(BoolObjectClosure* is_alive);
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // this table keeps symbolOops alive
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void always_strong_classes_do(OopClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // GC support.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 };
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 class ResolutionErrorEntry : public HashtableEntry {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
75 int _cp_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 symbolOop _error;
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
79 constantPoolOop pool() const { return (constantPoolOop)literal(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 constantPoolOop* pool_addr() { return (constantPoolOop*)literal_addr(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 int cp_index() const { return _cp_index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 void set_cp_index(int cp_index) { _cp_index = cp_index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 symbolOop error() const { return _error; }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 void set_error(symbolOop e) { _error = e; }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 symbolOop* error_addr() { return &_error; }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 ResolutionErrorEntry* next() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 return (ResolutionErrorEntry*)HashtableEntry::next();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 ResolutionErrorEntry** next_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 return (ResolutionErrorEntry**)HashtableEntry::next_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
98 void oops_do(OopClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 };