annotate src/share/vm/code/dependencies.cpp @ 23732:5dae5deb92fb

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