annotate src/share/vm/code/dependencies.cpp @ 7101:0778b04fc682

better encoding of dependencies during dependency recording by Graal
author Doug Simon <doug.simon@oracle.com>
date Thu, 29 Nov 2012 22:53:03 +0100
parents eec7173947a1
children a7a93887b4c4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
5998
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
2 * Copyright (c) 2005, 2012, 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: 1206
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1206
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: 1206
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 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "ci/ciArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "ci/ciEnv.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "ci/ciKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "ci/ciMethod.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "code/dependencies.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "compiler/compileLog.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "oops/oop.inline.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
33 #include "runtime/handles.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "utilities/copy.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
39 static bool must_be_in_vm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 Thread* thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
41 if (thread->is_Java_thread())
a61af66fc99e Initial load
duke
parents:
diff changeset
42 return ((JavaThread*)thread)->thread_state() == _thread_in_vm;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 else
a61af66fc99e Initial load
duke
parents:
diff changeset
44 return true; //something like this: thread->is_VM_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #endif //ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 void Dependencies::initialize(ciEnv* env) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 Arena* arena = env->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _oop_recorder = env->oop_recorder();
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _log = env->log();
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _dep_seen = new(arena) GrowableArray<int>(arena, 500, 0, 0);
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
53 #ifdef GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
54 _using_dep_values = false;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
55 #endif // GRAAL
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56 DEBUG_ONLY(_deps[end_marker] = NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 for (int i = (int)FIRST_TYPE; i < (int)TYPE_LIMIT; i++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
58 _deps[i] = new(arena) GrowableArray<ciBaseObject*>(arena, 10, 0, 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _content_bytes = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _size_in_bytes = (size_t)-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 assert(TYPE_LIMIT <= (1<<LG2_TYPE_LIMIT), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void Dependencies::assert_evol_method(ciMethod* m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 assert_common_1(evol_method, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void Dependencies::assert_leaf_type(ciKlass* ctxk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 if (ctxk->is_array_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // As a special case, support this assertion on an array type,
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // which reduces to an assertion on its element type.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Note that this cannot be done with assertions that
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // relate to concreteness or abstractness.
a61af66fc99e Initial load
duke
parents:
diff changeset
76 ciType* elemt = ctxk->as_array_klass()->base_element_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
77 if (!elemt->is_instance_klass()) return; // Ex: int[][]
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ctxk = elemt->as_instance_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
79 //if (ctxk->is_final()) return; // Ex: String[][]
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 check_ctxk(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 assert_common_1(leaf_type, ctxk);
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 Dependencies::assert_abstract_with_unique_concrete_subtype(ciKlass* ctxk, ciKlass* conck) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 check_ctxk_abstract(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 assert_common_2(abstract_with_unique_concrete_subtype, ctxk, conck);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 void Dependencies::assert_abstract_with_no_concrete_subtype(ciKlass* ctxk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 check_ctxk_abstract(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 assert_common_1(abstract_with_no_concrete_subtype, ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 void Dependencies::assert_concrete_with_no_concrete_subtype(ciKlass* ctxk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 check_ctxk_concrete(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 assert_common_1(concrete_with_no_concrete_subtype, ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 void Dependencies::assert_unique_concrete_method(ciKlass* ctxk, ciMethod* uniqm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 check_ctxk(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 assert_common_2(unique_concrete_method, ctxk, uniqm);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void Dependencies::assert_abstract_with_exclusive_concrete_subtypes(ciKlass* ctxk, ciKlass* k1, ciKlass* k2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 check_ctxk(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 assert_common_3(abstract_with_exclusive_concrete_subtypes_2, ctxk, k1, k2);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 void Dependencies::assert_exclusive_concrete_methods(ciKlass* ctxk, ciMethod* m1, ciMethod* m2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 check_ctxk(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 assert_common_3(exclusive_concrete_methods_2, ctxk, m1, m2);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void Dependencies::assert_has_no_finalizable_subclasses(ciKlass* ctxk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 check_ctxk(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 assert_common_1(no_finalizable_subclasses, ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
120 void Dependencies::assert_call_site_target_value(ciCallSite* call_site, ciMethodHandle* method_handle) {
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
121 check_ctxk(call_site->klass());
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
122 assert_common_2(call_site_target_value, call_site, method_handle);
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
123 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
124
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
125 #ifdef GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
126
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
127 Dependencies::Dependencies(Arena* arena, OopRecorder* oop_recorder) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
128 _oop_recorder = oop_recorder;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
129 _log = NULL;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
130 _dep_seen = new(arena) GrowableArray<int>(arena, 500, 0, 0);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
131 _using_dep_values = true;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
132 DEBUG_ONLY(_dep_values[end_marker] = NULL);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
133 for (int i = (int)FIRST_TYPE; i < (int)TYPE_LIMIT; i++) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
134 _dep_values[i] = new(arena) GrowableArray<DepValue>(arena, 10, 0, DepValue());
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
135 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
136 _content_bytes = NULL;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
137 _size_in_bytes = (size_t)-1;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
138
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
139 assert(TYPE_LIMIT <= (1<<LG2_TYPE_LIMIT), "sanity");
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
140 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
141
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
142 void Dependencies::assert_evol_method(Method* m) {
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
143 assert_common_1(evol_method, DepValue(_oop_recorder, m));
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
144 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
145
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
146 void Dependencies::assert_leaf_type(Klass* ctxk) {
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
147 if (ctxk->oop_is_array()) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
148 // As a special case, support this assertion on an array type,
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
149 // which reduces to an assertion on its element type.
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
150 // Note that this cannot be done with assertions that
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
151 // relate to concreteness or abstractness.
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
152 BasicType elemt = ArrayKlass::cast(ctxk)->element_type();
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
153 if (is_java_primitive(elemt)) return; // Ex: int[][]
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
154 ctxk = ObjArrayKlass::cast(ctxk)->bottom_klass();
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
155 //if (ctxk->is_final()) return; // Ex: String[][]
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
156 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
157 check_ctxk(ctxk);
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
158 assert_common_1(leaf_type, DepValue(_oop_recorder, ctxk));
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
159 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
160
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
161 void Dependencies::assert_abstract_with_unique_concrete_subtype(Klass* ctxk, Klass* conck) {
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
162 check_ctxk_abstract(ctxk);
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
163 DepValue ctxk_dv(_oop_recorder, ctxk);
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
164 DepValue conck_dv(_oop_recorder, conck, &ctxk_dv);
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
165 assert_common_2(abstract_with_unique_concrete_subtype, ctxk_dv, conck_dv);
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
166 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
167
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
168 void Dependencies::assert_unique_concrete_method(Klass* ctxk, Method* uniqm) {
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
169 check_ctxk(ctxk);
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
170 assert_common_2(unique_concrete_method, DepValue(_oop_recorder, ctxk), DepValue(_oop_recorder, uniqm));
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
171 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
172 #endif // GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
173
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
174
0
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // Helper function. If we are adding a new dep. under ctxk2,
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // try to find an old dep. under a broader* ctxk1. If there is
a61af66fc99e Initial load
duke
parents:
diff changeset
177 //
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
178 bool Dependencies::maybe_merge_ctxk(GrowableArray<ciBaseObject*>* deps,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
179 int ctxk_i, ciKlass* ctxk2) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
180 ciKlass* ctxk1 = deps->at(ctxk_i)->as_metadata()->as_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
181 if (ctxk2->is_subtype_of(ctxk1)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 return true; // success, and no need to change
a61af66fc99e Initial load
duke
parents:
diff changeset
183 } else if (ctxk1->is_subtype_of(ctxk2)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // new context class fully subsumes previous one
a61af66fc99e Initial load
duke
parents:
diff changeset
185 deps->at_put(ctxk_i, ctxk2);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
192 void Dependencies::assert_common_1(DepType dept, ciBaseObject* x) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
193 assert(dep_args(dept) == 1, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
194 log_dependency(dept, x);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
195 GrowableArray<ciBaseObject*>* deps = _deps[dept];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // see if the same (or a similar) dep is already recorded
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (note_dep_seen(dept, x)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 assert(deps->find(x) >= 0, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
200 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 deps->append(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
205 void Dependencies::assert_common_2(DepType dept,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
206 ciBaseObject* x0, ciBaseObject* x1) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
207 assert(dep_args(dept) == 2, "sanity");
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
208 log_dependency(dept, x0, x1);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
209 GrowableArray<ciBaseObject*>* deps = _deps[dept];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // see if the same (or a similar) dep is already recorded
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
212 bool has_ctxk = has_explicit_context_arg(dept);
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
213 if (has_ctxk) {
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
214 assert(dep_context_arg(dept) == 0, "sanity");
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
215 if (note_dep_seen(dept, x1)) {
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
216 // look in this bucket for redundant assertions
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
217 const int stride = 2;
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
218 for (int i = deps->length(); (i -= stride) >= 0; ) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
219 ciBaseObject* y1 = deps->at(i+1);
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
220 if (x1 == y1) { // same subject; check the context
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
221 if (maybe_merge_ctxk(deps, i+0, x0->as_metadata()->as_klass())) {
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
222 return;
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
223 }
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
224 }
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
225 }
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
226 }
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
227 } else {
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
228 assert(dep_implicit_context_arg(dept) == 0, "sanity");
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
229 if (note_dep_seen(dept, x0) && note_dep_seen(dept, x1)) {
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
230 // look in this bucket for redundant assertions
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
231 const int stride = 2;
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
232 for (int i = deps->length(); (i -= stride) >= 0; ) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
233 ciBaseObject* y0 = deps->at(i+0);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
234 ciBaseObject* y1 = deps->at(i+1);
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
235 if (x0 == y0 && x1 == y1) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // append the assertion in the correct bucket:
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
243 deps->append(x0);
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
244 deps->append(x1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
246
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
247 void Dependencies::assert_common_3(DepType dept,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
248 ciKlass* ctxk, ciBaseObject* x, ciBaseObject* x2) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
249 assert(dep_context_arg(dept) == 0, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
250 assert(dep_args(dept) == 3, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
251 log_dependency(dept, ctxk, x, x2);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
252 GrowableArray<ciBaseObject*>* deps = _deps[dept];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // try to normalize an unordered pair:
a61af66fc99e Initial load
duke
parents:
diff changeset
255 bool swap = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 switch (dept) {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 case abstract_with_exclusive_concrete_subtypes_2:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
258 swap = (x->ident() > x2->ident() && x->as_metadata()->as_klass() != ctxk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
259 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
260 case exclusive_concrete_methods_2:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
261 swap = (x->ident() > x2->ident() && x->as_metadata()->as_method()->holder() != ctxk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
262 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
264 if (swap) { ciBaseObject* t = x; x = x2; x2 = t; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // see if the same (or a similar) dep is already recorded
a61af66fc99e Initial load
duke
parents:
diff changeset
267 if (note_dep_seen(dept, x) && note_dep_seen(dept, x2)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // look in this bucket for redundant assertions
a61af66fc99e Initial load
duke
parents:
diff changeset
269 const int stride = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 for (int i = deps->length(); (i -= stride) >= 0; ) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
271 ciBaseObject* y = deps->at(i+1);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
272 ciBaseObject* y2 = deps->at(i+2);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
273 if (x == y && x2 == y2) { // same subjects; check the context
a61af66fc99e Initial load
duke
parents:
diff changeset
274 if (maybe_merge_ctxk(deps, i+0, ctxk)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // append the assertion in the correct bucket:
a61af66fc99e Initial load
duke
parents:
diff changeset
281 deps->append(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
282 deps->append(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
283 deps->append(x2);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
286 #ifdef GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
287 bool Dependencies::maybe_merge_ctxk(GrowableArray<DepValue>* deps,
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
288 int ctxk_i, DepValue ctxk2_dv) {
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
289 Klass* ctxk1 = deps->at(ctxk_i).as_klass(_oop_recorder);
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
290 Klass* ctxk2 = ctxk2_dv.as_klass(_oop_recorder);
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
291 if (ctxk2->is_subtype_of(ctxk1)) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
292 return true; // success, and no need to change
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
293 } else if (ctxk1->is_subtype_of(ctxk2)) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
294 // new context class fully subsumes previous one
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
295 deps->at_put(ctxk_i, ctxk2_dv);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
296 return true;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
297 } else {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
298 return false;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
299 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
300 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
301
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
302 void Dependencies::assert_common_1(DepType dept, DepValue x) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
303 assert(dep_args(dept) == 1, "sanity");
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
304 //log_dependency(dept, x);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
305 GrowableArray<DepValue>* deps = _dep_values[dept];
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
306
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
307 // see if the same (or a similar) dep is already recorded
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
308 if (note_dep_seen(dept, x)) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
309 assert(deps->find(x) >= 0, "sanity");
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
310 } else {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
311 deps->append(x);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
312 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
313 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
314
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
315 void Dependencies::assert_common_2(DepType dept,
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
316 DepValue x0, DepValue x1) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
317 assert(dep_args(dept) == 2, "sanity");
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
318 //log_dependency(dept, x0, x1);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
319 GrowableArray<DepValue>* deps = _dep_values[dept];
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
320
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
321 // see if the same (or a similar) dep is already recorded
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
322 bool has_ctxk = has_explicit_context_arg(dept);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
323 if (has_ctxk) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
324 assert(dep_context_arg(dept) == 0, "sanity");
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
325 if (note_dep_seen(dept, x1)) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
326 // look in this bucket for redundant assertions
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
327 const int stride = 2;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
328 for (int i = deps->length(); (i -= stride) >= 0; ) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
329 DepValue y1 = deps->at(i+1);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
330 if (x1 == y1) { // same subject; check the context
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
331 if (maybe_merge_ctxk(deps, i+0, x0)) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
332 return;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
333 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
334 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
335 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
336 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
337 } else {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
338 assert(dep_implicit_context_arg(dept) == 0, "sanity");
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
339 if (note_dep_seen(dept, x0) && note_dep_seen(dept, x1)) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
340 // look in this bucket for redundant assertions
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
341 const int stride = 2;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
342 for (int i = deps->length(); (i -= stride) >= 0; ) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
343 DepValue y0 = deps->at(i+0);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
344 DepValue y1 = deps->at(i+1);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
345 if (x0 == y0 && x1 == y1) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
346 return;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
347 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
348 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
349 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
350 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
351
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
352 // append the assertion in the correct bucket:
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
353 deps->append(x0);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
354 deps->append(x1);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
355 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
356 #endif // GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
357
0
a61af66fc99e Initial load
duke
parents:
diff changeset
358 /// Support for encoding dependencies into an nmethod:
a61af66fc99e Initial load
duke
parents:
diff changeset
359
a61af66fc99e Initial load
duke
parents:
diff changeset
360 void Dependencies::copy_to(nmethod* nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 address beg = nm->dependencies_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
362 address end = nm->dependencies_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
363 guarantee(end - beg >= (ptrdiff_t) size_in_bytes(), "bad sizing");
a61af66fc99e Initial load
duke
parents:
diff changeset
364 Copy::disjoint_words((HeapWord*) content_bytes(),
a61af66fc99e Initial load
duke
parents:
diff changeset
365 (HeapWord*) beg,
a61af66fc99e Initial load
duke
parents:
diff changeset
366 size_in_bytes() / sizeof(HeapWord));
a61af66fc99e Initial load
duke
parents:
diff changeset
367 assert(size_in_bytes() % sizeof(HeapWord) == 0, "copy by words");
a61af66fc99e Initial load
duke
parents:
diff changeset
368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
369
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
370 static int sort_dep(ciBaseObject** p1, ciBaseObject** p2, int narg) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
371 for (int i = 0; i < narg; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
372 int diff = p1[i]->ident() - p2[i]->ident();
a61af66fc99e Initial load
duke
parents:
diff changeset
373 if (diff != 0) return diff;
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
376 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
377 static int sort_dep_arg_1(ciBaseObject** p1, ciBaseObject** p2)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
378 { return sort_dep(p1, p2, 1); }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
379 static int sort_dep_arg_2(ciBaseObject** p1, ciBaseObject** p2)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
380 { return sort_dep(p1, p2, 2); }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
381 static int sort_dep_arg_3(ciBaseObject** p1, ciBaseObject** p2)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
382 { return sort_dep(p1, p2, 3); }
a61af66fc99e Initial load
duke
parents:
diff changeset
383
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
384 #ifdef GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
385 // metadata deps are sorted before object deps
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
386 static int sort_dep_value(Dependencies::DepValue* p1, Dependencies::DepValue* p2, int narg) {
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
387 for (int i = 0; i < narg; i++) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
388 int diff = p1[i].sort_key() - p2[i].sort_key();
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
389 if (diff != 0) return diff;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
390 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
391 return 0;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
392 }
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
393 static int sort_dep_value_arg_1(Dependencies::DepValue* p1, Dependencies::DepValue* p2)
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
394 { return sort_dep_value(p1, p2, 1); }
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
395 static int sort_dep_value_arg_2(Dependencies::DepValue* p1, Dependencies::DepValue* p2)
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
396 { return sort_dep_value(p1, p2, 2); }
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
397 static int sort_dep_value_arg_3(Dependencies::DepValue* p1, Dependencies::DepValue* p2)
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
398 { return sort_dep_value(p1, p2, 3); }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
399 #endif // GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
400
0
a61af66fc99e Initial load
duke
parents:
diff changeset
401 void Dependencies::sort_all_deps() {
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
402 #ifdef GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
403 if (_using_dep_values) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
404 for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
405 DepType dept = (DepType)deptv;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
406 GrowableArray<DepValue>* deps = _dep_values[dept];
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
407 if (deps->length() <= 1) continue;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
408 switch (dep_args(dept)) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
409 case 1: deps->sort(sort_dep_value_arg_1, 1); break;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
410 case 2: deps->sort(sort_dep_value_arg_2, 2); break;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
411 case 3: deps->sort(sort_dep_value_arg_3, 3); break;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
412 default: ShouldNotReachHere();
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
413 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
414 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
415 return;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
416 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
417 #endif // GRAAL
0
a61af66fc99e Initial load
duke
parents:
diff changeset
418 for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
419 DepType dept = (DepType)deptv;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
420 GrowableArray<ciBaseObject*>* deps = _deps[dept];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
421 if (deps->length() <= 1) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
422 switch (dep_args(dept)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
423 case 1: deps->sort(sort_dep_arg_1, 1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
424 case 2: deps->sort(sort_dep_arg_2, 2); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
425 case 3: deps->sort(sort_dep_arg_3, 3); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
426 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
428 }
a61af66fc99e Initial load
duke
parents:
diff changeset
429 }
a61af66fc99e Initial load
duke
parents:
diff changeset
430
a61af66fc99e Initial load
duke
parents:
diff changeset
431 size_t Dependencies::estimate_size_in_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 size_t est_size = 100;
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
433 #ifdef GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
434 if (_using_dep_values) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
435 for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
436 DepType dept = (DepType)deptv;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
437 GrowableArray<DepValue>* deps = _dep_values[dept];
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
438 est_size += deps->length() * 2; // tags and argument(s)
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
439 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
440 return est_size;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
441 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
442 #endif // GRAAL
0
a61af66fc99e Initial load
duke
parents:
diff changeset
443 for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 DepType dept = (DepType)deptv;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
445 GrowableArray<ciBaseObject*>* deps = _deps[dept];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
446 est_size += deps->length()*2; // tags and argument(s)
a61af66fc99e Initial load
duke
parents:
diff changeset
447 }
a61af66fc99e Initial load
duke
parents:
diff changeset
448 return est_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
451 ciKlass* Dependencies::ctxk_encoded_as_null(DepType dept, ciBaseObject* x) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
452 switch (dept) {
a61af66fc99e Initial load
duke
parents:
diff changeset
453 case abstract_with_exclusive_concrete_subtypes_2:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
454 return x->as_metadata()->as_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
455 case unique_concrete_method:
a61af66fc99e Initial load
duke
parents:
diff changeset
456 case exclusive_concrete_methods_2:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
457 return x->as_metadata()->as_method()->holder();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
458 }
a61af66fc99e Initial load
duke
parents:
diff changeset
459 return NULL; // let NULL be NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
460 }
a61af66fc99e Initial load
duke
parents:
diff changeset
461
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
462 Klass* Dependencies::ctxk_encoded_as_null(DepType dept, Metadata* x) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
463 assert(must_be_in_vm(), "raw oops here");
a61af66fc99e Initial load
duke
parents:
diff changeset
464 switch (dept) {
a61af66fc99e Initial load
duke
parents:
diff changeset
465 case abstract_with_exclusive_concrete_subtypes_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
466 assert(x->is_klass(), "sanity");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
467 return (Klass*) x;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
468 case unique_concrete_method:
a61af66fc99e Initial load
duke
parents:
diff changeset
469 case exclusive_concrete_methods_2:
a61af66fc99e Initial load
duke
parents:
diff changeset
470 assert(x->is_method(), "sanity");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
471 return ((Method*)x)->method_holder();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
473 return NULL; // let NULL be NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
474 }
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 void Dependencies::encode_content_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
477 sort_all_deps();
a61af66fc99e Initial load
duke
parents:
diff changeset
478
a61af66fc99e Initial load
duke
parents:
diff changeset
479 // cast is safe, no deps can overflow INT_MAX
a61af66fc99e Initial load
duke
parents:
diff changeset
480 CompressedWriteStream bytes((int)estimate_size_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
481
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
482 #ifdef GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
483 if (_using_dep_values) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
484 for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
485 DepType dept = (DepType)deptv;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
486 GrowableArray<DepValue>* deps = _dep_values[dept];
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
487 if (deps->length() == 0) continue;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
488 int stride = dep_args(dept);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
489 int ctxkj = dep_context_arg(dept); // -1 if no context arg
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
490 assert(stride > 0, "sanity");
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
491 for (int i = 0; i < deps->length(); i += stride) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
492 jbyte code_byte = (jbyte)dept;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
493 int skipj = -1;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
494 if (ctxkj >= 0 && ctxkj+1 < stride) {
7101
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
495 Klass* ctxk = deps->at(i+ctxkj+0).as_klass(_oop_recorder);
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
496 DepValue x = deps->at(i+ctxkj+1); // following argument
0778b04fc682 better encoding of dependencies during dependency recording by Graal
Doug Simon <doug.simon@oracle.com>
parents: 7094
diff changeset
497 if (ctxk == ctxk_encoded_as_null(dept, x.as_metadata(_oop_recorder))) {
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
498 skipj = ctxkj; // we win: maybe one less oop to keep track of
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
499 code_byte |= default_context_type_bit;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
500 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
501 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
502 bytes.write_byte(code_byte);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
503 for (int j = 0; j < stride; j++) {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
504 if (j == skipj) continue;
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
505 DepValue v = deps->at(i+j);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
506 int idx = v.index();
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
507 bytes.write_int(idx);
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
508 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
509 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
510 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
511 } else {
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
512 #endif // GRAAL
0
a61af66fc99e Initial load
duke
parents:
diff changeset
513 for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
514 DepType dept = (DepType)deptv;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
515 GrowableArray<ciBaseObject*>* deps = _deps[dept];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
516 if (deps->length() == 0) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
517 int stride = dep_args(dept);
a61af66fc99e Initial load
duke
parents:
diff changeset
518 int ctxkj = dep_context_arg(dept); // -1 if no context arg
a61af66fc99e Initial load
duke
parents:
diff changeset
519 assert(stride > 0, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
520 for (int i = 0; i < deps->length(); i += stride) {
a61af66fc99e Initial load
duke
parents:
diff changeset
521 jbyte code_byte = (jbyte)dept;
a61af66fc99e Initial load
duke
parents:
diff changeset
522 int skipj = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
523 if (ctxkj >= 0 && ctxkj+1 < stride) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
524 ciKlass* ctxk = deps->at(i+ctxkj+0)->as_metadata()->as_klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
525 ciBaseObject* x = deps->at(i+ctxkj+1); // following argument
0
a61af66fc99e Initial load
duke
parents:
diff changeset
526 if (ctxk == ctxk_encoded_as_null(dept, x)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 skipj = ctxkj; // we win: maybe one less oop to keep track of
a61af66fc99e Initial load
duke
parents:
diff changeset
528 code_byte |= default_context_type_bit;
a61af66fc99e Initial load
duke
parents:
diff changeset
529 }
a61af66fc99e Initial load
duke
parents:
diff changeset
530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
531 bytes.write_byte(code_byte);
a61af66fc99e Initial load
duke
parents:
diff changeset
532 for (int j = 0; j < stride; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
533 if (j == skipj) continue;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
534 ciBaseObject* v = deps->at(i+j);
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
535 int idx;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
536 if (v->is_object()) {
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
537 idx = _oop_recorder->find_index(v->as_object()->constant_encoding());
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
538 } else {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
539 ciMetadata* meta = v->as_metadata();
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
540 idx = _oop_recorder->find_index(meta->constant_encoding());
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
541 }
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
542 bytes.write_int(idx);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
545 }
7094
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
546 #ifdef GRAAL
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
547 }
eec7173947a1 removed remaining use of the C++ "compiler interface" (i.e. ci) by Graal for installing dependencies
Doug Simon <doug.simon@oracle.com>
parents: 6985
diff changeset
548 #endif // GRAAL
0
a61af66fc99e Initial load
duke
parents:
diff changeset
549
a61af66fc99e Initial load
duke
parents:
diff changeset
550 // write a sentinel byte to mark the end
a61af66fc99e Initial load
duke
parents:
diff changeset
551 bytes.write_byte(end_marker);
a61af66fc99e Initial load
duke
parents:
diff changeset
552
a61af66fc99e Initial load
duke
parents:
diff changeset
553 // round it out to a word boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
554 while (bytes.position() % sizeof(HeapWord) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
555 bytes.write_byte(end_marker);
a61af66fc99e Initial load
duke
parents:
diff changeset
556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
557
a61af66fc99e Initial load
duke
parents:
diff changeset
558 // check whether the dept byte encoding really works
a61af66fc99e Initial load
duke
parents:
diff changeset
559 assert((jbyte)default_context_type_bit != 0, "byte overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
560
a61af66fc99e Initial load
duke
parents:
diff changeset
561 _content_bytes = bytes.buffer();
a61af66fc99e Initial load
duke
parents:
diff changeset
562 _size_in_bytes = bytes.position();
a61af66fc99e Initial load
duke
parents:
diff changeset
563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
564
a61af66fc99e Initial load
duke
parents:
diff changeset
565 const char* Dependencies::_dep_name[TYPE_LIMIT] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
566 "end_marker",
a61af66fc99e Initial load
duke
parents:
diff changeset
567 "evol_method",
a61af66fc99e Initial load
duke
parents:
diff changeset
568 "leaf_type",
a61af66fc99e Initial load
duke
parents:
diff changeset
569 "abstract_with_unique_concrete_subtype",
a61af66fc99e Initial load
duke
parents:
diff changeset
570 "abstract_with_no_concrete_subtype",
a61af66fc99e Initial load
duke
parents:
diff changeset
571 "concrete_with_no_concrete_subtype",
a61af66fc99e Initial load
duke
parents:
diff changeset
572 "unique_concrete_method",
a61af66fc99e Initial load
duke
parents:
diff changeset
573 "abstract_with_exclusive_concrete_subtypes_2",
a61af66fc99e Initial load
duke
parents:
diff changeset
574 "exclusive_concrete_methods_2",
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
575 "no_finalizable_subclasses",
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
576 "call_site_target_value"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
577 };
a61af66fc99e Initial load
duke
parents:
diff changeset
578
a61af66fc99e Initial load
duke
parents:
diff changeset
579 int Dependencies::_dep_args[TYPE_LIMIT] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
580 -1,// end_marker
a61af66fc99e Initial load
duke
parents:
diff changeset
581 1, // evol_method m
a61af66fc99e Initial load
duke
parents:
diff changeset
582 1, // leaf_type ctxk
a61af66fc99e Initial load
duke
parents:
diff changeset
583 2, // abstract_with_unique_concrete_subtype ctxk, k
a61af66fc99e Initial load
duke
parents:
diff changeset
584 1, // abstract_with_no_concrete_subtype ctxk
a61af66fc99e Initial load
duke
parents:
diff changeset
585 1, // concrete_with_no_concrete_subtype ctxk
a61af66fc99e Initial load
duke
parents:
diff changeset
586 2, // unique_concrete_method ctxk, m
a61af66fc99e Initial load
duke
parents:
diff changeset
587 3, // unique_concrete_subtypes_2 ctxk, k1, k2
a61af66fc99e Initial load
duke
parents:
diff changeset
588 3, // unique_concrete_methods_2 ctxk, m1, m2
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
589 1, // no_finalizable_subclasses ctxk
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
590 2 // call_site_target_value call_site, method_handle
0
a61af66fc99e Initial load
duke
parents:
diff changeset
591 };
a61af66fc99e Initial load
duke
parents:
diff changeset
592
a61af66fc99e Initial load
duke
parents:
diff changeset
593 const char* Dependencies::dep_name(Dependencies::DepType dept) {
a61af66fc99e Initial load
duke
parents:
diff changeset
594 if (!dept_in_mask(dept, all_types)) return "?bad-dep?";
a61af66fc99e Initial load
duke
parents:
diff changeset
595 return _dep_name[dept];
a61af66fc99e Initial load
duke
parents:
diff changeset
596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
597
a61af66fc99e Initial load
duke
parents:
diff changeset
598 int Dependencies::dep_args(Dependencies::DepType dept) {
a61af66fc99e Initial load
duke
parents:
diff changeset
599 if (!dept_in_mask(dept, all_types)) return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
600 return _dep_args[dept];
a61af66fc99e Initial load
duke
parents:
diff changeset
601 }
a61af66fc99e Initial load
duke
parents:
diff changeset
602
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
603 void Dependencies::check_valid_dependency_type(DepType dept) {
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
604 guarantee(FIRST_TYPE <= dept && dept < TYPE_LIMIT, err_msg("invalid dependency type: %d", (int) dept));
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
605 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
606
0
a61af66fc99e Initial load
duke
parents:
diff changeset
607 // for the sake of the compiler log, print out current dependencies:
a61af66fc99e Initial load
duke
parents:
diff changeset
608 void Dependencies::log_all_dependencies() {
a61af66fc99e Initial load
duke
parents:
diff changeset
609 if (log() == NULL) return;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
610 ciBaseObject* args[max_arg_count];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
611 for (int deptv = (int)FIRST_TYPE; deptv < (int)TYPE_LIMIT; deptv++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
612 DepType dept = (DepType)deptv;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
613 GrowableArray<ciBaseObject*>* deps = _deps[dept];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
614 if (deps->length() == 0) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
615 int stride = dep_args(dept);
a61af66fc99e Initial load
duke
parents:
diff changeset
616 for (int i = 0; i < deps->length(); i += stride) {
a61af66fc99e Initial load
duke
parents:
diff changeset
617 for (int j = 0; j < stride; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 // flush out the identities before printing
a61af66fc99e Initial load
duke
parents:
diff changeset
619 args[j] = deps->at(i+j);
a61af66fc99e Initial load
duke
parents:
diff changeset
620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
621 write_dependency_to(log(), dept, stride, args);
a61af66fc99e Initial load
duke
parents:
diff changeset
622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
623 }
a61af66fc99e Initial load
duke
parents:
diff changeset
624 }
a61af66fc99e Initial load
duke
parents:
diff changeset
625
a61af66fc99e Initial load
duke
parents:
diff changeset
626 void Dependencies::write_dependency_to(CompileLog* log,
a61af66fc99e Initial load
duke
parents:
diff changeset
627 DepType dept,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
628 int nargs, DepArgument args[],
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
629 Klass* witness) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
630 if (log == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
631 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
632 }
a61af66fc99e Initial load
duke
parents:
diff changeset
633 ciEnv* env = ciEnv::current();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
634 ciBaseObject* ciargs[max_arg_count];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
635 assert(nargs <= max_arg_count, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
636 for (int j = 0; j < nargs; j++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
637 if (args[j].is_oop()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
638 ciargs[j] = env->get_object(args[j].oop_value());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
639 } else {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
640 ciargs[j] = env->get_metadata(args[j].metadata_value());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
641 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
643 Dependencies::write_dependency_to(log, dept, nargs, ciargs, witness);
a61af66fc99e Initial load
duke
parents:
diff changeset
644 }
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646 void Dependencies::write_dependency_to(CompileLog* log,
a61af66fc99e Initial load
duke
parents:
diff changeset
647 DepType dept,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
648 int nargs, ciBaseObject* args[],
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
649 Klass* witness) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
650 if (log == NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
651 assert(nargs <= max_arg_count, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
652 int argids[max_arg_count];
a61af66fc99e Initial load
duke
parents:
diff changeset
653 int ctxkj = dep_context_arg(dept); // -1 if no context arg
a61af66fc99e Initial load
duke
parents:
diff changeset
654 int j;
a61af66fc99e Initial load
duke
parents:
diff changeset
655 for (j = 0; j < nargs; j++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
656 if (args[j]->is_object()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
657 argids[j] = log->identify(args[j]->as_object());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
658 } else {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
659 argids[j] = log->identify(args[j]->as_metadata());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
660 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
661 }
a61af66fc99e Initial load
duke
parents:
diff changeset
662 if (witness != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
663 log->begin_elem("dependency_failed");
a61af66fc99e Initial load
duke
parents:
diff changeset
664 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
665 log->begin_elem("dependency");
a61af66fc99e Initial load
duke
parents:
diff changeset
666 }
a61af66fc99e Initial load
duke
parents:
diff changeset
667 log->print(" type='%s'", dep_name(dept));
a61af66fc99e Initial load
duke
parents:
diff changeset
668 if (ctxkj >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
669 log->print(" ctxk='%d'", argids[ctxkj]);
a61af66fc99e Initial load
duke
parents:
diff changeset
670 }
a61af66fc99e Initial load
duke
parents:
diff changeset
671 // write remaining arguments, if any.
a61af66fc99e Initial load
duke
parents:
diff changeset
672 for (j = 0; j < nargs; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
673 if (j == ctxkj) continue; // already logged
a61af66fc99e Initial load
duke
parents:
diff changeset
674 if (j == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
675 log->print( " x='%d'", argids[j]);
a61af66fc99e Initial load
duke
parents:
diff changeset
676 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 log->print(" x%d='%d'", j, argids[j]);
a61af66fc99e Initial load
duke
parents:
diff changeset
678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
679 }
a61af66fc99e Initial load
duke
parents:
diff changeset
680 if (witness != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
681 log->object("witness", witness);
a61af66fc99e Initial load
duke
parents:
diff changeset
682 log->stamp();
a61af66fc99e Initial load
duke
parents:
diff changeset
683 }
a61af66fc99e Initial load
duke
parents:
diff changeset
684 log->end_elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
685 }
a61af66fc99e Initial load
duke
parents:
diff changeset
686
a61af66fc99e Initial load
duke
parents:
diff changeset
687 void Dependencies::write_dependency_to(xmlStream* xtty,
a61af66fc99e Initial load
duke
parents:
diff changeset
688 DepType dept,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
689 int nargs, DepArgument args[],
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
690 Klass* witness) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
691 if (xtty == NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
692 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
693 int ctxkj = dep_context_arg(dept); // -1 if no context arg
a61af66fc99e Initial load
duke
parents:
diff changeset
694 if (witness != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
695 xtty->begin_elem("dependency_failed");
a61af66fc99e Initial load
duke
parents:
diff changeset
696 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
697 xtty->begin_elem("dependency");
a61af66fc99e Initial load
duke
parents:
diff changeset
698 }
a61af66fc99e Initial load
duke
parents:
diff changeset
699 xtty->print(" type='%s'", dep_name(dept));
a61af66fc99e Initial load
duke
parents:
diff changeset
700 if (ctxkj >= 0) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
701 xtty->object("ctxk", args[ctxkj].metadata_value());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
702 }
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // write remaining arguments, if any.
a61af66fc99e Initial load
duke
parents:
diff changeset
704 for (int j = 0; j < nargs; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
705 if (j == ctxkj) continue; // already logged
a61af66fc99e Initial load
duke
parents:
diff changeset
706 if (j == 1) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
707 if (args[j].is_oop()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
708 xtty->object("x", args[j].oop_value());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
709 } else {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
710 xtty->object("x", args[j].metadata_value());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
711 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
712 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
713 char xn[10]; sprintf(xn, "x%d", j);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
714 if (args[j].is_oop()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
715 xtty->object(xn, args[j].oop_value());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
716 } else {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
717 xtty->object(xn, args[j].metadata_value());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
718 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
719 }
a61af66fc99e Initial load
duke
parents:
diff changeset
720 }
a61af66fc99e Initial load
duke
parents:
diff changeset
721 if (witness != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
722 xtty->object("witness", witness);
a61af66fc99e Initial load
duke
parents:
diff changeset
723 xtty->stamp();
a61af66fc99e Initial load
duke
parents:
diff changeset
724 }
a61af66fc99e Initial load
duke
parents:
diff changeset
725 xtty->end_elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
726 }
a61af66fc99e Initial load
duke
parents:
diff changeset
727
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
728 void Dependencies::print_dependency(DepType dept, int nargs, DepArgument args[],
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
729 Klass* witness) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
730 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
731 ttyLocker ttyl; // keep the following output all in one block
a61af66fc99e Initial load
duke
parents:
diff changeset
732 tty->print_cr("%s of type %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
733 (witness == NULL)? "Dependency": "Failed dependency",
a61af66fc99e Initial load
duke
parents:
diff changeset
734 dep_name(dept));
a61af66fc99e Initial load
duke
parents:
diff changeset
735 // print arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
736 int ctxkj = dep_context_arg(dept); // -1 if no context arg
a61af66fc99e Initial load
duke
parents:
diff changeset
737 for (int j = 0; j < nargs; j++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
738 DepArgument arg = args[j];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
739 bool put_star = false;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
740 if (arg.is_null()) continue;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
741 const char* what;
a61af66fc99e Initial load
duke
parents:
diff changeset
742 if (j == ctxkj) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
743 assert(arg.is_metadata(), "must be");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
744 what = "context";
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
745 put_star = !Dependencies::is_concrete_klass((Klass*)arg.metadata_value());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
746 } else if (arg.is_method()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
747 what = "method ";
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
748 put_star = !Dependencies::is_concrete_method((Method*)arg.metadata_value());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
749 } else if (arg.is_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
750 what = "class ";
a61af66fc99e Initial load
duke
parents:
diff changeset
751 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 what = "object ";
a61af66fc99e Initial load
duke
parents:
diff changeset
753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
754 tty->print(" %s = %s", what, (put_star? "*": ""));
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
755 if (arg.is_klass())
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
756 tty->print("%s", ((Klass*)arg.metadata_value())->external_name());
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
757 else if (arg.is_method())
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
758 ((Method*)arg.metadata_value())->print_value();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
759 else
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
760 ShouldNotReachHere(); // Provide impl for this type.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
761 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
762 }
a61af66fc99e Initial load
duke
parents:
diff changeset
763 if (witness != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
764 bool put_star = !Dependencies::is_concrete_klass(witness);
a61af66fc99e Initial load
duke
parents:
diff changeset
765 tty->print_cr(" witness = %s%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
766 (put_star? "*": ""),
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
767 witness->external_name());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
768 }
a61af66fc99e Initial load
duke
parents:
diff changeset
769 }
a61af66fc99e Initial load
duke
parents:
diff changeset
770
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
771 void Dependencies::DepStream::log_dependency(Klass* witness) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
772 if (_deps == NULL && xtty == NULL) return; // fast cutout for runtime
6972
bd7a7ce2e264 6830717: replay of compilations would help with debugging
minqi
parents: 6940
diff changeset
773 ResourceMark rm;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
774 int nargs = argument_count();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
775 DepArgument args[max_arg_count];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
776 for (int j = 0; j < nargs; j++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
777 if (type() == call_site_target_value) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
778 args[j] = argument_oop(j);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
779 } else {
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
780 args[j] = argument(j);
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
781 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
782 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
783 if (_deps != NULL && _deps->log() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
784 Dependencies::write_dependency_to(_deps->log(),
a61af66fc99e Initial load
duke
parents:
diff changeset
785 type(), nargs, args, witness);
a61af66fc99e Initial load
duke
parents:
diff changeset
786 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
787 Dependencies::write_dependency_to(xtty,
a61af66fc99e Initial load
duke
parents:
diff changeset
788 type(), nargs, args, witness);
a61af66fc99e Initial load
duke
parents:
diff changeset
789 }
a61af66fc99e Initial load
duke
parents:
diff changeset
790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
791
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
792 void Dependencies::DepStream::print_dependency(Klass* witness, bool verbose) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
793 int nargs = argument_count();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
794 DepArgument args[max_arg_count];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
795 for (int j = 0; j < nargs; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
796 args[j] = argument(j);
a61af66fc99e Initial load
duke
parents:
diff changeset
797 }
a61af66fc99e Initial load
duke
parents:
diff changeset
798 Dependencies::print_dependency(type(), nargs, args, witness);
a61af66fc99e Initial load
duke
parents:
diff changeset
799 if (verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
800 if (_code != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
801 tty->print(" code: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
802 _code->print_value_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
803 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
804 }
a61af66fc99e Initial load
duke
parents:
diff changeset
805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
807
a61af66fc99e Initial load
duke
parents:
diff changeset
808
a61af66fc99e Initial load
duke
parents:
diff changeset
809 /// Dependency stream support (decodes dependencies from an nmethod):
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
812 void Dependencies::DepStream::initial_asserts(size_t byte_limit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
813 assert(must_be_in_vm(), "raw oops here");
a61af66fc99e Initial load
duke
parents:
diff changeset
814 _byte_limit = byte_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
815 _type = (DepType)(end_marker-1); // defeat "already at end" assert
a61af66fc99e Initial load
duke
parents:
diff changeset
816 assert((_code!=NULL) + (_deps!=NULL) == 1, "one or t'other");
a61af66fc99e Initial load
duke
parents:
diff changeset
817 }
a61af66fc99e Initial load
duke
parents:
diff changeset
818 #endif //ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
819
a61af66fc99e Initial load
duke
parents:
diff changeset
820 bool Dependencies::DepStream::next() {
a61af66fc99e Initial load
duke
parents:
diff changeset
821 assert(_type != end_marker, "already at end");
a61af66fc99e Initial load
duke
parents:
diff changeset
822 if (_bytes.position() == 0 && _code != NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
823 && _code->dependencies_size() == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
824 // Method has no dependencies at all.
a61af66fc99e Initial load
duke
parents:
diff changeset
825 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
826 }
a61af66fc99e Initial load
duke
parents:
diff changeset
827 int code_byte = (_bytes.read_byte() & 0xFF);
a61af66fc99e Initial load
duke
parents:
diff changeset
828 if (code_byte == end_marker) {
a61af66fc99e Initial load
duke
parents:
diff changeset
829 DEBUG_ONLY(_type = end_marker);
a61af66fc99e Initial load
duke
parents:
diff changeset
830 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
831 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
832 int ctxk_bit = (code_byte & Dependencies::default_context_type_bit);
a61af66fc99e Initial load
duke
parents:
diff changeset
833 code_byte -= ctxk_bit;
a61af66fc99e Initial load
duke
parents:
diff changeset
834 DepType dept = (DepType)code_byte;
a61af66fc99e Initial load
duke
parents:
diff changeset
835 _type = dept;
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
836 Dependencies::check_valid_dependency_type(dept);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
837 int stride = _dep_args[dept];
a61af66fc99e Initial load
duke
parents:
diff changeset
838 assert(stride == dep_args(dept), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
839 int skipj = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
840 if (ctxk_bit != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
841 skipj = 0; // currently the only context argument is at zero
a61af66fc99e Initial load
duke
parents:
diff changeset
842 assert(skipj == dep_context_arg(dept), "zero arg always ctxk");
a61af66fc99e Initial load
duke
parents:
diff changeset
843 }
a61af66fc99e Initial load
duke
parents:
diff changeset
844 for (int j = 0; j < stride; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
845 _xi[j] = (j == skipj)? 0: _bytes.read_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
846 }
a61af66fc99e Initial load
duke
parents:
diff changeset
847 DEBUG_ONLY(_xi[stride] = -1); // help detect overruns
a61af66fc99e Initial load
duke
parents:
diff changeset
848 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
849 }
a61af66fc99e Initial load
duke
parents:
diff changeset
850 }
a61af66fc99e Initial load
duke
parents:
diff changeset
851
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
852 inline Metadata* Dependencies::DepStream::recorded_metadata_at(int i) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
853 Metadata* o = NULL;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
854 if (_code != NULL) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
855 o = _code->metadata_at(i);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
856 } else {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
857 o = _deps->oop_recorder()->metadata_at(i);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
858 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
859 assert(o == NULL || o->is_metadata(),
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
860 err_msg("Should be perm " PTR_FORMAT, o));
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
861 return o;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
862 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
863
0
a61af66fc99e Initial load
duke
parents:
diff changeset
864 inline oop Dependencies::DepStream::recorded_oop_at(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
865 return (_code != NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
866 ? _code->oop_at(i)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
867 : JNIHandles::resolve(_deps->oop_recorder()->oop_at(i));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
868 }
a61af66fc99e Initial load
duke
parents:
diff changeset
869
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
870 Metadata* Dependencies::DepStream::argument(int i) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
871 Metadata* result = recorded_metadata_at(argument_index(i));
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
872
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
873 if (result == NULL) { // Explicit context argument can be compressed
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
874 int ctxkj = dep_context_arg(type()); // -1 if no explicit context arg
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
875 if (ctxkj >= 0 && i == ctxkj && ctxkj+1 < argument_count()) {
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
876 result = ctxk_encoded_as_null(type(), argument(ctxkj+1));
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
877 }
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
878 }
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
879
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
880 assert(result == NULL || result->is_klass() || result->is_method(), "must be");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
881 return result;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
882 }
a61af66fc99e Initial load
duke
parents:
diff changeset
883
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
884 oop Dependencies::DepStream::argument_oop(int i) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
885 oop result = recorded_oop_at(argument_index(i));
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
886 assert(result == NULL || result->is_oop(), "must be");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
887 return result;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
888 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
889
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
890 Klass* Dependencies::DepStream::context_type() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
891 assert(must_be_in_vm(), "raw oops here");
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
892
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
893 // Most dependencies have an explicit context type argument.
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
894 {
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
895 int ctxkj = dep_context_arg(type()); // -1 if no explicit context arg
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
896 if (ctxkj >= 0) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
897 Metadata* k = argument(ctxkj);
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
898 assert(k != NULL && k->is_klass(), "type check");
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
899 return (Klass*)k;
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
900 }
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
901 }
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
902
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
903 // Some dependencies are using the klass of the first object
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
904 // argument as implicit context type (e.g. call_site_target_value).
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
905 {
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
906 int ctxkj = dep_implicit_context_arg(type());
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
907 if (ctxkj >= 0) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
908 Klass* k = argument_oop(ctxkj)->klass();
6844
9a9b6e05ffb4 8000232: NPG: SIGSEGV in Dependencies::DepStream::check_klass_dependency on solaris-x64
vlivanov
parents: 6740
diff changeset
909 assert(k != NULL && k->is_klass(), "type check");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
910 return (Klass*) k;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
911 }
a61af66fc99e Initial load
duke
parents:
diff changeset
912 }
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
913
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
914 // And some dependencies don't have a context type at all,
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
915 // e.g. evol_method.
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
916 return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
918
a61af66fc99e Initial load
duke
parents:
diff changeset
919 /// Checking dependencies:
a61af66fc99e Initial load
duke
parents:
diff changeset
920
a61af66fc99e Initial load
duke
parents:
diff changeset
921 // This hierarchy walker inspects subtypes of a given type,
a61af66fc99e Initial load
duke
parents:
diff changeset
922 // trying to find a "bad" class which breaks a dependency.
a61af66fc99e Initial load
duke
parents:
diff changeset
923 // Such a class is called a "witness" to the broken dependency.
a61af66fc99e Initial load
duke
parents:
diff changeset
924 // While searching around, we ignore "participants", which
a61af66fc99e Initial load
duke
parents:
diff changeset
925 // are already known to the dependency.
a61af66fc99e Initial load
duke
parents:
diff changeset
926 class ClassHierarchyWalker {
a61af66fc99e Initial load
duke
parents:
diff changeset
927 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
928 enum { PARTICIPANT_LIMIT = 3 };
a61af66fc99e Initial load
duke
parents:
diff changeset
929
a61af66fc99e Initial load
duke
parents:
diff changeset
930 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
931 // optional method descriptor to check for:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
932 Symbol* _name;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
933 Symbol* _signature;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
934
a61af66fc99e Initial load
duke
parents:
diff changeset
935 // special classes which are not allowed to be witnesses:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
936 Klass* _participants[PARTICIPANT_LIMIT+1];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
937 int _num_participants;
a61af66fc99e Initial load
duke
parents:
diff changeset
938
a61af66fc99e Initial load
duke
parents:
diff changeset
939 // cache of method lookups
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
940 Method* _found_methods[PARTICIPANT_LIMIT+1];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
941
a61af66fc99e Initial load
duke
parents:
diff changeset
942 // if non-zero, tells how many witnesses to convert to participants
a61af66fc99e Initial load
duke
parents:
diff changeset
943 int _record_witnesses;
a61af66fc99e Initial load
duke
parents:
diff changeset
944
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
945 void initialize(Klass* participant) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
946 _record_witnesses = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
947 _participants[0] = participant;
a61af66fc99e Initial load
duke
parents:
diff changeset
948 _found_methods[0] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
949 _num_participants = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
950 if (participant != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
951 // Terminating NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
952 _participants[1] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
953 _found_methods[1] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
954 _num_participants = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
955 }
a61af66fc99e Initial load
duke
parents:
diff changeset
956 }
a61af66fc99e Initial load
duke
parents:
diff changeset
957
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
958 void initialize_from_method(Method* m) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
959 assert(m != NULL && m->is_method(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
960 _name = m->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
961 _signature = m->signature();
a61af66fc99e Initial load
duke
parents:
diff changeset
962 }
a61af66fc99e Initial load
duke
parents:
diff changeset
963
a61af66fc99e Initial load
duke
parents:
diff changeset
964 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // The walker is initialized to recognize certain methods and/or types
a61af66fc99e Initial load
duke
parents:
diff changeset
966 // as friendly participants.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
967 ClassHierarchyWalker(Klass* participant, Method* m) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
968 initialize_from_method(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
969 initialize(participant);
a61af66fc99e Initial load
duke
parents:
diff changeset
970 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
971 ClassHierarchyWalker(Method* m) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
972 initialize_from_method(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
973 initialize(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
974 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
975 ClassHierarchyWalker(Klass* participant = NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
976 _name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
977 _signature = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
978 initialize(participant);
a61af66fc99e Initial load
duke
parents:
diff changeset
979 }
a61af66fc99e Initial load
duke
parents:
diff changeset
980
a61af66fc99e Initial load
duke
parents:
diff changeset
981 // This is common code for two searches: One for concrete subtypes,
a61af66fc99e Initial load
duke
parents:
diff changeset
982 // the other for concrete method implementations and overrides.
a61af66fc99e Initial load
duke
parents:
diff changeset
983 bool doing_subtype_search() {
a61af66fc99e Initial load
duke
parents:
diff changeset
984 return _name == NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
985 }
a61af66fc99e Initial load
duke
parents:
diff changeset
986
a61af66fc99e Initial load
duke
parents:
diff changeset
987 int num_participants() { return _num_participants; }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
988 Klass* participant(int n) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
989 assert((uint)n <= (uint)_num_participants, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
990 return _participants[n];
a61af66fc99e Initial load
duke
parents:
diff changeset
991 }
a61af66fc99e Initial load
duke
parents:
diff changeset
992
a61af66fc99e Initial load
duke
parents:
diff changeset
993 // Note: If n==num_participants, returns NULL.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
994 Method* found_method(int n) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
995 assert((uint)n <= (uint)_num_participants, "oob");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
996 Method* fm = _found_methods[n];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
997 assert(n == _num_participants || fm != NULL, "proper usage");
a61af66fc99e Initial load
duke
parents:
diff changeset
998 assert(fm == NULL || fm->method_holder() == _participants[n], "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
999 return fm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1001
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 // Assert that m is inherited into ctxk, without intervening overrides.
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 // (May return true even if this is not true, in corner cases where we punt.)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1005 bool check_method_context(Klass* ctxk, Method* m) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 if (m->method_holder() == ctxk)
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 return true; // Quick win.
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 if (m->is_private())
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 return false; // Quick lose. Should not happen.
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 if (!(m->is_public() || m->is_protected()))
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 // The override story is complex when packages get involved.
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 return true; // Must punt the assertion to true.
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1013 Klass* k = ctxk;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1014 Method* lm = k->lookup_method(m->name(), m->signature());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 if (lm == NULL && k->oop_is_instance()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 // It might be an abstract interface method, devoid of mirandas.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1017 lm = ((InstanceKlass*)k)->lookup_method_in_all_interfaces(m->name(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 m->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 if (lm == m)
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 // Method m is inherited into ctxk.
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 if (lm != NULL) {
4060
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1024 if (!(lm->is_public() || lm->is_protected())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 // Method is [package-]private, so the override story is complex.
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 return true; // Must punt the assertion to true.
4060
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1027 }
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1028 if (lm->is_static()) {
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1029 // Static methods don't override non-static so punt
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1030 return true;
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1031 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 if ( !Dependencies::is_concrete_method(lm)
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 && !Dependencies::is_concrete_method(m)
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6934
diff changeset
1034 && lm->method_holder()->is_subtype_of(m->method_holder()))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 // Method m is overridden by lm, but both are non-concrete.
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 tty->print_cr("Dependency method not found in the associated context:");
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1040 tty->print_cr(" context = %s", ctxk->external_name());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 tty->print( " method = "); m->print_short_name(tty); tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 if (lm != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 tty->print( " found = "); lm->print_short_name(tty); tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1048
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1049 void add_participant(Klass* participant) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 assert(_num_participants + _record_witnesses < PARTICIPANT_LIMIT, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 int np = _num_participants++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 _participants[np] = participant;
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 _participants[np+1] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 _found_methods[np+1] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1056
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 void record_witnesses(int add) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 if (add > PARTICIPANT_LIMIT) add = PARTICIPANT_LIMIT;
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 assert(_num_participants + add < PARTICIPANT_LIMIT, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 _record_witnesses = add;
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1062
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1063 bool is_witness(Klass* k) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 if (doing_subtype_search()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 return Dependencies::is_concrete_klass(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 } else {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1067 Method* m = InstanceKlass::cast(k)->find_method(_name, _signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 if (m == NULL || !Dependencies::is_concrete_method(m)) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 _found_methods[_num_participants] = m;
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 // Note: If add_participant(k) is called,
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 // the method m will already be memoized for it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1075
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1076 bool is_participant(Klass* k) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 if (k == _participants[0]) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 } else if (_num_participants <= 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 return in_list(k, &_participants[1]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1085 bool ignore_witness(Klass* witness) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 if (_record_witnesses == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 --_record_witnesses;
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 add_participant(witness);
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1094 static bool in_list(Klass* x, Klass** list) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 for (int i = 0; ; i++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1096 Klass* y = list[i];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 if (y == NULL) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 if (y == x) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 return false; // not in list
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1102
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 // the actual search method:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1105 Klass* find_witness_anywhere(Klass* context_type,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 bool participants_hide_witnesses,
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 bool top_level_call = true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 // the spot-checking version:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1109 Klass* find_witness_in(KlassDepChange& changes,
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1110 Klass* context_type,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 bool participants_hide_witnesses);
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 public:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1113 Klass* find_witness_subtype(Klass* context_type, KlassDepChange* changes = NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 assert(doing_subtype_search(), "must set up a subtype search");
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 // When looking for unexpected concrete types,
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 // do not look beneath expected ones.
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 const bool participants_hide_witnesses = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 // CX > CC > C' is OK, even if C' is new.
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 // CX > { CC, C' } is not OK if C' is new, and C' is the witness.
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 if (changes != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 return find_witness_in(*changes, context_type, participants_hide_witnesses);
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 return find_witness_anywhere(context_type, participants_hide_witnesses);
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1126 Klass* find_witness_definer(Klass* context_type, KlassDepChange* changes = NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 assert(!doing_subtype_search(), "must set up a method definer search");
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 // When looking for unexpected concrete methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 // look beneath expected ones, to see if there are overrides.
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 const bool participants_hide_witnesses = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 // CX.m > CC.m > C'.m is not OK, if C'.m is new, and C' is the witness.
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 if (changes != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 return find_witness_in(*changes, context_type, !participants_hide_witnesses);
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 return find_witness_anywhere(context_type, !participants_hide_witnesses);
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1139
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 static int deps_find_witness_calls = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 static int deps_find_witness_steps = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 static int deps_find_witness_recursions = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 static int deps_find_witness_singles = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 static int deps_find_witness_print = 0; // set to -1 to force a final print
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 static bool count_find_witness_calls() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 if (TraceDependencies || LogCompilation) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 int pcount = deps_find_witness_print + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 bool final_stats = (pcount == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 bool initial_call = (pcount == 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 bool occasional_print = ((pcount & ((1<<10) - 1)) == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 if (pcount < 0) pcount = 1; // crude overflow protection
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 deps_find_witness_print = pcount;
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 if (VerifyDependencies && initial_call) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 tty->print_cr("Warning: TraceDependencies results may be inflated by VerifyDependencies");
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 if (occasional_print || final_stats) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 // Every now and then dump a little info about dependency searching.
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 if (xtty != NULL) {
1206
87684f1a88b5 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 1123
diff changeset
1160 ttyLocker ttyl;
87684f1a88b5 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 1123
diff changeset
1161 xtty->elem("deps_find_witness calls='%d' steps='%d' recursions='%d' singles='%d'",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 deps_find_witness_calls,
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 deps_find_witness_steps,
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 deps_find_witness_recursions,
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 deps_find_witness_singles);
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 if (final_stats || (TraceDependencies && WizardMode)) {
1206
87684f1a88b5 6614597: Performance variability in jvm2008 xml.validation
kvn
parents: 1123
diff changeset
1168 ttyLocker ttyl;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 tty->print_cr("Dependency check (find_witness) "
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 "calls=%d, steps=%d (avg=%.1f), recursions=%d, singles=%d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 deps_find_witness_calls,
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 deps_find_witness_steps,
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 (double)deps_find_witness_steps / deps_find_witness_calls,
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 deps_find_witness_recursions,
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 deps_find_witness_singles);
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 #define count_find_witness_calls() (0)
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1185
a61af66fc99e Initial load
duke
parents:
diff changeset
1186
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1187 Klass* ClassHierarchyWalker::find_witness_in(KlassDepChange& changes,
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1188 Klass* context_type,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 bool participants_hide_witnesses) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 assert(changes.involves_context(context_type), "irrelevant dependency");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1191 Klass* new_type = changes.new_type();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1192
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 count_find_witness_calls();
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 NOT_PRODUCT(deps_find_witness_singles++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1195
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 // Current thread must be in VM (not native mode, as in CI):
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 assert(must_be_in_vm(), "raw oops here");
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 // Must not move the class hierarchy during this check:
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 assert_locked_or_safepoint(Compile_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1200
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1201 int nof_impls = InstanceKlass::cast(context_type)->nof_implementors();
30
65a06b4a51b8 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 0
diff changeset
1202 if (nof_impls > 1) {
65a06b4a51b8 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 0
diff changeset
1203 // Avoid this case: *I.m > { A.m, C }; B.m > C
65a06b4a51b8 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 0
diff changeset
1204 // %%% Until this is fixed more systematically, bail out.
65a06b4a51b8 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 0
diff changeset
1205 // See corresponding comment in find_witness_anywhere.
65a06b4a51b8 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 0
diff changeset
1206 return context_type;
65a06b4a51b8 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 0
diff changeset
1207 }
65a06b4a51b8 6610906: inexplicable IncompatibleClassChangeError
jrose
parents: 0
diff changeset
1208
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 assert(!is_participant(new_type), "only old classes are participants");
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 if (participants_hide_witnesses) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 // If the new type is a subtype of a participant, we are done.
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 for (int i = 0; i < num_participants(); i++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1213 Klass* part = participant(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 if (part == NULL) continue;
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1215 assert(changes.involves_context(part) == new_type->is_subtype_of(part),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 "correct marking of participants, b/c new_type is unique");
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 if (changes.involves_context(part)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 // new guy is protected from this check by previous participant
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1223
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 if (is_witness(new_type) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 !ignore_witness(new_type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 return new_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1228
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1231
a61af66fc99e Initial load
duke
parents:
diff changeset
1232
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 // Walk hierarchy under a context type, looking for unexpected types.
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 // Do not report participant types, and recursively walk beneath
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 // them only if participants_hide_witnesses is false.
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 // If top_level_call is false, skip testing the context type,
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 // because the caller has already considered it.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1238 Klass* ClassHierarchyWalker::find_witness_anywhere(Klass* context_type,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 bool participants_hide_witnesses,
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 bool top_level_call) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 // Current thread must be in VM (not native mode, as in CI):
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 assert(must_be_in_vm(), "raw oops here");
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 // Must not move the class hierarchy during this check:
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 assert_locked_or_safepoint(Compile_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1245
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 bool do_counts = count_find_witness_calls();
a61af66fc99e Initial load
duke
parents:
diff changeset
1247
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 // Check the root of the sub-hierarchy first.
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 if (top_level_call) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 if (do_counts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 NOT_PRODUCT(deps_find_witness_calls++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 NOT_PRODUCT(deps_find_witness_steps++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 if (is_participant(context_type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 if (participants_hide_witnesses) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 // else fall through to search loop...
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 } else if (is_witness(context_type) && !ignore_witness(context_type)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 // The context is an abstract class or interface, to start with.
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 return context_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1262
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 // Now we must check each implementor and each subclass.
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 // Use a short worklist to avoid blowing the stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 // Each worklist entry is a *chain* of subklass siblings to process.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1266 const int CHAINMAX = 100; // >= 1 + InstanceKlass::implementors_limit
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 Klass* chains[CHAINMAX];
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 int chaini = 0; // index into worklist
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 Klass* chain; // scratch variable
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 #define ADD_SUBCLASS_CHAIN(k) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 assert(chaini < CHAINMAX, "oob"); \
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1272 chain = InstanceKlass::cast(k)->subklass(); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 if (chain != NULL) chains[chaini++] = chain; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1274
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 // Look for non-abstract subclasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 // (Note: Interfaces do not have subclasses.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 ADD_SUBCLASS_CHAIN(context_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
1278
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 // If it is an interface, search its direct implementors.
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 // (Their subclasses are additional indirect implementors.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1281 // See InstanceKlass::add_implementor.)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 // (Note: nof_implementors is always zero for non-interfaces.)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1283 int nof_impls = InstanceKlass::cast(context_type)->nof_implementors();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 if (nof_impls > 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 // Avoid this case: *I.m > { A.m, C }; B.m > C
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 // Here, I.m has 2 concrete implementations, but m appears unique
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 // as A.m, because the search misses B.m when checking C.
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 // The inherited method B.m was getting missed by the walker
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 // when interface 'I' was the starting point.
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 // %%% Until this is fixed more systematically, bail out.
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 // (Old CHA had the same limitation.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 return context_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 }
5998
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1294 if (nof_impls > 0) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1295 Klass* impl = InstanceKlass::cast(context_type)->implementor();
5998
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1296 assert(impl != NULL, "just checking");
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1297 // If impl is the same as the context_type, then more than one
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1298 // implementor has seen. No exact info in this case.
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1299 if (impl == context_type) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 return context_type; // report an inexact witness to this sad affair
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 if (do_counts)
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 { NOT_PRODUCT(deps_find_witness_steps++); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 if (is_participant(impl)) {
5998
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1305 if (!participants_hide_witnesses) {
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1306 ADD_SUBCLASS_CHAIN(impl);
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1307 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 } else if (is_witness(impl) && !ignore_witness(impl)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 return impl;
5998
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1310 } else {
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1311 ADD_SUBCLASS_CHAIN(impl);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1314
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 // Recursively process each non-trivial sibling chain.
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 while (chaini > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 Klass* chain = chains[--chaini];
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1318 for (Klass* sub = chain; sub != NULL; sub = sub->next_sibling()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 if (do_counts) { NOT_PRODUCT(deps_find_witness_steps++); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 if (is_participant(sub)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 if (participants_hide_witnesses) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 // else fall through to process this guy's subclasses
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 } else if (is_witness(sub) && !ignore_witness(sub)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 return sub;
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 if (chaini < (VerifyDependencies? 2: CHAINMAX)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 // Fast path. (Partially disabled if VerifyDependencies.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 ADD_SUBCLASS_CHAIN(sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 // Worklist overflow. Do a recursive call. Should be rare.
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 // The recursive call will have its own worklist, of course.
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 // (Note that sub has already been tested, so that there is
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 // no need for the recursive call to re-test. That's handy,
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 // since the recursive call sees sub as the context_type.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 if (do_counts) { NOT_PRODUCT(deps_find_witness_recursions++); }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1336 Klass* witness = find_witness_anywhere(sub,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 participants_hide_witnesses,
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 /*top_level_call=*/ false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 if (witness != NULL) return witness;
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1343
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 // No witness found. The dependency remains unbroken.
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 #undef ADD_SUBCLASS_CHAIN
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1348
a61af66fc99e Initial load
duke
parents:
diff changeset
1349
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1350 bool Dependencies::is_concrete_klass(Klass* k) {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1351 if (k->is_abstract()) return false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 // %%% We could treat classes which are concrete but
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 // have not yet been instantiated as virtually abstract.
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 // This would require a deoptimization barrier on first instantiation.
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 //if (k->is_not_instantiated()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1358
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1359 bool Dependencies::is_concrete_method(Method* m) {
4060
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1360 // Statics are irrelevant to virtual call sites.
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1361 if (m->is_static()) return false;
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1362
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1363 // We could also return false if m does not yet appear to be
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1364 // executed, if the VM version supports this distinction also.
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6844
diff changeset
1365 return !m->is_abstract() &&
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6844
diff changeset
1366 !InstanceKlass::cast(m->method_holder())->is_interface();
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6844
diff changeset
1367 // TODO: investigate whether default methods should be
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6844
diff changeset
1368 // considered as "concrete" in this situation. For now they
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6844
diff changeset
1369 // are not.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1371
a61af66fc99e Initial load
duke
parents:
diff changeset
1372
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 Klass* Dependencies::find_finalizable_subclass(Klass* k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 if (k->is_interface()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 if (k->has_finalizer()) return k;
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 k = k->subklass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 while (k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 Klass* result = find_finalizable_subclass(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 if (result != NULL) return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 k = k->next_sibling();
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1384
a61af66fc99e Initial load
duke
parents:
diff changeset
1385
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 bool Dependencies::is_concrete_klass(ciInstanceKlass* k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 if (k->is_abstract()) return false;
4060
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1388 // We could also return false if k does not yet appear to be
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 // instantiated, if the VM version supports this distinction also.
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 //if (k->is_not_instantiated()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1393
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 bool Dependencies::is_concrete_method(ciMethod* m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 // Statics are irrelevant to virtual call sites.
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 if (m->is_static()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1397
4060
c9a03402fe56 7105305: assert check_method_context proper context
never
parents: 3894
diff changeset
1398 // We could also return false if m does not yet appear to be
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 // executed, if the VM version supports this distinction also.
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 return !m->is_abstract();
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1402
a61af66fc99e Initial load
duke
parents:
diff changeset
1403
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 bool Dependencies::has_finalizable_subclass(ciInstanceKlass* k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 return k->has_finalizable_subclass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1407
a61af66fc99e Initial load
duke
parents:
diff changeset
1408
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 // Any use of the contents (bytecodes) of a method must be
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 // marked by an "evol_method" dependency, if those contents
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 // can change. (Note: A method is always dependent on itself.)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1412 Klass* Dependencies::check_evol_method(Method* m) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 assert(must_be_in_vm(), "raw oops here");
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 // Did somebody do a JVMTI RedefineClasses while our backs were turned?
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 // Or is there a now a breakpoint?
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 // (Assumes compiled code cannot handle bkpts; change if UseFastBreakpoints.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 if (m->is_old()
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 || m->number_of_breakpoints() > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 return m->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1424
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 // This is a strong assertion: It is that the given type
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 // has no subtypes whatever. It is most useful for
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 // optimizing checks on reflected types or on array types.
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 // (Checks on types which are derived from real instances
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 // can be optimized more strongly than this, because we
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 // know that the checked type comes from a concrete type,
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 // and therefore we can disregard abstract types.)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1432 Klass* Dependencies::check_leaf_type(Klass* ctxk) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 assert(must_be_in_vm(), "raw oops here");
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 assert_locked_or_safepoint(Compile_lock);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1435 InstanceKlass* ctx = InstanceKlass::cast(ctxk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 Klass* sub = ctx->subklass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 if (sub != NULL) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1438 return sub;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 } else if (ctx->nof_implementors() != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 // if it is an interface, it must be unimplemented
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 // (if it is not an interface, nof_implementors is always zero)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1442 Klass* impl = ctx->implementor();
5998
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1443 assert(impl != NULL, "must be set");
49036505ab5f 7154670: The instanceKlass _implementors[] and _nof_implementors are not needed for non-interface klass.
jiangli
parents: 4772
diff changeset
1444 return impl;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1449
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 // Test the assertion that conck is the only concrete subtype* of ctxk.
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 // The type conck itself is allowed to have have further concrete subtypes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 // This allows the compiler to narrow occurrences of ctxk by conck,
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 // when dealing with the types of actual instances.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1454 Klass* Dependencies::check_abstract_with_unique_concrete_subtype(Klass* ctxk,
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1455 Klass* conck,
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1456 KlassDepChange* changes) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 ClassHierarchyWalker wf(conck);
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 return wf.find_witness_subtype(ctxk, changes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1460
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 // If a non-concrete class has no concrete subtypes, it is not (yet)
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 // instantiatable. This can allow the compiler to make some paths go
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 // dead, if they are gated by a test of the type.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1464 Klass* Dependencies::check_abstract_with_no_concrete_subtype(Klass* ctxk,
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1465 KlassDepChange* changes) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 // Find any concrete subtype, with no participants:
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 ClassHierarchyWalker wf;
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 return wf.find_witness_subtype(ctxk, changes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1470
a61af66fc99e Initial load
duke
parents:
diff changeset
1471
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 // If a concrete class has no concrete subtypes, it can always be
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 // exactly typed. This allows the use of a cheaper type test.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1474 Klass* Dependencies::check_concrete_with_no_concrete_subtype(Klass* ctxk,
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1475 KlassDepChange* changes) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 // Find any concrete subtype, with only the ctxk as participant:
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 ClassHierarchyWalker wf(ctxk);
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 return wf.find_witness_subtype(ctxk, changes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1480
a61af66fc99e Initial load
duke
parents:
diff changeset
1481
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 // Find the unique concrete proper subtype of ctxk, or NULL if there
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 // is more than one concrete proper subtype. If there are no concrete
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 // proper subtypes, return ctxk itself, whether it is concrete or not.
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 // The returned subtype is allowed to have have further concrete subtypes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 // That is, return CC1 for CX > CC1 > CC2, but NULL for CX > { CC1, CC2 }.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1487 Klass* Dependencies::find_unique_concrete_subtype(Klass* ctxk) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 ClassHierarchyWalker wf(ctxk); // Ignore ctxk when walking.
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 wf.record_witnesses(1); // Record one other witness when walking.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1490 Klass* wit = wf.find_witness_subtype(ctxk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 if (wit != NULL) return NULL; // Too many witnesses.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1492 Klass* conck = wf.participant(0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 if (conck == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 // Make sure the dependency mechanism will pass this discovery:
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 if (VerifyDependencies) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 // Turn off dependency tracing while actually testing deps.
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 FlagSetting fs(TraceDependencies, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 if (!Dependencies::is_concrete_klass(ctxk)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 guarantee(NULL ==
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 (void *)check_abstract_with_no_concrete_subtype(ctxk),
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 guarantee(NULL ==
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 (void *)check_concrete_with_no_concrete_subtype(ctxk),
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 return ctxk; // Return ctxk as a flag for "no subtypes".
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 // Make sure the dependency mechanism will pass this discovery:
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 if (VerifyDependencies) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 // Turn off dependency tracing while actually testing deps.
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 FlagSetting fs(TraceDependencies, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 if (!Dependencies::is_concrete_klass(ctxk)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 guarantee(NULL == (void *)
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 check_abstract_with_unique_concrete_subtype(ctxk, conck),
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 return conck;
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1527
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 // Test the assertion that the k[12] are the only concrete subtypes of ctxk,
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 // except possibly for further subtypes of k[12] themselves.
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 // The context type must be abstract. The types k1 and k2 are themselves
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 // allowed to have further concrete subtypes.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1532 Klass* Dependencies::check_abstract_with_exclusive_concrete_subtypes(
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1533 Klass* ctxk,
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1534 Klass* k1,
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1535 Klass* k2,
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1536 KlassDepChange* changes) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 ClassHierarchyWalker wf;
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 wf.add_participant(k1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 wf.add_participant(k2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 return wf.find_witness_subtype(ctxk, changes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1542
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 // Search ctxk for concrete implementations. If there are klen or fewer,
a61af66fc99e Initial load
duke
parents:
diff changeset
1544 // pack them into the given array and return the number.
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 // Otherwise, return -1, meaning the given array would overflow.
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 // (Note that a return of 0 means there are exactly no concrete subtypes.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 // In this search, if ctxk is concrete, it will be reported alone.
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 // For any type CC reported, no proper subtypes of CC will be reported.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1549 int Dependencies::find_exclusive_concrete_subtypes(Klass* ctxk,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 int klen,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1551 Klass* karray[]) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 ClassHierarchyWalker wf;
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 wf.record_witnesses(klen);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1554 Klass* wit = wf.find_witness_subtype(ctxk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 if (wit != NULL) return -1; // Too many witnesses.
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 int num = wf.num_participants();
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 assert(num <= klen, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 // Pack the result array with the good news.
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 for (int i = 0; i < num; i++)
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 karray[i] = wf.participant(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 // Make sure the dependency mechanism will pass this discovery:
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 if (VerifyDependencies) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 // Turn off dependency tracing while actually testing deps.
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 FlagSetting fs(TraceDependencies, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 switch (Dependencies::is_concrete_klass(ctxk)? -1: num) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 case -1: // ctxk was itself concrete
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 guarantee(num == 1 && karray[0] == ctxk, "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 case 0:
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 guarantee(NULL == (void *)check_abstract_with_no_concrete_subtype(ctxk),
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 case 1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 guarantee(NULL == (void *)
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 check_abstract_with_unique_concrete_subtype(ctxk, karray[0]),
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 case 2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 guarantee(NULL == (void *)
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 check_abstract_with_exclusive_concrete_subtypes(ctxk,
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 karray[0],
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 karray[1]),
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 ShouldNotReachHere(); // klen > 2 yet supported
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 return num;
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1593
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 // If a class (or interface) has a unique concrete method uniqm, return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 // Otherwise, return a class that contains an interfering method.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1596 Klass* Dependencies::check_unique_concrete_method(Klass* ctxk, Method* uniqm,
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1597 KlassDepChange* changes) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 // Here is a missing optimization: If uniqm->is_final(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 // we don't really need to search beneath it for overrides.
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 // This is probably not important, since we don't use dependencies
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 // to track final methods. (They can't be "definalized".)
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 ClassHierarchyWalker wf(uniqm->method_holder(), uniqm);
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 return wf.find_witness_definer(ctxk, changes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1605
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 // Find the set of all non-abstract methods under ctxk that match m.
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 // (The method m must be defined or inherited in ctxk.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 // Include m itself in the set, unless it is abstract.
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 // If this set has exactly one element, return that element.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1610 Method* Dependencies::find_unique_concrete_method(Klass* ctxk, Method* m) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 ClassHierarchyWalker wf(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 assert(wf.check_method_context(ctxk, m), "proper context");
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 wf.record_witnesses(1);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1614 Klass* wit = wf.find_witness_definer(ctxk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 if (wit != NULL) return NULL; // Too many witnesses.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1616 Method* fm = wf.found_method(0); // Will be NULL if num_parts == 0.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 if (Dependencies::is_concrete_method(m)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 if (fm == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 // It turns out that m was always the only implementation.
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 fm = m;
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 } else if (fm != m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 // Two conflicting implementations after all.
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 // (This can happen if m is inherited into ctxk and fm overrides it.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 // Make sure the dependency mechanism will pass this discovery:
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 if (VerifyDependencies && fm != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 guarantee(NULL == (void *)check_unique_concrete_method(ctxk, fm),
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 return fm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1636
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1637 Klass* Dependencies::check_exclusive_concrete_methods(Klass* ctxk,
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1638 Method* m1,
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1639 Method* m2,
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1640 KlassDepChange* changes) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 ClassHierarchyWalker wf(m1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 wf.add_participant(m1->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 wf.add_participant(m2->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 return wf.find_witness_definer(ctxk, changes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1646
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 // Find the set of all non-abstract methods under ctxk that match m[0].
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 // (The method m[0] must be defined or inherited in ctxk.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 // Include m itself in the set, unless it is abstract.
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 // Fill the given array m[0..(mlen-1)] with this set, and return the length.
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 // (The length may be zero if no concrete methods are found anywhere.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 // If there are too many concrete methods to fit in marray, return -1.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1653 int Dependencies::find_exclusive_concrete_methods(Klass* ctxk,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 int mlen,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1655 Method* marray[]) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1656 Method* m0 = marray[0];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 ClassHierarchyWalker wf(m0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 assert(wf.check_method_context(ctxk, m0), "proper context");
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 wf.record_witnesses(mlen);
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 bool participants_hide_witnesses = true;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1661 Klass* wit = wf.find_witness_definer(ctxk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 if (wit != NULL) return -1; // Too many witnesses.
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 int num = wf.num_participants();
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 assert(num <= mlen, "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 // Keep track of whether m is also part of the result set.
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 int mfill = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 assert(marray[mfill] == m0, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 if (Dependencies::is_concrete_method(m0))
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 mfill++; // keep m0 as marray[0], the first result
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 for (int i = 0; i < num; i++) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1671 Method* fm = wf.found_method(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1672 if (fm == m0) continue; // Already put this guy in the list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 if (mfill == mlen) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 return -1; // Oops. Too many methods after all!
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 marray[mfill++] = fm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 // Make sure the dependency mechanism will pass this discovery:
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 if (VerifyDependencies) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 // Turn off dependency tracing while actually testing deps.
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 FlagSetting fs(TraceDependencies, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 switch (mfill) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 case 1:
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 guarantee(NULL == (void *)check_unique_concrete_method(ctxk, marray[0]),
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 case 2:
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 guarantee(NULL == (void *)
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 check_exclusive_concrete_methods(ctxk, marray[0], marray[1]),
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 "verify dep.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 ShouldNotReachHere(); // mlen > 2 yet supported
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 return mfill;
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1700
a61af66fc99e Initial load
duke
parents:
diff changeset
1701
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1702 Klass* Dependencies::check_has_no_finalizable_subclasses(Klass* ctxk, KlassDepChange* changes) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1703 Klass* search_at = ctxk;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 if (changes != NULL)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1705 search_at = changes->new_type(); // just look at the new bit
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1706 return find_finalizable_subclass(search_at);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1708
a61af66fc99e Initial load
duke
parents:
diff changeset
1709
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1710 Klass* Dependencies::check_call_site_target_value(oop call_site, oop method_handle, CallSiteDepChange* changes) {
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1711 assert(call_site ->is_a(SystemDictionary::CallSite_klass()), "sanity");
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1712 assert(method_handle->is_a(SystemDictionary::MethodHandle_klass()), "sanity");
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1713 if (changes == NULL) {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1714 // Validate all CallSites
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1715 if (java_lang_invoke_CallSite::target(call_site) != method_handle)
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
1716 return call_site->klass(); // assertion failed
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1717 } else {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1718 // Validate the given CallSite
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1719 if (call_site == changes->call_site() && java_lang_invoke_CallSite::target(call_site) != changes->method_handle()) {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1720 assert(method_handle != changes->method_handle(), "must be");
3894
b27c72d69fd1 7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents: 3852
diff changeset
1721 return call_site->klass(); // assertion failed
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1722 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1723 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1724 return NULL; // assertion still valid
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1725 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1726
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1727
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1728 void Dependencies::DepStream::trace_and_log_witness(Klass* witness) {
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1729 if (witness != NULL) {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1730 if (TraceDependencies) {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1731 print_dependency(witness, /*verbose=*/ true);
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1732 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1733 // The following is a no-op unless logging is enabled:
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1734 log_dependency(witness);
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1735 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1736 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1737
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1738
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1739 Klass* Dependencies::DepStream::check_klass_dependency(KlassDepChange* changes) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 assert_locked_or_safepoint(Compile_lock);
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1741 Dependencies::check_valid_dependency_type(type());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1742
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1743 Klass* witness = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1744 switch (type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 case evol_method:
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 witness = check_evol_method(method_argument(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 case leaf_type:
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 witness = check_leaf_type(context_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 case abstract_with_unique_concrete_subtype:
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1752 witness = check_abstract_with_unique_concrete_subtype(context_type(), type_argument(1), changes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 case abstract_with_no_concrete_subtype:
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1755 witness = check_abstract_with_no_concrete_subtype(context_type(), changes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 case concrete_with_no_concrete_subtype:
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1758 witness = check_concrete_with_no_concrete_subtype(context_type(), changes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 case unique_concrete_method:
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1761 witness = check_unique_concrete_method(context_type(), method_argument(1), changes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 case abstract_with_exclusive_concrete_subtypes_2:
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1764 witness = check_abstract_with_exclusive_concrete_subtypes(context_type(), type_argument(1), type_argument(2), changes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 case exclusive_concrete_methods_2:
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1767 witness = check_exclusive_concrete_methods(context_type(), method_argument(1), method_argument(2), changes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 case no_finalizable_subclasses:
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1770 witness = check_has_no_finalizable_subclasses(context_type(), changes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 break;
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1772 default:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 witness = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 }
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1776 trace_and_log_witness(witness);
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1777 return witness;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1778 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1779
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1780
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1781 Klass* Dependencies::DepStream::check_call_site_dependency(CallSiteDepChange* changes) {
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1782 assert_locked_or_safepoint(Compile_lock);
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1783 Dependencies::check_valid_dependency_type(type());
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1784
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1785 Klass* witness = NULL;
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1786 switch (type()) {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1787 case call_site_target_value:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1788 witness = check_call_site_target_value(argument_oop(0), argument_oop(1), changes);
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1789 break;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1790 default:
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1791 witness = NULL;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1792 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1793 }
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1794 trace_and_log_witness(witness);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 return witness;
a61af66fc99e Initial load
duke
parents:
diff changeset
1796 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1797
a61af66fc99e Initial load
duke
parents:
diff changeset
1798
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1799 Klass* Dependencies::DepStream::spot_check_dependency_at(DepChange& changes) {
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1800 // Handle klass dependency
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1801 if (changes.is_klass_change() && changes.as_klass_change()->involves_context(context_type()))
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1802 return check_klass_dependency(changes.as_klass_change());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1803
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1804 // Handle CallSite dependency
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1805 if (changes.is_call_site_change())
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1806 return check_call_site_dependency(changes.as_call_site_change());
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1807
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1808 // irrelevant dependency; skip it
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1809 return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1811
a61af66fc99e Initial load
duke
parents:
diff changeset
1812
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1813 void DepChange::print() {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1814 int nsup = 0, nint = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 for (ContextStream str(*this); str.next(); ) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1816 Klass* k = str.klass();
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1817 switch (str.change_type()) {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1818 case Change_new_type:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1819 tty->print_cr(" dependee = %s", InstanceKlass::cast(k)->external_name());
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1820 break;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1821 case Change_new_sub:
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1822 if (!WizardMode) {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1823 ++nsup;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1824 } else {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1825 tty->print_cr(" context super = %s", InstanceKlass::cast(k)->external_name());
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1826 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1827 break;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1828 case Change_new_impl:
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1829 if (!WizardMode) {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1830 ++nint;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1831 } else {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1832 tty->print_cr(" context interface = %s", InstanceKlass::cast(k)->external_name());
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1833 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1834 break;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1835 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1836 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1837 if (nsup + nint != 0) {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1838 tty->print_cr(" context supers = %d, interfaces = %d", nsup, nint);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1839 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1841
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1842 void DepChange::ContextStream::start() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1843 Klass* new_type = _changes.is_klass_change() ? _changes.as_klass_change()->new_type() : (Klass*) NULL;
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1844 _change_type = (new_type == NULL ? NO_CHANGE : Start_Klass);
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1845 _klass = new_type;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1846 _ti_base = NULL;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1847 _ti_index = 0;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1848 _ti_limit = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1850
a61af66fc99e Initial load
duke
parents:
diff changeset
1851 bool DepChange::ContextStream::next() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 switch (_change_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 case Start_Klass: // initial state; _klass is the new type
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1854 _ti_base = InstanceKlass::cast(_klass)->transitive_interfaces();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 _ti_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 _change_type = Change_new_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 case Change_new_type:
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 // fall through:
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 _change_type = Change_new_sub;
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 case Change_new_sub:
54
d4a0f561287a 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 0
diff changeset
1862 // 6598190: brackets workaround Sun Studio C++ compiler bug 6629277
d4a0f561287a 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 0
diff changeset
1863 {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1864 _klass = InstanceKlass::cast(_klass)->super();
54
d4a0f561287a 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 0
diff changeset
1865 if (_klass != NULL) {
d4a0f561287a 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 0
diff changeset
1866 return true;
d4a0f561287a 6598190: JPRT tests fail when run with -XX:+CheckUnhandledOops
sbohne
parents: 0
diff changeset
1867 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 // else set up _ti_limit and fall through:
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 _ti_limit = (_ti_base == NULL) ? 0 : _ti_base->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 _change_type = Change_new_impl;
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 case Change_new_impl:
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 if (_ti_index < _ti_limit) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1874 _klass = _ti_base->at(_ti_index++);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 // fall through:
a61af66fc99e Initial load
duke
parents:
diff changeset
1878 _change_type = NO_CHANGE; // iterator is exhausted
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 case NO_CHANGE:
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1881 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1886
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1887 void KlassDepChange::initialize() {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1888 // entire transaction must be under this lock:
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1889 assert_lock_strong(Compile_lock);
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1890
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1891 // Mark all dependee and all its superclasses
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1892 // Mark transitive interfaces
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 for (ContextStream str(*this); str.next(); ) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1894 Klass* d = str.klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1895 assert(!InstanceKlass::cast(d)->is_marked_dependent(), "checking");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1896 InstanceKlass::cast(d)->set_is_marked_dependent(true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 }
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1898 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1899
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1900 KlassDepChange::~KlassDepChange() {
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1901 // Unmark all dependee and all its superclasses
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1902 // Unmark transitive interfaces
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1903 for (ContextStream str(*this); str.next(); ) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1904 Klass* d = str.klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1905 InstanceKlass::cast(d)->set_is_marked_dependent(false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1908
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1909 bool KlassDepChange::involves_context(Klass* k) {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1910 if (k == NULL || !k->oop_is_instance()) {
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1911 return false;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1912 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5998
diff changeset
1913 InstanceKlass* ik = InstanceKlass::cast(k);
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1914 bool is_contained = ik->is_marked_dependent();
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1915 assert(is_contained == new_type()->is_subtype_of(k),
3852
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1916 "correct marking of potential context types");
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1917 return is_contained;
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1918 }
fdb992d83a87 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 2426
diff changeset
1919
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 void Dependencies::print_statistics() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 if (deps_find_witness_print != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 // Call one final time, to flush out the data.
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 deps_find_witness_print = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1925 count_find_witness_calls();
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 #endif