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