author | lfoltan |
Mon, 21 Oct 2019 13:13:16 -0400 | |
changeset 58722 | cba8afa5cfed |
parent 58689 | 72e605a88500 |
child 58760 | 1f7f707c1aa9 |
permissions | -rw-r--r-- |
14385 | 1 |
/* |
53432
1ec56532ae0c
8217424: Remove the idempotent parameter to Method::sort_methods
iklam
parents:
51444
diff
changeset
|
2 |
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved. |
14385 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "precompiled.hpp" |
|
26 |
#include "classfile/bytecodeAssembler.hpp" |
|
27 |
#include "classfile/defaultMethods.hpp" |
|
28 |
#include "classfile/symbolTable.hpp" |
|
48463
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
29 |
#include "classfile/systemDictionary.hpp" |
33736
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
30 |
#include "logging/log.hpp" |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
31 |
#include "logging/logStream.hpp" |
14385 | 32 |
#include "memory/allocation.hpp" |
33 |
#include "memory/metadataFactory.hpp" |
|
34 |
#include "memory/resourceArea.hpp" |
|
54786 | 35 |
#include "memory/universe.hpp" |
34666 | 36 |
#include "runtime/handles.inline.hpp" |
14385 | 37 |
#include "runtime/signature.hpp" |
38 |
#include "runtime/thread.hpp" |
|
39 |
#include "oops/instanceKlass.hpp" |
|
40 |
#include "oops/klass.hpp" |
|
41 |
#include "oops/method.hpp" |
|
42 |
#include "utilities/accessFlags.hpp" |
|
43 |
#include "utilities/exceptions.hpp" |
|
44 |
#include "utilities/ostream.hpp" |
|
45 |
#include "utilities/pair.hpp" |
|
46 |
#include "utilities/resourceHash.hpp" |
|
47 |
||
48 |
typedef enum { QUALIFIED, DISQUALIFIED } QualifiedState; |
|
49 |
||
50 |
// Because we use an iterative algorithm when iterating over the type |
|
51 |
// hierarchy, we can't use traditional scoped objects which automatically do |
|
52 |
// cleanup in the destructor when the scope is exited. PseudoScope (and |
|
53 |
// PseudoScopeMark) provides a similar functionality, but for when you want a |
|
54 |
// scoped object in non-stack memory (such as in resource memory, as we do |
|
55 |
// here). You've just got to remember to call 'destroy()' on the scope when |
|
56 |
// leaving it (and marks have to be explicitly added). |
|
57 |
class PseudoScopeMark : public ResourceObj { |
|
58 |
public: |
|
59 |
virtual void destroy() = 0; |
|
60 |
}; |
|
61 |
||
62 |
class PseudoScope : public ResourceObj { |
|
63 |
private: |
|
64 |
GrowableArray<PseudoScopeMark*> _marks; |
|
65 |
public: |
|
66 |
||
67 |
static PseudoScope* cast(void* data) { |
|
68 |
return static_cast<PseudoScope*>(data); |
|
69 |
} |
|
70 |
||
71 |
void add_mark(PseudoScopeMark* psm) { |
|
72 |
_marks.append(psm); |
|
73 |
} |
|
74 |
||
75 |
void destroy() { |
|
76 |
for (int i = 0; i < _marks.length(); ++i) { |
|
77 |
_marks.at(i)->destroy(); |
|
78 |
} |
|
79 |
} |
|
80 |
}; |
|
81 |
||
82 |
static void print_slot(outputStream* str, Symbol* name, Symbol* signature) { |
|
83 |
str->print("%s%s", name->as_C_string(), signature->as_C_string()); |
|
84 |
} |
|
85 |
||
86 |
static void print_method(outputStream* str, Method* mo, bool with_class=true) { |
|
87 |
if (with_class) { |
|
88 |
str->print("%s.", mo->klass_name()->as_C_string()); |
|
89 |
} |
|
90 |
print_slot(str, mo->name(), mo->signature()); |
|
91 |
} |
|
92 |
||
93 |
/** |
|
94 |
* Perform a depth-first iteration over the class hierarchy, applying |
|
95 |
* algorithmic logic as it goes. |
|
96 |
* |
|
97 |
* This class is one half of the inheritance hierarchy analysis mechanism. |
|
98 |
* It is meant to be used in conjunction with another class, the algorithm, |
|
99 |
* which is indicated by the ALGO template parameter. This class can be |
|
100 |
* paired with any algorithm class that provides the required methods. |
|
101 |
* |
|
102 |
* This class contains all the mechanics for iterating over the class hierarchy |
|
103 |
* starting at a particular root, without recursing (thus limiting stack growth |
|
104 |
* from this point). It visits each superclass (if present) and superinterface |
|
105 |
* in a depth-first manner, with callbacks to the ALGO class as each class is |
|
106 |
* encountered (visit()), The algorithm can cut-off further exploration of a |
|
107 |
* particular branch by returning 'false' from a visit() call. |
|
108 |
* |
|
109 |
* The ALGO class, must provide a visit() method, which each of which will be |
|
110 |
* called once for each node in the inheritance tree during the iteration. In |
|
111 |
* addition, it can provide a memory block via new_node_data(InstanceKlass*), |
|
112 |
* which it can use for node-specific storage (and access via the |
|
113 |
* current_data() and data_at_depth(int) methods). |
|
114 |
* |
|
115 |
* Bare minimum needed to be an ALGO class: |
|
116 |
* class Algo : public HierarchyVisitor<Algo> { |
|
117 |
* void* new_node_data(InstanceKlass* cls) { return NULL; } |
|
118 |
* void free_node_data(void* data) { return; } |
|
119 |
* bool visit() { return true; } |
|
120 |
* }; |
|
121 |
*/ |
|
122 |
template <class ALGO> |
|
123 |
class HierarchyVisitor : StackObj { |
|
124 |
private: |
|
125 |
||
126 |
class Node : public ResourceObj { |
|
127 |
public: |
|
128 |
InstanceKlass* _class; |
|
129 |
bool _super_was_visited; |
|
130 |
int _interface_index; |
|
131 |
void* _algorithm_data; |
|
132 |
||
133 |
Node(InstanceKlass* cls, void* data, bool visit_super) |
|
134 |
: _class(cls), _super_was_visited(!visit_super), |
|
135 |
_interface_index(0), _algorithm_data(data) {} |
|
136 |
||
137 |
int number_of_interfaces() { return _class->local_interfaces()->length(); } |
|
138 |
int interface_index() { return _interface_index; } |
|
139 |
void set_super_visited() { _super_was_visited = true; } |
|
140 |
void increment_visited_interface() { ++_interface_index; } |
|
141 |
void set_all_interfaces_visited() { |
|
142 |
_interface_index = number_of_interfaces(); |
|
143 |
} |
|
144 |
bool has_visited_super() { return _super_was_visited; } |
|
145 |
bool has_visited_all_interfaces() { |
|
146 |
return interface_index() >= number_of_interfaces(); |
|
147 |
} |
|
148 |
InstanceKlass* interface_at(int index) { |
|
149 |
return InstanceKlass::cast(_class->local_interfaces()->at(index)); |
|
150 |
} |
|
151 |
InstanceKlass* next_super() { return _class->java_super(); } |
|
152 |
InstanceKlass* next_interface() { |
|
153 |
return interface_at(interface_index()); |
|
154 |
} |
|
155 |
}; |
|
156 |
||
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
157 |
bool _visited_Object; |
14385 | 158 |
GrowableArray<Node*> _path; |
159 |
||
160 |
Node* current_top() const { return _path.top(); } |
|
161 |
bool has_more_nodes() const { return !_path.is_empty(); } |
|
162 |
void push(InstanceKlass* cls, void* data) { |
|
163 |
assert(cls != NULL, "Requires a valid instance class"); |
|
164 |
Node* node = new Node(cls, data, has_super(cls)); |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
165 |
if (cls == SystemDictionary::Object_klass()) { |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
166 |
_visited_Object = true; |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
167 |
} |
14385 | 168 |
_path.push(node); |
169 |
} |
|
170 |
void pop() { _path.pop(); } |
|
171 |
||
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
172 |
// Since the starting point can be an interface, we must ensure we catch |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
173 |
// j.l.Object as the super once in those cases. The _visited_Object flag |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
174 |
// only ensures we don't then repeatedly enqueue Object for each interface |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
175 |
// in the class hierarchy. |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
176 |
bool has_super(InstanceKlass* cls) { |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
177 |
return cls->super() != NULL && (!_visited_Object || !cls->is_interface()); |
14385 | 178 |
} |
179 |
||
180 |
Node* node_at_depth(int i) const { |
|
181 |
return (i >= _path.length()) ? NULL : _path.at(_path.length() - i - 1); |
|
182 |
} |
|
183 |
||
184 |
protected: |
|
185 |
||
186 |
// Accessors available to the algorithm |
|
187 |
int current_depth() const { return _path.length() - 1; } |
|
188 |
||
189 |
InstanceKlass* class_at_depth(int i) { |
|
190 |
Node* n = node_at_depth(i); |
|
191 |
return n == NULL ? NULL : n->_class; |
|
192 |
} |
|
193 |
InstanceKlass* current_class() { return class_at_depth(0); } |
|
194 |
||
195 |
void* data_at_depth(int i) { |
|
196 |
Node* n = node_at_depth(i); |
|
197 |
return n == NULL ? NULL : n->_algorithm_data; |
|
198 |
} |
|
199 |
void* current_data() { return data_at_depth(0); } |
|
200 |
||
201 |
public: |
|
202 |
||
203 |
void run(InstanceKlass* root) { |
|
204 |
ALGO* algo = static_cast<ALGO*>(this); |
|
205 |
||
206 |
void* algo_data = algo->new_node_data(root); |
|
207 |
push(root, algo_data); |
|
208 |
bool top_needs_visit = true; |
|
209 |
||
210 |
do { |
|
211 |
Node* top = current_top(); |
|
212 |
if (top_needs_visit) { |
|
213 |
if (algo->visit() == false) { |
|
214 |
// algorithm does not want to continue along this path. Arrange |
|
215 |
// it so that this state is immediately popped off the stack |
|
216 |
top->set_super_visited(); |
|
217 |
top->set_all_interfaces_visited(); |
|
218 |
} |
|
219 |
top_needs_visit = false; |
|
220 |
} |
|
221 |
||
222 |
if (top->has_visited_super() && top->has_visited_all_interfaces()) { |
|
223 |
algo->free_node_data(top->_algorithm_data); |
|
224 |
pop(); |
|
225 |
} else { |
|
226 |
InstanceKlass* next = NULL; |
|
227 |
if (top->has_visited_super() == false) { |
|
228 |
next = top->next_super(); |
|
229 |
top->set_super_visited(); |
|
230 |
} else { |
|
231 |
next = top->next_interface(); |
|
232 |
top->increment_visited_interface(); |
|
233 |
} |
|
234 |
assert(next != NULL, "Otherwise we shouldn't be here"); |
|
235 |
algo_data = algo->new_node_data(next); |
|
236 |
push(next, algo_data); |
|
237 |
top_needs_visit = true; |
|
238 |
} |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
239 |
} while (has_more_nodes()); |
14385 | 240 |
} |
241 |
}; |
|
242 |
||
243 |
class PrintHierarchy : public HierarchyVisitor<PrintHierarchy> { |
|
33736
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
244 |
private: |
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
245 |
outputStream* _st; |
14385 | 246 |
public: |
247 |
bool visit() { |
|
248 |
InstanceKlass* cls = current_class(); |
|
33736
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
249 |
streamIndentor si(_st, current_depth() * 2); |
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
250 |
_st->indent().print_cr("%s", cls->name()->as_C_string()); |
14385 | 251 |
return true; |
252 |
} |
|
253 |
||
254 |
void* new_node_data(InstanceKlass* cls) { return NULL; } |
|
255 |
void free_node_data(void* data) { return; } |
|
33736
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
256 |
|
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
257 |
PrintHierarchy(outputStream* st = tty) : _st(st) {} |
14385 | 258 |
}; |
259 |
||
260 |
// Used to register InstanceKlass objects and all related metadata structures |
|
261 |
// (Methods, ConstantPools) as "in-use" by the current thread so that they can't |
|
262 |
// be deallocated by class redefinition while we're using them. The classes are |
|
263 |
// de-registered when this goes out of scope. |
|
264 |
// |
|
265 |
// Once a class is registered, we need not bother with methodHandles or |
|
266 |
// constantPoolHandles for it's associated metadata. |
|
267 |
class KeepAliveRegistrar : public StackObj { |
|
268 |
private: |
|
269 |
Thread* _thread; |
|
270 |
GrowableArray<ConstantPool*> _keep_alive; |
|
271 |
||
272 |
public: |
|
273 |
KeepAliveRegistrar(Thread* thread) : _thread(thread), _keep_alive(20) { |
|
274 |
assert(thread == Thread::current(), "Must be current thread"); |
|
275 |
} |
|
276 |
||
277 |
~KeepAliveRegistrar() { |
|
278 |
for (int i = _keep_alive.length() - 1; i >= 0; --i) { |
|
279 |
ConstantPool* cp = _keep_alive.at(i); |
|
280 |
int idx = _thread->metadata_handles()->find_from_end(cp); |
|
281 |
assert(idx > 0, "Must be in the list"); |
|
282 |
_thread->metadata_handles()->remove_at(idx); |
|
283 |
} |
|
284 |
} |
|
285 |
||
286 |
// Register a class as 'in-use' by the thread. It's fine to register a class |
|
287 |
// multiple times (though perhaps inefficient) |
|
288 |
void register_class(InstanceKlass* ik) { |
|
289 |
ConstantPool* cp = ik->constants(); |
|
290 |
_keep_alive.push(cp); |
|
291 |
_thread->metadata_handles()->push(cp); |
|
292 |
} |
|
293 |
}; |
|
294 |
||
295 |
class KeepAliveVisitor : public HierarchyVisitor<KeepAliveVisitor> { |
|
296 |
private: |
|
297 |
KeepAliveRegistrar* _registrar; |
|
298 |
||
299 |
public: |
|
300 |
KeepAliveVisitor(KeepAliveRegistrar* registrar) : _registrar(registrar) {} |
|
301 |
||
302 |
void* new_node_data(InstanceKlass* cls) { return NULL; } |
|
303 |
void free_node_data(void* data) { return; } |
|
304 |
||
305 |
bool visit() { |
|
306 |
_registrar->register_class(current_class()); |
|
307 |
return true; |
|
308 |
} |
|
309 |
}; |
|
310 |
||
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
311 |
|
14385 | 312 |
// A method family contains a set of all methods that implement a single |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
313 |
// erased method. As members of the set are collected while walking over the |
14385 | 314 |
// hierarchy, they are tagged with a qualification state. The qualification |
315 |
// state for an erased method is set to disqualified if there exists a path |
|
316 |
// from the root of hierarchy to the method that contains an interleaving |
|
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
317 |
// erased method defined in an interface. |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
318 |
|
14385 | 319 |
class MethodFamily : public ResourceObj { |
320 |
private: |
|
321 |
||
322 |
GrowableArray<Pair<Method*,QualifiedState> > _members; |
|
323 |
ResourceHashtable<Method*, int> _member_index; |
|
324 |
||
325 |
Method* _selected_target; // Filled in later, if a unique target exists |
|
326 |
Symbol* _exception_message; // If no unique target is found |
|
20284
595a25ab9474
8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents:
19966
diff
changeset
|
327 |
Symbol* _exception_name; // If no unique target is found |
14385 | 328 |
|
329 |
bool contains_method(Method* method) { |
|
330 |
int* lookup = _member_index.get(method); |
|
331 |
return lookup != NULL; |
|
332 |
} |
|
333 |
||
334 |
void add_method(Method* method, QualifiedState state) { |
|
335 |
Pair<Method*,QualifiedState> entry(method, state); |
|
336 |
_member_index.put(method, _members.length()); |
|
337 |
_members.append(entry); |
|
338 |
} |
|
339 |
||
340 |
void disqualify_method(Method* method) { |
|
341 |
int* index = _member_index.get(method); |
|
16379
02ed75a9a421
8009578: [parfait] Null pointer deference in hotspot/src/share/vm/classfile/defaultMethods.cpp
morris
parents:
15601
diff
changeset
|
342 |
guarantee(index != NULL && *index >= 0 && *index < _members.length(), "bad index"); |
14385 | 343 |
_members.at(*index).second = DISQUALIFIED; |
344 |
} |
|
345 |
||
346 |
Symbol* generate_no_defaults_message(TRAPS) const; |
|
22232
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
347 |
Symbol* generate_method_message(Symbol *klass_name, Method* method, TRAPS) const; |
14385 | 348 |
Symbol* generate_conflicts_message(GrowableArray<Method*>* methods, TRAPS) const; |
349 |
||
350 |
public: |
|
351 |
||
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
352 |
MethodFamily() |
20284
595a25ab9474
8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents:
19966
diff
changeset
|
353 |
: _selected_target(NULL), _exception_message(NULL), _exception_name(NULL) {} |
14385 | 354 |
|
355 |
void set_target_if_empty(Method* m) { |
|
356 |
if (_selected_target == NULL && !m->is_overpass()) { |
|
357 |
_selected_target = m; |
|
358 |
} |
|
359 |
} |
|
360 |
||
361 |
void record_qualified_method(Method* m) { |
|
362 |
// If the method already exists in the set as qualified, this operation is |
|
363 |
// redundant. If it already exists as disqualified, then we leave it as |
|
364 |
// disqualfied. Thus we only add to the set if it's not already in the |
|
365 |
// set. |
|
366 |
if (!contains_method(m)) { |
|
367 |
add_method(m, QUALIFIED); |
|
368 |
} |
|
369 |
} |
|
370 |
||
371 |
void record_disqualified_method(Method* m) { |
|
372 |
// If not in the set, add it as disqualified. If it's already in the set, |
|
373 |
// then set the state to disqualified no matter what the previous state was. |
|
374 |
if (!contains_method(m)) { |
|
375 |
add_method(m, DISQUALIFIED); |
|
376 |
} else { |
|
377 |
disqualify_method(m); |
|
378 |
} |
|
379 |
} |
|
380 |
||
381 |
bool has_target() const { return _selected_target != NULL; } |
|
382 |
bool throws_exception() { return _exception_message != NULL; } |
|
383 |
||
384 |
Method* get_selected_target() { return _selected_target; } |
|
385 |
Symbol* get_exception_message() { return _exception_message; } |
|
20284
595a25ab9474
8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents:
19966
diff
changeset
|
386 |
Symbol* get_exception_name() { return _exception_name; } |
14385 | 387 |
|
388 |
// Either sets the target or the exception error message |
|
389 |
void determine_target(InstanceKlass* root, TRAPS) { |
|
390 |
if (has_target() || throws_exception()) { |
|
391 |
return; |
|
392 |
} |
|
393 |
||
21556
e75cd34a59e0
8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents:
21516
diff
changeset
|
394 |
// Qualified methods are maximally-specific methods |
e75cd34a59e0
8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents:
21516
diff
changeset
|
395 |
// These include public, instance concrete (=default) and abstract methods |
14385 | 396 |
GrowableArray<Method*> qualified_methods; |
21516
8fa5308ab970
8027304: Lambda: inheriting abstract + 1 default -> default, not ICCE
acorn
parents:
20710
diff
changeset
|
397 |
int num_defaults = 0; |
8fa5308ab970
8027304: Lambda: inheriting abstract + 1 default -> default, not ICCE
acorn
parents:
20710
diff
changeset
|
398 |
int default_index = -1; |
21556
e75cd34a59e0
8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents:
21516
diff
changeset
|
399 |
int qualified_index = -1; |
14385 | 400 |
for (int i = 0; i < _members.length(); ++i) { |
401 |
Pair<Method*,QualifiedState> entry = _members.at(i); |
|
402 |
if (entry.second == QUALIFIED) { |
|
403 |
qualified_methods.append(entry.first); |
|
21556
e75cd34a59e0
8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents:
21516
diff
changeset
|
404 |
qualified_index++; |
21516
8fa5308ab970
8027304: Lambda: inheriting abstract + 1 default -> default, not ICCE
acorn
parents:
20710
diff
changeset
|
405 |
if (entry.first->is_default_method()) { |
8fa5308ab970
8027304: Lambda: inheriting abstract + 1 default -> default, not ICCE
acorn
parents:
20710
diff
changeset
|
406 |
num_defaults++; |
21556
e75cd34a59e0
8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents:
21516
diff
changeset
|
407 |
default_index = qualified_index; |
e75cd34a59e0
8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents:
21516
diff
changeset
|
408 |
|
21516
8fa5308ab970
8027304: Lambda: inheriting abstract + 1 default -> default, not ICCE
acorn
parents:
20710
diff
changeset
|
409 |
} |
14385 | 410 |
} |
411 |
} |
|
412 |
||
22232
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
413 |
if (num_defaults == 0) { |
22493
af3de4cee5e5
8031059: invokestatic: ICCE trying to invoke static method when it clashes with an abstract method inherited from an interface
hseigel
parents:
22233
diff
changeset
|
414 |
// If the root klass has a static method with matching name and signature |
af3de4cee5e5
8031059: invokestatic: ICCE trying to invoke static method when it clashes with an abstract method inherited from an interface
hseigel
parents:
22233
diff
changeset
|
415 |
// then do not generate an overpass method because it will hide the |
af3de4cee5e5
8031059: invokestatic: ICCE trying to invoke static method when it clashes with an abstract method inherited from an interface
hseigel
parents:
22233
diff
changeset
|
416 |
// static method during resolution. |
23999
22eb7be3d99d
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents:
22493
diff
changeset
|
417 |
if (qualified_methods.length() == 0) { |
22eb7be3d99d
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents:
22493
diff
changeset
|
418 |
_exception_message = generate_no_defaults_message(CHECK); |
22eb7be3d99d
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents:
22493
diff
changeset
|
419 |
} else { |
22eb7be3d99d
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents:
22493
diff
changeset
|
420 |
assert(root != NULL, "Null root class"); |
22eb7be3d99d
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents:
22493
diff
changeset
|
421 |
_exception_message = generate_method_message(root->name(), qualified_methods.at(0), CHECK); |
22232
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
422 |
} |
23999
22eb7be3d99d
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents:
22493
diff
changeset
|
423 |
_exception_name = vmSymbols::java_lang_AbstractMethodError(); |
22493
af3de4cee5e5
8031059: invokestatic: ICCE trying to invoke static method when it clashes with an abstract method inherited from an interface
hseigel
parents:
22233
diff
changeset
|
424 |
|
21556
e75cd34a59e0
8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents:
21516
diff
changeset
|
425 |
// If only one qualified method is default, select that |
21516
8fa5308ab970
8027304: Lambda: inheriting abstract + 1 default -> default, not ICCE
acorn
parents:
20710
diff
changeset
|
426 |
} else if (num_defaults == 1) { |
8fa5308ab970
8027304: Lambda: inheriting abstract + 1 default -> default, not ICCE
acorn
parents:
20710
diff
changeset
|
427 |
_selected_target = qualified_methods.at(default_index); |
22493
af3de4cee5e5
8031059: invokestatic: ICCE trying to invoke static method when it clashes with an abstract method inherited from an interface
hseigel
parents:
22233
diff
changeset
|
428 |
|
23999
22eb7be3d99d
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents:
22493
diff
changeset
|
429 |
} else if (num_defaults > 1) { |
22493
af3de4cee5e5
8031059: invokestatic: ICCE trying to invoke static method when it clashes with an abstract method inherited from an interface
hseigel
parents:
22233
diff
changeset
|
430 |
_exception_message = generate_conflicts_message(&qualified_methods,CHECK); |
af3de4cee5e5
8031059: invokestatic: ICCE trying to invoke static method when it clashes with an abstract method inherited from an interface
hseigel
parents:
22233
diff
changeset
|
431 |
_exception_name = vmSymbols::java_lang_IncompatibleClassChangeError(); |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
432 |
LogTarget(Debug, defaultmethods) lt; |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
433 |
if (lt.is_enabled()) { |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
434 |
LogStream ls(lt); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
435 |
_exception_message->print_value_on(&ls); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
436 |
ls.cr(); |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
437 |
} |
14385 | 438 |
} |
439 |
} |
|
440 |
||
441 |
void print_selected(outputStream* str, int indent) const { |
|
442 |
assert(has_target(), "Should be called otherwise"); |
|
443 |
streamIndentor si(str, indent * 2); |
|
444 |
str->indent().print("Selected method: "); |
|
445 |
print_method(str, _selected_target); |
|
19966
64732b96b5f5
8024647: Default method resolution with private superclass method
acorn
parents:
19690
diff
changeset
|
446 |
Klass* method_holder = _selected_target->method_holder(); |
64732b96b5f5
8024647: Default method resolution with private superclass method
acorn
parents:
19690
diff
changeset
|
447 |
if (!method_holder->is_interface()) { |
33736
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
448 |
str->print(" : in superclass"); |
19966
64732b96b5f5
8024647: Default method resolution with private superclass method
acorn
parents:
19690
diff
changeset
|
449 |
} |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
23999
diff
changeset
|
450 |
str->cr(); |
14385 | 451 |
} |
452 |
||
453 |
void print_exception(outputStream* str, int indent) { |
|
454 |
assert(throws_exception(), "Should be called otherwise"); |
|
20284
595a25ab9474
8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents:
19966
diff
changeset
|
455 |
assert(_exception_name != NULL, "exception_name should be set"); |
14385 | 456 |
streamIndentor si(str, indent * 2); |
20284
595a25ab9474
8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents:
19966
diff
changeset
|
457 |
str->indent().print_cr("%s: %s", _exception_name->as_C_string(), _exception_message->as_C_string()); |
14385 | 458 |
} |
459 |
}; |
|
460 |
||
461 |
Symbol* MethodFamily::generate_no_defaults_message(TRAPS) const { |
|
54847
59ea39bb2809
8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents:
54786
diff
changeset
|
462 |
return SymbolTable::new_symbol("No qualifying defaults found"); |
14385 | 463 |
} |
464 |
||
22232
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
465 |
Symbol* MethodFamily::generate_method_message(Symbol *klass_name, Method* method, TRAPS) const { |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
466 |
stringStream ss; |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
467 |
ss.print("Method "); |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
468 |
Symbol* name = method->name(); |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
469 |
Symbol* signature = method->signature(); |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
470 |
ss.write((const char*)klass_name->bytes(), klass_name->utf8_length()); |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
471 |
ss.print("."); |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
472 |
ss.write((const char*)name->bytes(), name->utf8_length()); |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
473 |
ss.write((const char*)signature->bytes(), signature->utf8_length()); |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
474 |
ss.print(" is abstract"); |
54847
59ea39bb2809
8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents:
54786
diff
changeset
|
475 |
return SymbolTable::new_symbol(ss.base(), (int)ss.size()); |
22232
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
476 |
} |
26acfad336c0
8027804: JCK resolveMethod test fails expecting AbstractMethodError
hseigel
parents:
21913
diff
changeset
|
477 |
|
14385 | 478 |
Symbol* MethodFamily::generate_conflicts_message(GrowableArray<Method*>* methods, TRAPS) const { |
479 |
stringStream ss; |
|
480 |
ss.print("Conflicting default methods:"); |
|
481 |
for (int i = 0; i < methods->length(); ++i) { |
|
482 |
Method* method = methods->at(i); |
|
483 |
Symbol* klass = method->klass_name(); |
|
484 |
Symbol* name = method->name(); |
|
485 |
ss.print(" "); |
|
486 |
ss.write((const char*)klass->bytes(), klass->utf8_length()); |
|
487 |
ss.print("."); |
|
488 |
ss.write((const char*)name->bytes(), name->utf8_length()); |
|
489 |
} |
|
54847
59ea39bb2809
8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents:
54786
diff
changeset
|
490 |
return SymbolTable::new_symbol(ss.base(), (int)ss.size()); |
14385 | 491 |
} |
492 |
||
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
493 |
|
14385 | 494 |
class StateRestorer; |
495 |
||
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
496 |
// StatefulMethodFamily is a wrapper around a MethodFamily that maintains the |
14385 | 497 |
// qualification state during hierarchy visitation, and applies that state |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
498 |
// when adding members to the MethodFamily |
14385 | 499 |
class StatefulMethodFamily : public ResourceObj { |
500 |
friend class StateRestorer; |
|
501 |
private: |
|
502 |
QualifiedState _qualification_state; |
|
503 |
||
504 |
void set_qualification_state(QualifiedState state) { |
|
505 |
_qualification_state = state; |
|
506 |
} |
|
507 |
||
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
508 |
protected: |
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
509 |
MethodFamily _method_family; |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
510 |
|
14385 | 511 |
public: |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
512 |
StatefulMethodFamily() { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
513 |
_qualification_state = QUALIFIED; |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
514 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
515 |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
516 |
void set_target_if_empty(Method* m) { _method_family.set_target_if_empty(m); } |
14385 | 517 |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
518 |
MethodFamily* get_method_family() { return &_method_family; } |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
519 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
520 |
StateRestorer* record_method_and_dq_further(Method* mo); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
521 |
}; |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
522 |
|
14385 | 523 |
class StateRestorer : public PseudoScopeMark { |
524 |
private: |
|
525 |
StatefulMethodFamily* _method; |
|
526 |
QualifiedState _state_to_restore; |
|
527 |
public: |
|
528 |
StateRestorer(StatefulMethodFamily* dm, QualifiedState state) |
|
529 |
: _method(dm), _state_to_restore(state) {} |
|
530 |
~StateRestorer() { destroy(); } |
|
531 |
void restore_state() { _method->set_qualification_state(_state_to_restore); } |
|
532 |
virtual void destroy() { restore_state(); } |
|
533 |
}; |
|
534 |
||
535 |
StateRestorer* StatefulMethodFamily::record_method_and_dq_further(Method* mo) { |
|
536 |
StateRestorer* mark = new StateRestorer(this, _qualification_state); |
|
537 |
if (_qualification_state == QUALIFIED) { |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
538 |
_method_family.record_qualified_method(mo); |
14385 | 539 |
} else { |
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
540 |
_method_family.record_disqualified_method(mo); |
14385 | 541 |
} |
542 |
// Everything found "above"??? this method in the hierarchy walk is set to |
|
543 |
// disqualified |
|
544 |
set_qualification_state(DISQUALIFIED); |
|
545 |
return mark; |
|
546 |
} |
|
547 |
||
548 |
// Represents a location corresponding to a vtable slot for methods that |
|
549 |
// neither the class nor any of it's ancestors provide an implementaion. |
|
550 |
// Default methods may be present to fill this slot. |
|
551 |
class EmptyVtableSlot : public ResourceObj { |
|
552 |
private: |
|
553 |
Symbol* _name; |
|
554 |
Symbol* _signature; |
|
555 |
int _size_of_parameters; |
|
556 |
MethodFamily* _binding; |
|
557 |
||
558 |
public: |
|
559 |
EmptyVtableSlot(Method* method) |
|
560 |
: _name(method->name()), _signature(method->signature()), |
|
561 |
_size_of_parameters(method->size_of_parameters()), _binding(NULL) {} |
|
562 |
||
563 |
Symbol* name() const { return _name; } |
|
564 |
Symbol* signature() const { return _signature; } |
|
565 |
int size_of_parameters() const { return _size_of_parameters; } |
|
566 |
||
567 |
void bind_family(MethodFamily* lm) { _binding = lm; } |
|
568 |
bool is_bound() { return _binding != NULL; } |
|
569 |
MethodFamily* get_binding() { return _binding; } |
|
570 |
||
571 |
void print_on(outputStream* str) const { |
|
572 |
print_slot(str, name(), signature()); |
|
573 |
} |
|
574 |
}; |
|
575 |
||
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
576 |
static bool already_in_vtable_slots(GrowableArray<EmptyVtableSlot*>* slots, Method* m) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
577 |
bool found = false; |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
578 |
for (int j = 0; j < slots->length(); ++j) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
579 |
if (slots->at(j)->name() == m->name() && |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
580 |
slots->at(j)->signature() == m->signature() ) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
581 |
found = true; |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
582 |
break; |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
583 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
584 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
585 |
return found; |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
586 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
587 |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
588 |
static void find_empty_vtable_slots(GrowableArray<EmptyVtableSlot*>* slots, |
34666 | 589 |
InstanceKlass* klass, const GrowableArray<Method*>* mirandas, TRAPS) { |
14385 | 590 |
|
591 |
assert(klass != NULL, "Must be valid class"); |
|
592 |
||
593 |
// All miranda methods are obvious candidates |
|
594 |
for (int i = 0; i < mirandas->length(); ++i) { |
|
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
595 |
Method* m = mirandas->at(i); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
596 |
if (!already_in_vtable_slots(slots, m)) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
597 |
slots->append(new EmptyVtableSlot(m)); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
598 |
} |
14385 | 599 |
} |
600 |
||
601 |
// Also any overpasses in our superclasses, that we haven't implemented. |
|
602 |
// (can't use the vtable because it is not guaranteed to be initialized yet) |
|
603 |
InstanceKlass* super = klass->java_super(); |
|
604 |
while (super != NULL) { |
|
605 |
for (int i = 0; i < super->methods()->length(); ++i) { |
|
606 |
Method* m = super->methods()->at(i); |
|
21913
0e2fd7282ac6
8028438: static superclass method masks default methods
acorn
parents:
21556
diff
changeset
|
607 |
if (m->is_overpass() || m->is_static()) { |
14385 | 608 |
// m is a method that would have been a miranda if not for the |
609 |
// default method processing that occurred on behalf of our superclass, |
|
610 |
// so it's a method we want to re-examine in this new context. That is, |
|
611 |
// unless we have a real implementation of it in the current class. |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
612 |
if (!already_in_vtable_slots(slots, m)) { |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
613 |
Method *impl = klass->lookup_method(m->name(), m->signature()); |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
614 |
if (impl == NULL || impl->is_overpass() || impl->is_static()) { |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
615 |
slots->append(new EmptyVtableSlot(m)); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
616 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
617 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
618 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
619 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
620 |
|
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
621 |
// also any default methods in our superclasses |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
622 |
if (super->default_methods() != NULL) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
623 |
for (int i = 0; i < super->default_methods()->length(); ++i) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
624 |
Method* m = super->default_methods()->at(i); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
625 |
// m is a method that would have been a miranda if not for the |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
626 |
// default method processing that occurred on behalf of our superclass, |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
627 |
// so it's a method we want to re-examine in this new context. That is, |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
628 |
// unless we have a real implementation of it in the current class. |
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
629 |
if (!already_in_vtable_slots(slots, m)) { |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
630 |
Method* impl = klass->lookup_method(m->name(), m->signature()); |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
631 |
if (impl == NULL || impl->is_overpass() || impl->is_static()) { |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
632 |
slots->append(new EmptyVtableSlot(m)); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
633 |
} |
14385 | 634 |
} |
635 |
} |
|
636 |
} |
|
637 |
super = super->java_super(); |
|
638 |
} |
|
639 |
||
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
640 |
LogTarget(Debug, defaultmethods) lt; |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
641 |
if (lt.is_enabled()) { |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
642 |
lt.print("Slots that need filling:"); |
33736
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
643 |
ResourceMark rm; |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
644 |
LogStream ls(lt); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
645 |
streamIndentor si(&ls); |
14385 | 646 |
for (int i = 0; i < slots->length(); ++i) { |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
647 |
ls.indent(); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
648 |
slots->at(i)->print_on(&ls); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
649 |
ls.cr(); |
14385 | 650 |
} |
651 |
} |
|
652 |
} |
|
653 |
||
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
654 |
// Iterates over the superinterface type hierarchy looking for all methods |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
655 |
// with a specific erased signature. |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
656 |
class FindMethodsByErasedSig : public HierarchyVisitor<FindMethodsByErasedSig> { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
657 |
private: |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
658 |
// Context data |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
659 |
Symbol* _method_name; |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
660 |
Symbol* _method_signature; |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
661 |
StatefulMethodFamily* _family; |
48463
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
662 |
bool _cur_class_is_interface; |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
663 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
664 |
public: |
48463
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
665 |
FindMethodsByErasedSig(Symbol* name, Symbol* signature, bool is_interf) : |
51334
cc2c79d22508
8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents:
49677
diff
changeset
|
666 |
_method_name(name), _method_signature(signature), _family(NULL), |
cc2c79d22508
8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents:
49677
diff
changeset
|
667 |
_cur_class_is_interface(is_interf) {} |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
668 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
669 |
void get_discovered_family(MethodFamily** family) { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
670 |
if (_family != NULL) { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
671 |
*family = _family->get_method_family(); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
672 |
} else { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
673 |
*family = NULL; |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
674 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
675 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
676 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
677 |
void* new_node_data(InstanceKlass* cls) { return new PseudoScope(); } |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
678 |
void free_node_data(void* node_data) { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
679 |
PseudoScope::cast(node_data)->destroy(); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
680 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
681 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
682 |
// Find all methods on this hierarchy that match this |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
683 |
// method's erased (name, signature) |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
684 |
bool visit() { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
685 |
PseudoScope* scope = PseudoScope::cast(current_data()); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
686 |
InstanceKlass* iklass = current_class(); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
687 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
688 |
Method* m = iklass->find_method(_method_name, _method_signature); |
48463
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
689 |
// Private interface methods are not candidates for default methods. |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
690 |
// invokespecial to private interface methods doesn't use default method logic. |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
691 |
// Private class methods are not candidates for default methods. |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
692 |
// Private methods do not override default methods, so need to perform |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
693 |
// default method inheritance without including private methods. |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
694 |
// The overpasses are your supertypes' errors, we do not include them. |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
695 |
// Non-public methods in java.lang.Object are not candidates for default |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
696 |
// methods. |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
697 |
// Future: take access controls into account for superclass methods |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
698 |
if (m != NULL && !m->is_static() && !m->is_overpass() && !m->is_private() && |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
699 |
(!_cur_class_is_interface || !SystemDictionary::is_nonpublic_Object_method(m))) { |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
700 |
if (_family == NULL) { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
701 |
_family = new StatefulMethodFamily(); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
702 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
703 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
704 |
if (iklass->is_interface()) { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
705 |
StateRestorer* restorer = _family->record_method_and_dq_further(m); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
706 |
scope->add_mark(restorer); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
707 |
} else { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
708 |
// This is the rule that methods in classes "win" (bad word) over |
48463
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
709 |
// methods in interfaces. This works because of single inheritance. |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
710 |
// Private methods in classes do not "win", they will be found |
29871 | 711 |
// first on searching, but overriding for invokevirtual needs |
712 |
// to find default method candidates for the same signature |
|
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
713 |
_family->set_target_if_empty(m); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
714 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
715 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
716 |
return true; |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
717 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
718 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
719 |
}; |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
720 |
|
14385 | 721 |
|
722 |
||
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
723 |
static void create_defaults_and_exceptions( |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
724 |
GrowableArray<EmptyVtableSlot*>* slots, InstanceKlass* klass, TRAPS); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
725 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
726 |
static void generate_erased_defaults( |
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
727 |
InstanceKlass* klass, EmptyVtableSlot* slot, bool is_intf, TRAPS) { |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
728 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
729 |
// sets up a set of methods with the same exact erased signature |
48463
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47554
diff
changeset
|
730 |
FindMethodsByErasedSig visitor(slot->name(), slot->signature(), is_intf); |
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
731 |
visitor.run(klass); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
732 |
|
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
733 |
MethodFamily* family; |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
734 |
visitor.get_discovered_family(&family); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
735 |
if (family != NULL) { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
736 |
family->determine_target(klass, CHECK); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
737 |
slot->bind_family(family); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
738 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
739 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
740 |
|
14385 | 741 |
static void merge_in_new_methods(InstanceKlass* klass, |
742 |
GrowableArray<Method*>* new_methods, TRAPS); |
|
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
743 |
static void create_default_methods( InstanceKlass* klass, |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
744 |
GrowableArray<Method*>* new_methods, TRAPS); |
14385 | 745 |
|
746 |
// This is the guts of the default methods implementation. This is called just |
|
747 |
// after the classfile has been parsed if some ancestor has default methods. |
|
748 |
// |
|
47554
bc112140e089
8186092: Unnecessary loader constraints produced when there are multiple defaults
hseigel
parents:
47216
diff
changeset
|
749 |
// First it finds any name/signature slots that need any implementation (either |
14385 | 750 |
// because they are miranda or a superclass's implementation is an overpass |
19681
1b35da7b1d85
8012294: remove generic handling for default methods
acorn
parents:
18695
diff
changeset
|
751 |
// itself). For each slot, iterate over the hierarchy, to see if they contain a |
1b35da7b1d85
8012294: remove generic handling for default methods
acorn
parents:
18695
diff
changeset
|
752 |
// signature that matches the slot we are looking at. |
14385 | 753 |
// |
47554
bc112140e089
8186092: Unnecessary loader constraints produced when there are multiple defaults
hseigel
parents:
47216
diff
changeset
|
754 |
// For each slot filled, we either record the default method candidate in the |
bc112140e089
8186092: Unnecessary loader constraints produced when there are multiple defaults
hseigel
parents:
47216
diff
changeset
|
755 |
// klass default_methods list or, only to handle exception cases, we create an |
bc112140e089
8186092: Unnecessary loader constraints produced when there are multiple defaults
hseigel
parents:
47216
diff
changeset
|
756 |
// overpass method that throws an exception and add it to the klass methods list. |
19681
1b35da7b1d85
8012294: remove generic handling for default methods
acorn
parents:
18695
diff
changeset
|
757 |
// The JVM does not create bridges nor handle generic signatures here. |
14385 | 758 |
void DefaultMethods::generate_default_methods( |
34666 | 759 |
InstanceKlass* klass, const GrowableArray<Method*>* mirandas, TRAPS) { |
760 |
assert(klass != NULL, "invariant"); |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
761 |
assert(klass != SystemDictionary::Object_klass(), "Shouldn't be called for Object"); |
14385 | 762 |
|
763 |
// This resource mark is the bound for all memory allocation that takes |
|
764 |
// place during default method processing. After this goes out of scope, |
|
765 |
// all (Resource) objects' memory will be reclaimed. Be careful if adding an |
|
766 |
// embedded resource mark under here as that memory can't be used outside |
|
767 |
// whatever scope it's in. |
|
768 |
ResourceMark rm(THREAD); |
|
769 |
||
770 |
// Keep entire hierarchy alive for the duration of the computation |
|
34666 | 771 |
constantPoolHandle cp(THREAD, klass->constants()); |
14385 | 772 |
KeepAliveRegistrar keepAlive(THREAD); |
773 |
KeepAliveVisitor loadKeepAlive(&keepAlive); |
|
774 |
loadKeepAlive.run(klass); |
|
775 |
||
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
776 |
LogTarget(Debug, defaultmethods) lt; |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
777 |
if (lt.is_enabled()) { |
33736
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
778 |
ResourceMark rm; |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
779 |
lt.print("%s %s requires default method processing", |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
780 |
klass->is_interface() ? "Interface" : "Class", |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
781 |
klass->name()->as_klass_external_name()); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
782 |
LogStream ls(lt); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
783 |
PrintHierarchy printer(&ls); |
14385 | 784 |
printer.run(klass); |
785 |
} |
|
786 |
||
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
787 |
GrowableArray<EmptyVtableSlot*> empty_slots; |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
788 |
find_empty_vtable_slots(&empty_slots, klass, mirandas, CHECK); |
14385 | 789 |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
790 |
if (empty_slots.length() > 0) { |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
791 |
for (int i = 0; i < empty_slots.length(); ++i) { |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
792 |
EmptyVtableSlot* slot = empty_slots.at(i); |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
793 |
LogTarget(Debug, defaultmethods) lt; |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
794 |
if (lt.is_enabled()) { |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
795 |
LogStream ls(lt); |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
796 |
streamIndentor si(&ls, 2); |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
797 |
ls.indent().print("Looking for default methods for slot "); |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
798 |
slot->print_on(&ls); |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
799 |
ls.cr(); |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
800 |
} |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
801 |
generate_erased_defaults(klass, slot, klass->is_interface(), CHECK); |
14385 | 802 |
} |
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
803 |
log_debug(defaultmethods)("Creating defaults and overpasses..."); |
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
804 |
create_defaults_and_exceptions(&empty_slots, klass, CHECK); |
14385 | 805 |
} |
33736
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
806 |
log_debug(defaultmethods)("Default method processing complete"); |
14385 | 807 |
} |
808 |
||
20284
595a25ab9474
8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents:
19966
diff
changeset
|
809 |
static int assemble_method_error( |
595a25ab9474
8011311: Private interface methods. Default conflicts:ICCE. no erased_super_default.
acorn
parents:
19966
diff
changeset
|
810 |
BytecodeConstantPool* cp, BytecodeBuffer* buffer, Symbol* errorName, Symbol* message, TRAPS) { |
14385 | 811 |
|
812 |
Symbol* init = vmSymbols::object_initializer_name(); |
|
813 |
Symbol* sig = vmSymbols::string_void_signature(); |
|
814 |
||
815 |
BytecodeAssembler assem(buffer, cp); |
|
816 |
||
817 |
assem._new(errorName); |
|
818 |
assem.dup(); |
|
819 |
assem.load_string(message); |
|
820 |
assem.invokespecial(errorName, init, sig); |
|
821 |
assem.athrow(); |
|
822 |
||
823 |
return 3; // max stack size: [ exception, exception, string ] |
|
824 |
} |
|
825 |
||
826 |
static Method* new_method( |
|
827 |
BytecodeConstantPool* cp, BytecodeBuffer* bytecodes, Symbol* name, |
|
828 |
Symbol* sig, AccessFlags flags, int max_stack, int params, |
|
829 |
ConstMethod::MethodType mt, TRAPS) { |
|
830 |
||
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
831 |
address code_start = 0; |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
832 |
int code_length = 0; |
15601 | 833 |
InlineTableSizes sizes; |
14385 | 834 |
|
18695
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
835 |
if (bytecodes != NULL && bytecodes->length() > 0) { |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
836 |
code_start = static_cast<address>(bytecodes->adr_at(0)); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
837 |
code_length = bytecodes->length(); |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
838 |
} |
be902722fe0a
8013635: VM should no longer create bridges for generic signatures.
acorn
parents:
17859
diff
changeset
|
839 |
|
14385 | 840 |
Method* m = Method::allocate(cp->pool_holder()->class_loader_data(), |
15601 | 841 |
code_length, flags, &sizes, |
15102
0a86564e5f61
8004728: Add hotspot support for parameter reflection
coleenp
parents:
14586
diff
changeset
|
842 |
mt, CHECK_NULL); |
14385 | 843 |
|
844 |
m->set_constants(NULL); // This will get filled in later |
|
845 |
m->set_name_index(cp->utf8(name)); |
|
846 |
m->set_signature_index(cp->utf8(sig)); |
|
847 |
ResultTypeFinder rtf(sig); |
|
37480 | 848 |
m->constMethod()->set_result_type(rtf.type()); |
14385 | 849 |
m->set_size_of_parameters(params); |
850 |
m->set_max_stack(max_stack); |
|
851 |
m->set_max_locals(params); |
|
852 |
m->constMethod()->set_stackmap_data(NULL); |
|
853 |
m->set_code(code_start); |
|
854 |
||
855 |
return m; |
|
856 |
} |
|
857 |
||
858 |
static void switchover_constant_pool(BytecodeConstantPool* bpool, |
|
859 |
InstanceKlass* klass, GrowableArray<Method*>* new_methods, TRAPS) { |
|
860 |
||
861 |
if (new_methods->length() > 0) { |
|
862 |
ConstantPool* cp = bpool->create_constant_pool(CHECK); |
|
863 |
if (cp != klass->constants()) { |
|
49677 | 864 |
// Copy resolved anonymous class into new constant pool. |
51444
3e5d28e6de32
8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents:
51334
diff
changeset
|
865 |
if (klass->is_unsafe_anonymous()) { |
49677 | 866 |
cp->klass_at_put(klass->this_class_index(), klass); |
867 |
} |
|
14385 | 868 |
klass->class_loader_data()->add_to_deallocate_list(klass->constants()); |
869 |
klass->set_constants(cp); |
|
870 |
cp->set_pool_holder(klass); |
|
871 |
||
872 |
for (int i = 0; i < new_methods->length(); ++i) { |
|
873 |
new_methods->at(i)->set_constants(cp); |
|
874 |
} |
|
875 |
for (int i = 0; i < klass->methods()->length(); ++i) { |
|
876 |
Method* mo = klass->methods()->at(i); |
|
877 |
mo->set_constants(cp); |
|
878 |
} |
|
879 |
} |
|
880 |
} |
|
881 |
} |
|
882 |
||
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
883 |
// Create default_methods list for the current class. |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
884 |
// With the VM only processing erased signatures, the VM only |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
885 |
// creates an overpass in a conflict case or a case with no candidates. |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
886 |
// This allows virtual methods to override the overpass, but ensures |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
887 |
// that a local method search will find the exception rather than an abstract |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
888 |
// or default method that is not a valid candidate. |
47554
bc112140e089
8186092: Unnecessary loader constraints produced when there are multiple defaults
hseigel
parents:
47216
diff
changeset
|
889 |
// |
bc112140e089
8186092: Unnecessary loader constraints produced when there are multiple defaults
hseigel
parents:
47216
diff
changeset
|
890 |
// Note that if overpass method are ever created that are not exception |
bc112140e089
8186092: Unnecessary loader constraints produced when there are multiple defaults
hseigel
parents:
47216
diff
changeset
|
891 |
// throwing methods then the loader constraint checking logic for vtable and |
bc112140e089
8186092: Unnecessary loader constraints produced when there are multiple defaults
hseigel
parents:
47216
diff
changeset
|
892 |
// itable creation needs to be changed to check loader constraints for the |
bc112140e089
8186092: Unnecessary loader constraints produced when there are multiple defaults
hseigel
parents:
47216
diff
changeset
|
893 |
// overpass methods that do not throw exceptions. |
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
894 |
static void create_defaults_and_exceptions(GrowableArray<EmptyVtableSlot*>* slots, |
14385 | 895 |
InstanceKlass* klass, TRAPS) { |
896 |
||
897 |
GrowableArray<Method*> overpasses; |
|
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
898 |
GrowableArray<Method*> defaults; |
14385 | 899 |
BytecodeConstantPool bpool(klass->constants()); |
900 |
||
901 |
for (int i = 0; i < slots->length(); ++i) { |
|
902 |
EmptyVtableSlot* slot = slots->at(i); |
|
903 |
||
904 |
if (slot->is_bound()) { |
|
905 |
MethodFamily* method = slot->get_binding(); |
|
906 |
BytecodeBuffer buffer; |
|
907 |
||
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
908 |
LogTarget(Debug, defaultmethods) lt; |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
909 |
if (lt.is_enabled()) { |
41669
2091069b6851
8081800: AbstractMethodError when evaluating a private method in an interface via debugger
dholmes
parents:
37480
diff
changeset
|
910 |
ResourceMark rm(THREAD); |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
911 |
LogStream ls(lt); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
912 |
ls.print("for slot: "); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
913 |
slot->print_on(&ls); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
914 |
ls.cr(); |
14385 | 915 |
if (method->has_target()) { |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
916 |
method->print_selected(&ls, 1); |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
917 |
} else if (method->throws_exception()) { |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
42059
diff
changeset
|
918 |
method->print_exception(&ls, 1); |
14385 | 919 |
} |
920 |
} |
|
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
921 |
|
14385 | 922 |
if (method->has_target()) { |
923 |
Method* selected = method->get_selected_target(); |
|
19966
64732b96b5f5
8024647: Default method resolution with private superclass method
acorn
parents:
19690
diff
changeset
|
924 |
if (selected->method_holder()->is_interface()) { |
41669
2091069b6851
8081800: AbstractMethodError when evaluating a private method in an interface via debugger
dholmes
parents:
37480
diff
changeset
|
925 |
assert(!selected->is_private(), "pushing private interface method as default"); |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
926 |
defaults.push(selected); |
19966
64732b96b5f5
8024647: Default method resolution with private superclass method
acorn
parents:
19690
diff
changeset
|
927 |
} |
14385 | 928 |
} else if (method->throws_exception()) { |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
929 |
int max_stack = assemble_method_error(&bpool, &buffer, |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
930 |
method->get_exception_name(), method->get_exception_message(), CHECK); |
19966
64732b96b5f5
8024647: Default method resolution with private superclass method
acorn
parents:
19690
diff
changeset
|
931 |
AccessFlags flags = accessFlags_from( |
14385 | 932 |
JVM_ACC_PUBLIC | JVM_ACC_SYNTHETIC | JVM_ACC_BRIDGE); |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
933 |
Method* m = new_method(&bpool, &buffer, slot->name(), slot->signature(), |
14385 | 934 |
flags, max_stack, slot->size_of_parameters(), |
935 |
ConstMethod::OVERPASS, CHECK); |
|
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
936 |
// We push to the methods list: |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
937 |
// overpass methods which are exception throwing methods |
19966
64732b96b5f5
8024647: Default method resolution with private superclass method
acorn
parents:
19690
diff
changeset
|
938 |
if (m != NULL) { |
64732b96b5f5
8024647: Default method resolution with private superclass method
acorn
parents:
19690
diff
changeset
|
939 |
overpasses.push(m); |
64732b96b5f5
8024647: Default method resolution with private superclass method
acorn
parents:
19690
diff
changeset
|
940 |
} |
14385 | 941 |
} |
942 |
} |
|
943 |
} |
|
944 |
||
33736
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
945 |
|
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
946 |
log_debug(defaultmethods)("Created %d overpass methods", overpasses.length()); |
1b3950243443
8139564: Convert TraceDefaultMethods to Unified Logging
rprotacio
parents:
29871
diff
changeset
|
947 |
log_debug(defaultmethods)("Created %d default methods", defaults.length()); |
14385 | 948 |
|
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
949 |
if (overpasses.length() > 0) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
950 |
switchover_constant_pool(&bpool, klass, &overpasses, CHECK); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
951 |
merge_in_new_methods(klass, &overpasses, CHECK); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
952 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
953 |
if (defaults.length() > 0) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
954 |
create_default_methods(klass, &defaults, CHECK); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
955 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
956 |
} |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
957 |
|
54013
c5cf23055fcb
8219713: Reduce work in DefaultMethods::generate_default_methods
redestad
parents:
53432
diff
changeset
|
958 |
static void create_default_methods(InstanceKlass* klass, |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
959 |
GrowableArray<Method*>* new_methods, TRAPS) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
960 |
|
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
961 |
int new_size = new_methods->length(); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
962 |
Array<Method*>* total_default_methods = MetadataFactory::new_array<Method*>( |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
963 |
klass->class_loader_data(), new_size, NULL, CHECK); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
964 |
for (int index = 0; index < new_size; index++ ) { |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
965 |
total_default_methods->at_put(index, new_methods->at(index)); |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
966 |
} |
53432
1ec56532ae0c
8217424: Remove the idempotent parameter to Method::sort_methods
iklam
parents:
51444
diff
changeset
|
967 |
Method::sort_methods(total_default_methods, /*set_idnums=*/false); |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
968 |
|
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20300
diff
changeset
|
969 |
klass->set_default_methods(total_default_methods); |
14385 | 970 |
} |
971 |
||
972 |
static void sort_methods(GrowableArray<Method*>* methods) { |
|
973 |
// Note that this must sort using the same key as is used for sorting |
|
974 |
// methods in InstanceKlass. |
|
975 |
bool sorted = true; |
|
976 |
for (int i = methods->length() - 1; i > 0; --i) { |
|
977 |
for (int j = 0; j < i; ++j) { |
|
978 |
Method* m1 = methods->at(j); |
|
979 |
Method* m2 = methods->at(j + 1); |
|
980 |
if ((uintptr_t)m1->name() > (uintptr_t)m2->name()) { |
|
981 |
methods->at_put(j, m2); |
|
982 |
methods->at_put(j + 1, m1); |
|
983 |
sorted = false; |
|
984 |
} |
|
985 |
} |
|
986 |
if (sorted) break; |
|
987 |
sorted = true; |
|
988 |
} |
|
989 |
#ifdef ASSERT |
|
990 |
uintptr_t prev = 0; |
|
991 |
for (int i = 0; i < methods->length(); ++i) { |
|
992 |
Method* mh = methods->at(i); |
|
993 |
uintptr_t nv = (uintptr_t)mh->name(); |
|
994 |
assert(nv >= prev, "Incorrect overpass method ordering"); |
|
995 |
prev = nv; |
|
996 |
} |
|
997 |
#endif |
|
998 |
} |
|
999 |
||
1000 |
static void merge_in_new_methods(InstanceKlass* klass, |
|
1001 |
GrowableArray<Method*>* new_methods, TRAPS) { |
|
1002 |
||
1003 |
enum { ANNOTATIONS, PARAMETERS, DEFAULTS, NUM_ARRAYS }; |
|
1004 |
||
1005 |
Array<Method*>* original_methods = klass->methods(); |
|
1006 |
Array<int>* original_ordering = klass->method_ordering(); |
|
1007 |
Array<int>* merged_ordering = Universe::the_empty_int_array(); |
|
1008 |
||
1009 |
int new_size = klass->methods()->length() + new_methods->length(); |
|
1010 |
||
1011 |
Array<Method*>* merged_methods = MetadataFactory::new_array<Method*>( |
|
1012 |
klass->class_loader_data(), new_size, NULL, CHECK); |
|
15601 | 1013 |
|
22233
f0028de67b30
8030633: nsk/jvmti/RedefineClasses/StressRedefine failed invalid method ordering length on Solaris
coleenp
parents:
22232
diff
changeset
|
1014 |
// original_ordering might be empty if this class has no methods of its own |
58689
72e605a88500
8232030: HelloDynamic.java fails with latest Graal
ccheung
parents:
54847
diff
changeset
|
1015 |
if (JvmtiExport::can_maintain_original_method_order() || Arguments::is_dumping_archive()) { |
14385 | 1016 |
merged_ordering = MetadataFactory::new_array<int>( |
1017 |
klass->class_loader_data(), new_size, CHECK); |
|
1018 |
} |
|
1019 |
int method_order_index = klass->methods()->length(); |
|
1020 |
||
1021 |
sort_methods(new_methods); |
|
1022 |
||
1023 |
// Perform grand merge of existing methods and new methods |
|
1024 |
int orig_idx = 0; |
|
1025 |
int new_idx = 0; |
|
1026 |
||
1027 |
for (int i = 0; i < new_size; ++i) { |
|
1028 |
Method* orig_method = NULL; |
|
1029 |
Method* new_method = NULL; |
|
1030 |
if (orig_idx < original_methods->length()) { |
|
1031 |
orig_method = original_methods->at(orig_idx); |
|
1032 |
} |
|
1033 |
if (new_idx < new_methods->length()) { |
|
1034 |
new_method = new_methods->at(new_idx); |
|
1035 |
} |
|
1036 |
||
1037 |
if (orig_method != NULL && |
|
1038 |
(new_method == NULL || orig_method->name() < new_method->name())) { |
|
1039 |
merged_methods->at_put(i, orig_method); |
|
1040 |
original_methods->at_put(orig_idx, NULL); |
|
1041 |
if (merged_ordering->length() > 0) { |
|
22233
f0028de67b30
8030633: nsk/jvmti/RedefineClasses/StressRedefine failed invalid method ordering length on Solaris
coleenp
parents:
22232
diff
changeset
|
1042 |
assert(original_ordering != NULL && original_ordering->length() > 0, |
f0028de67b30
8030633: nsk/jvmti/RedefineClasses/StressRedefine failed invalid method ordering length on Solaris
coleenp
parents:
22232
diff
changeset
|
1043 |
"should have original order information for this method"); |
14385 | 1044 |
merged_ordering->at_put(i, original_ordering->at(orig_idx)); |
1045 |
} |
|
1046 |
++orig_idx; |
|
1047 |
} else { |
|
1048 |
merged_methods->at_put(i, new_method); |
|
1049 |
if (merged_ordering->length() > 0) { |
|
1050 |
merged_ordering->at_put(i, method_order_index++); |
|
1051 |
} |
|
1052 |
++new_idx; |
|
1053 |
} |
|
1054 |
// update idnum for new location |
|
1055 |
merged_methods->at(i)->set_method_idnum(i); |
|
29316
5287df8a8972
8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents:
27680
diff
changeset
|
1056 |
merged_methods->at(i)->set_orig_method_idnum(i); |
14385 | 1057 |
} |
1058 |
||
1059 |
// Verify correct order |
|
1060 |
#ifdef ASSERT |
|
1061 |
uintptr_t prev = 0; |
|
1062 |
for (int i = 0; i < merged_methods->length(); ++i) { |
|
1063 |
Method* mo = merged_methods->at(i); |
|
1064 |
uintptr_t nv = (uintptr_t)mo->name(); |
|
1065 |
assert(nv >= prev, "Incorrect method ordering"); |
|
1066 |
prev = nv; |
|
1067 |
} |
|
1068 |
#endif |
|
1069 |
||
1070 |
// Replace klass methods with new merged lists |
|
1071 |
klass->set_methods(merged_methods); |
|
17859
cda7f55ca4dc
8015436: compiler/ciReplay/TestSA.sh fails with assert() index is out of bounds
sspitsyn
parents:
16379
diff
changeset
|
1072 |
klass->set_initial_method_idnum(new_size); |
22233
f0028de67b30
8030633: nsk/jvmti/RedefineClasses/StressRedefine failed invalid method ordering length on Solaris
coleenp
parents:
22232
diff
changeset
|
1073 |
klass->set_method_ordering(merged_ordering); |
14385 | 1074 |
|
22233
f0028de67b30
8030633: nsk/jvmti/RedefineClasses/StressRedefine failed invalid method ordering length on Solaris
coleenp
parents:
22232
diff
changeset
|
1075 |
// Free metadata |
14385 | 1076 |
ClassLoaderData* cld = klass->class_loader_data(); |
22233
f0028de67b30
8030633: nsk/jvmti/RedefineClasses/StressRedefine failed invalid method ordering length on Solaris
coleenp
parents:
22232
diff
changeset
|
1077 |
if (original_methods->length() > 0) { |
21556
e75cd34a59e0
8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents:
21516
diff
changeset
|
1078 |
MetadataFactory::free_array(cld, original_methods); |
e75cd34a59e0
8027229: ICCE expected for >=2 maximally specific default methods.
acorn
parents:
21516
diff
changeset
|
1079 |
} |
22233
f0028de67b30
8030633: nsk/jvmti/RedefineClasses/StressRedefine failed invalid method ordering length on Solaris
coleenp
parents:
22232
diff
changeset
|
1080 |
if (original_ordering != NULL && original_ordering->length() > 0) { |
14385 | 1081 |
MetadataFactory::free_array(cld, original_ordering); |
1082 |
} |
|
1083 |
} |