annotate src/share/vm/classfile/loaderConstraints.hpp @ 1091:6aa7255741f3

6906727: UseCompressedOops: some card-marking fixes related to object arrays Summary: Introduced a new write_ref_array(HeapWords* start, size_t count) method that does the requisite MemRegion range calculation so (some of the) clients of the erstwhile write_ref_array(MemRegion mr) do not need to worry. This removed all external uses of array_size(), which was also simplified and made private. Asserts were added to catch other possible issues. Further, less essential, fixes stemming from this investigation are deferred to CR 6904516 (to follow shortly in hs17). Reviewed-by: kvn, coleenp, jmasa
author ysr
date Thu, 03 Dec 2009 15:01:57 -0800
parents c89f86385056
children 38836cf1d8d2 0c3f888b7636
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
2 * Copyright 2003-2009 Sun Microsystems, Inc. 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 *
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 LoaderConstraintEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class LoaderConstraintTable : public Hashtable {
a61af66fc99e Initial load
duke
parents:
diff changeset
28 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 enum Constants {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 _loader_constraint_size = 107, // number of entries in constraint table
a61af66fc99e Initial load
duke
parents:
diff changeset
33 _nof_buckets = 1009 // number of buckets in hash table
a61af66fc99e Initial load
duke
parents:
diff changeset
34 };
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 LoaderConstraintEntry** find_loader_constraint(symbolHandle name,
a61af66fc99e Initial load
duke
parents:
diff changeset
37 Handle loader);
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 LoaderConstraintTable(int nof_buckets);
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 LoaderConstraintEntry* new_entry(unsigned int hash, symbolOop name,
a61af66fc99e Initial load
duke
parents:
diff changeset
44 klassOop klass, int num_loaders,
a61af66fc99e Initial load
duke
parents:
diff changeset
45 int max_loaders);
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 LoaderConstraintEntry* bucket(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 return (LoaderConstraintEntry*)Hashtable::bucket(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 LoaderConstraintEntry** bucket_addr(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 return (LoaderConstraintEntry**)Hashtable::bucket_addr(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
56 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void always_strong_classes_do(OopClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // Check class loader constraints
a61af66fc99e Initial load
duke
parents:
diff changeset
60 bool add_entry(symbolHandle name, klassOop klass1, Handle loader1,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 klassOop klass2, Handle loader2);
a61af66fc99e Initial load
duke
parents:
diff changeset
62
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
63 // Note: The main entry point for this module is via SystemDictionary.
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
64 // SystemDictionary::check_signature_loaders(symbolHandle signature,
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
65 // Handle loader1, Handle loader2,
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 0
diff changeset
66 // bool is_method, TRAPS)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 klassOop find_constrained_klass(symbolHandle name, Handle loader);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 klassOop find_constrained_elem_klass(symbolHandle name, symbolHandle elem_name,
a61af66fc99e Initial load
duke
parents:
diff changeset
70 Handle loader, TRAPS);
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 loader constraints
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 void ensure_loader_constraint_capacity(LoaderConstraintEntry *p, int nfree);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 void extend_loader_constraint(LoaderConstraintEntry* p, Handle loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
77 klassOop klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void merge_loader_constraints(LoaderConstraintEntry** pp1,
a61af66fc99e Initial load
duke
parents:
diff changeset
79 LoaderConstraintEntry** pp2, klassOop klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 bool check_or_update(instanceKlassHandle k, Handle loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
82 symbolHandle name);
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 void purge_loader_constraints(BoolObjectClosure* is_alive);
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 void verify(Dictionary* dictionary);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
89 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
91 };
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 class LoaderConstraintEntry : public HashtableEntry {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
96 symbolOop _name; // class name
a61af66fc99e Initial load
duke
parents:
diff changeset
97 int _num_loaders;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 int _max_loaders;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 oop* _loaders; // initiating loaders
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 klassOop klass() { return (klassOop)literal(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 klassOop* klass_addr() { return (klassOop*)literal_addr(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void set_klass(klassOop k) { set_literal(k); }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 LoaderConstraintEntry* next() {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 return (LoaderConstraintEntry*)HashtableEntry::next();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 LoaderConstraintEntry** next_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 return (LoaderConstraintEntry**)HashtableEntry::next_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 void set_next(LoaderConstraintEntry* next) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 HashtableEntry::set_next(next);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 symbolOop name() { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 symbolOop* name_addr() { return &_name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 void set_name(symbolOop name) { _name = name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 int num_loaders() { return _num_loaders; }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 void set_num_loaders(int i) { _num_loaders = i; }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 int max_loaders() { return _max_loaders; }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 void set_max_loaders(int i) { _max_loaders = i; }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 oop* loaders() { return _loaders; }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 void set_loaders(oop* loaders) { _loaders = loaders; }
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 oop loader(int i) { return _loaders[i]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 oop* loader_addr(int i) { return &_loaders[i]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 void set_loader(int i, oop p) { _loaders[i] = p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 };