8233497: Optimize default method generation by data structure reuse

Reviewed-by: lfoltan, coleenp, igerasim
This commit is contained in:
Claes Redestad 2019-11-19 23:22:27 +01:00
parent 9611320f69
commit f4a087036a

View file

@ -47,38 +47,6 @@
typedef enum { QUALIFIED, DISQUALIFIED } QualifiedState; typedef enum { QUALIFIED, DISQUALIFIED } QualifiedState;
// Because we use an iterative algorithm when iterating over the type
// hierarchy, we can't use traditional scoped objects which automatically do
// cleanup in the destructor when the scope is exited. PseudoScope (and
// PseudoScopeMark) provides a similar functionality, but for when you want a
// scoped object in non-stack memory (such as in resource memory, as we do
// here). You've just got to remember to call 'destroy()' on the scope when
// leaving it (and marks have to be explicitly added).
class PseudoScopeMark : public ResourceObj {
public:
virtual void destroy() = 0;
};
class PseudoScope : public ResourceObj {
private:
GrowableArray<PseudoScopeMark*> _marks;
public:
static PseudoScope* cast(void* data) {
return static_cast<PseudoScope*>(data);
}
void add_mark(PseudoScopeMark* psm) {
_marks.append(psm);
}
void destroy() {
for (int i = 0; i < _marks.length(); ++i) {
_marks.at(i)->destroy();
}
}
};
static void print_slot(outputStream* str, Symbol* name, Symbol* signature) { static void print_slot(outputStream* str, Symbol* name, Symbol* signature) {
str->print("%s%s", name->as_C_string(), signature->as_C_string()); str->print("%s%s", name->as_C_string(), signature->as_C_string());
} }
@ -108,13 +76,13 @@ static void print_method(outputStream* str, Method* mo, bool with_class=true) {
* *
* The ALGO class, must provide a visit() method, which each of which will be * The ALGO class, must provide a visit() method, which each of which will be
* called once for each node in the inheritance tree during the iteration. In * called once for each node in the inheritance tree during the iteration. In
* addition, it can provide a memory block via new_node_data(InstanceKlass*), * addition, it can provide a memory block via new_node_data(), which it can
* which it can use for node-specific storage (and access via the * use for node-specific storage (and access via the current_data() and
* current_data() and data_at_depth(int) methods). * data_at_depth(int) methods).
* *
* Bare minimum needed to be an ALGO class: * Bare minimum needed to be an ALGO class:
* class Algo : public HierarchyVisitor<Algo> { * class Algo : public HierarchyVisitor<Algo> {
* void* new_node_data(InstanceKlass* cls) { return NULL; } * void* new_node_data() { return NULL; }
* void free_node_data(void* data) { return; } * void free_node_data(void* data) { return; }
* bool visit() { return true; } * bool visit() { return true; }
* }; * };
@ -134,6 +102,12 @@ class HierarchyVisitor : StackObj {
: _class(cls), _super_was_visited(!visit_super), : _class(cls), _super_was_visited(!visit_super),
_interface_index(0), _algorithm_data(data) {} _interface_index(0), _algorithm_data(data) {}
void update(InstanceKlass* cls, void* data, bool visit_super) {
_class = cls;
_super_was_visited = !visit_super;
_interface_index = 0;
_algorithm_data = data;
}
int number_of_interfaces() { return _class->local_interfaces()->length(); } int number_of_interfaces() { return _class->local_interfaces()->length(); }
int interface_index() { return _interface_index; } int interface_index() { return _interface_index; }
void set_super_visited() { _super_was_visited = true; } void set_super_visited() { _super_was_visited = true; }
@ -155,19 +129,32 @@ class HierarchyVisitor : StackObj {
}; };
bool _visited_Object; bool _visited_Object;
GrowableArray<Node*> _path; GrowableArray<Node*> _path;
GrowableArray<Node*> _free_nodes;
Node* current_top() const { return _path.top(); } Node* current_top() const { return _path.top(); }
bool has_more_nodes() const { return !_path.is_empty(); } bool has_more_nodes() const { return _path.length() > 0; }
void push(InstanceKlass* cls, void* data) { void push(InstanceKlass* cls, ALGO* algo) {
assert(cls != NULL, "Requires a valid instance class"); assert(cls != NULL, "Requires a valid instance class");
Node* node = new Node(cls, data, has_super(cls));
if (cls == SystemDictionary::Object_klass()) { if (cls == SystemDictionary::Object_klass()) {
_visited_Object = true; _visited_Object = true;
} }
void* data = algo->new_node_data();
Node* node;
if (_free_nodes.is_empty()) { // Add a new node
node = new Node(cls, data, has_super(cls));
} else { // Reuse existing node and data
node = _free_nodes.pop();
node->update(cls, data, has_super(cls));
}
_path.push(node); _path.push(node);
} }
void pop() { _path.pop(); } void pop() {
Node* node = _path.pop();
// Make the node available for reuse
_free_nodes.push(node);
}
// Since the starting point can be an interface, we must ensure we catch // Since the starting point can be an interface, we must ensure we catch
// j.l.Object as the super once in those cases. The _visited_Object flag // j.l.Object as the super once in those cases. The _visited_Object flag
@ -183,6 +170,11 @@ class HierarchyVisitor : StackObj {
protected: protected:
// Resets the visitor
void reset() {
_visited_Object = false;
}
// Accessors available to the algorithm // Accessors available to the algorithm
int current_depth() const { return _path.length() - 1; } int current_depth() const { return _path.length() - 1; }
@ -199,14 +191,13 @@ class HierarchyVisitor : StackObj {
void* current_data() { return data_at_depth(0); } void* current_data() { return data_at_depth(0); }
public: public:
HierarchyVisitor() : _visited_Object(false), _path() {}
void run(InstanceKlass* root) { void run(InstanceKlass* root) {
ALGO* algo = static_cast<ALGO*>(this); ALGO* algo = static_cast<ALGO*>(this);
void* algo_data = algo->new_node_data(root); push(root, algo);
push(root, algo_data);
bool top_needs_visit = true; bool top_needs_visit = true;
do { do {
Node* top = current_top(); Node* top = current_top();
if (top_needs_visit) { if (top_needs_visit) {
@ -232,8 +223,7 @@ class HierarchyVisitor : StackObj {
top->increment_visited_interface(); top->increment_visited_interface();
} }
assert(next != NULL, "Otherwise we shouldn't be here"); assert(next != NULL, "Otherwise we shouldn't be here");
algo_data = algo->new_node_data(next); push(next, algo);
push(next, algo_data);
top_needs_visit = true; top_needs_visit = true;
} }
} while (has_more_nodes()); } while (has_more_nodes());
@ -251,7 +241,7 @@ class PrintHierarchy : public HierarchyVisitor<PrintHierarchy> {
return true; return true;
} }
void* new_node_data(InstanceKlass* cls) { return NULL; } void* new_node_data() { return NULL; }
void free_node_data(void* data) { return; } void free_node_data(void* data) { return; }
PrintHierarchy(outputStream* st = tty) : _st(st) {} PrintHierarchy(outputStream* st = tty) : _st(st) {}
@ -270,7 +260,7 @@ class KeepAliveRegistrar : public StackObj {
GrowableArray<ConstantPool*> _keep_alive; GrowableArray<ConstantPool*> _keep_alive;
public: public:
KeepAliveRegistrar(Thread* thread) : _thread(thread), _keep_alive(20) { KeepAliveRegistrar(Thread* thread) : _thread(thread), _keep_alive(6) {
assert(thread == Thread::current(), "Must be current thread"); assert(thread == Thread::current(), "Must be current thread");
} }
@ -299,7 +289,7 @@ class KeepAliveVisitor : public HierarchyVisitor<KeepAliveVisitor> {
public: public:
KeepAliveVisitor(KeepAliveRegistrar* registrar) : _registrar(registrar) {} KeepAliveVisitor(KeepAliveRegistrar* registrar) : _registrar(registrar) {}
void* new_node_data(InstanceKlass* cls) { return NULL; } void* new_node_data() { return NULL; }
void free_node_data(void* data) { return; } void free_node_data(void* data) { return; }
bool visit() { bool visit() {
@ -316,36 +306,41 @@ class KeepAliveVisitor : public HierarchyVisitor<KeepAliveVisitor> {
// from the root of hierarchy to the method that contains an interleaving // from the root of hierarchy to the method that contains an interleaving
// erased method defined in an interface. // erased method defined in an interface.
class MethodState {
public:
Method* _method;
QualifiedState _state;
MethodState() : _method(NULL), _state(DISQUALIFIED) {}
MethodState(Method* method, QualifiedState state) : _method(method), _state(state) {}
};
class MethodFamily : public ResourceObj { class MethodFamily : public ResourceObj {
private: private:
GrowableArray<Pair<Method*,QualifiedState> > _members; GrowableArray<MethodState> _members;
ResourceHashtable<Method*, int> _member_index;
Method* _selected_target; // Filled in later, if a unique target exists Method* _selected_target; // Filled in later, if a unique target exists
Symbol* _exception_message; // If no unique target is found Symbol* _exception_message; // If no unique target is found
Symbol* _exception_name; // If no unique target is found Symbol* _exception_name; // If no unique target is found
bool contains_method(Method* method) { MethodState* find_method(Method* method) {
int* lookup = _member_index.get(method); for (int i = 0; i < _members.length(); i++) {
return lookup != NULL; if (_members.at(i)._method == method) {
return &_members.at(i);
}
}
return NULL;
} }
void add_method(Method* method, QualifiedState state) { void add_method(Method* method, QualifiedState state) {
Pair<Method*,QualifiedState> entry(method, state); MethodState method_state(method, state);
_member_index.put(method, _members.length()); _members.append(method_state);
_members.append(entry);
}
void disqualify_method(Method* method) {
int* index = _member_index.get(method);
guarantee(index != NULL && *index >= 0 && *index < _members.length(), "bad index");
_members.at(*index).second = DISQUALIFIED;
} }
Symbol* generate_no_defaults_message(TRAPS) const; Symbol* generate_no_defaults_message(TRAPS) const;
Symbol* generate_method_message(Symbol *klass_name, Method* method, TRAPS) const; Symbol* generate_method_message(Symbol *klass_name, Method* method, TRAPS) const;
Symbol* generate_conflicts_message(GrowableArray<Method*>* methods, TRAPS) const; Symbol* generate_conflicts_message(GrowableArray<MethodState>* methods, TRAPS) const;
public: public:
@ -358,23 +353,15 @@ class MethodFamily : public ResourceObj {
} }
} }
void record_qualified_method(Method* m) { void record_method(Method* m, QualifiedState state) {
// If the method already exists in the set as qualified, this operation is // If not in the set, add it. If it's already in the set, then leave it
// redundant. If it already exists as disqualified, then we leave it as // as is if state is qualified, or set it to disqualified if state is
// disqualfied. Thus we only add to the set if it's not already in the // disqualified.
// set. MethodState* method_state = find_method(m);
if (!contains_method(m)) { if (method_state == NULL) {
add_method(m, QUALIFIED); add_method(m, state);
} } else if (state == DISQUALIFIED) {
} method_state->_state = DISQUALIFIED;
void record_disqualified_method(Method* m) {
// If not in the set, add it as disqualified. If it's already in the set,
// then set the state to disqualified no matter what the previous state was.
if (!contains_method(m)) {
add_method(m, DISQUALIFIED);
} else {
disqualify_method(m);
} }
} }
@ -386,30 +373,43 @@ class MethodFamily : public ResourceObj {
Symbol* get_exception_name() { return _exception_name; } Symbol* get_exception_name() { return _exception_name; }
// Either sets the target or the exception error message // Either sets the target or the exception error message
void determine_target(InstanceKlass* root, TRAPS) { void determine_target_or_set_exception_message(InstanceKlass* root, TRAPS) {
if (has_target() || throws_exception()) { if (has_target() || throws_exception()) {
return; return;
} }
// Qualified methods are maximally-specific methods // Qualified methods are maximally-specific methods
// These include public, instance concrete (=default) and abstract methods // These include public, instance concrete (=default) and abstract methods
GrowableArray<Method*> qualified_methods;
int num_defaults = 0; int num_defaults = 0;
int default_index = -1; int default_index = -1;
int qualified_index = -1; for (int i = 0; i < _members.length(); i++) {
for (int i = 0; i < _members.length(); ++i) { MethodState &member = _members.at(i);
Pair<Method*,QualifiedState> entry = _members.at(i); if (member._state == QUALIFIED) {
if (entry.second == QUALIFIED) { if (member._method->is_default_method()) {
qualified_methods.append(entry.first);
qualified_index++;
if (entry.first->is_default_method()) {
num_defaults++; num_defaults++;
default_index = qualified_index; default_index = i;
} }
} }
} }
if (num_defaults == 1) {
assert(_members.at(default_index)._state == QUALIFIED, "");
_selected_target = _members.at(default_index)._method;
} else {
generate_and_set_exception_message(root, num_defaults, default_index, CHECK);
}
}
void generate_and_set_exception_message(InstanceKlass* root, int num_defaults, int default_index, TRAPS) {
assert(num_defaults != 1, "invariant - should've been handled calling method");
GrowableArray<Method*> qualified_methods;
for (int i = 0; i < _members.length(); i++) {
MethodState& member = _members.at(i);
if (member._state == QUALIFIED) {
qualified_methods.push(member._method);
}
}
if (num_defaults == 0) { if (num_defaults == 0) {
// If the root klass has a static method with matching name and signature // If the root klass has a static method with matching name and signature
// then do not generate an overpass method because it will hide the // then do not generate an overpass method because it will hide the
@ -421,13 +421,8 @@ class MethodFamily : public ResourceObj {
_exception_message = generate_method_message(root->name(), qualified_methods.at(0), CHECK); _exception_message = generate_method_message(root->name(), qualified_methods.at(0), CHECK);
} }
_exception_name = vmSymbols::java_lang_AbstractMethodError(); _exception_name = vmSymbols::java_lang_AbstractMethodError();
} else {
// If only one qualified method is default, select that _exception_message = generate_conflicts_message(&_members,CHECK);
} else if (num_defaults == 1) {
_selected_target = qualified_methods.at(default_index);
} else if (num_defaults > 1) {
_exception_message = generate_conflicts_message(&qualified_methods,CHECK);
_exception_name = vmSymbols::java_lang_IncompatibleClassChangeError(); _exception_name = vmSymbols::java_lang_IncompatibleClassChangeError();
LogTarget(Debug, defaultmethods) lt; LogTarget(Debug, defaultmethods) lt;
if (lt.is_enabled()) { if (lt.is_enabled()) {
@ -475,23 +470,23 @@ Symbol* MethodFamily::generate_method_message(Symbol *klass_name, Method* method
return SymbolTable::new_symbol(ss.base(), (int)ss.size()); return SymbolTable::new_symbol(ss.base(), (int)ss.size());
} }
Symbol* MethodFamily::generate_conflicts_message(GrowableArray<Method*>* methods, TRAPS) const { Symbol* MethodFamily::generate_conflicts_message(GrowableArray<MethodState>* methods, TRAPS) const {
stringStream ss; stringStream ss;
ss.print("Conflicting default methods:"); ss.print("Conflicting default methods:");
for (int i = 0; i < methods->length(); ++i) { for (int i = 0; i < methods->length(); ++i) {
Method* method = methods->at(i); Method *method = methods->at(i)._method;
Symbol* klass = method->klass_name(); Symbol *klass = method->klass_name();
Symbol* name = method->name(); Symbol *name = method->name();
ss.print(" "); ss.print(" ");
ss.write((const char*)klass->bytes(), klass->utf8_length()); ss.write((const char*) klass->bytes(), klass->utf8_length());
ss.print("."); ss.print(".");
ss.write((const char*)name->bytes(), name->utf8_length()); ss.write((const char*) name->bytes(), name->utf8_length());
} }
return SymbolTable::new_symbol(ss.base(), (int)ss.size()); return SymbolTable::new_symbol(ss.base(), (int)ss.size());
} }
class StateRestorer; class StateRestorerScope;
// StatefulMethodFamily is a wrapper around a MethodFamily that maintains the // StatefulMethodFamily is a wrapper around a MethodFamily that maintains the
// qualification state during hierarchy visitation, and applies that state // qualification state during hierarchy visitation, and applies that state
@ -517,32 +512,72 @@ class StatefulMethodFamily : public ResourceObj {
MethodFamily* get_method_family() { return &_method_family; } MethodFamily* get_method_family() { return &_method_family; }
StateRestorer* record_method_and_dq_further(Method* mo); void record_method_and_dq_further(StateRestorerScope* scope, Method* mo);
}; };
class StateRestorer : public PseudoScopeMark { // Because we use an iterative algorithm when iterating over the type
private: // hierarchy, we can't use traditional scoped objects which automatically do
// cleanup in the destructor when the scope is exited. StateRestorerScope (and
// StateRestorer) provides a similar functionality, but for when you want a
// scoped object in non-stack memory (such as in resource memory, as we do
// here). You've just got to remember to call 'restore_state()' on the scope when
// leaving it (and marks have to be explicitly added). The scope is reusable after
// 'restore_state()' has been called.
class StateRestorer : public ResourceObj {
public:
StatefulMethodFamily* _method; StatefulMethodFamily* _method;
QualifiedState _state_to_restore; QualifiedState _state_to_restore;
public:
StateRestorer(StatefulMethodFamily* dm, QualifiedState state) StateRestorer() : _method(NULL), _state_to_restore(DISQUALIFIED) {}
: _method(dm), _state_to_restore(state) {}
~StateRestorer() { destroy(); }
void restore_state() { _method->set_qualification_state(_state_to_restore); } void restore_state() { _method->set_qualification_state(_state_to_restore); }
virtual void destroy() { restore_state(); }
}; };
StateRestorer* StatefulMethodFamily::record_method_and_dq_further(Method* mo) { class StateRestorerScope : public ResourceObj {
StateRestorer* mark = new StateRestorer(this, _qualification_state); private:
if (_qualification_state == QUALIFIED) { GrowableArray<StateRestorer*> _marks;
_method_family.record_qualified_method(mo); GrowableArray<StateRestorer*>* _free_list; // Shared between scopes
} else { public:
_method_family.record_disqualified_method(mo); StateRestorerScope(GrowableArray<StateRestorer*>* free_list) : _marks(), _free_list(free_list) {}
static StateRestorerScope* cast(void* data) {
return static_cast<StateRestorerScope*>(data);
} }
void mark(StatefulMethodFamily* family, QualifiedState qualification_state) {
StateRestorer* restorer;
if (!_free_list->is_empty()) {
restorer = _free_list->pop();
} else {
restorer = new StateRestorer();
}
restorer->_method = family;
restorer->_state_to_restore = qualification_state;
_marks.append(restorer);
}
#ifdef ASSERT
bool is_empty() {
return _marks.is_empty();
}
#endif
void restore_state() {
while(!_marks.is_empty()) {
StateRestorer* restorer = _marks.pop();
restorer->restore_state();
_free_list->push(restorer);
}
}
};
void StatefulMethodFamily::record_method_and_dq_further(StateRestorerScope* scope, Method* mo) {
scope->mark(this, _qualification_state);
_method_family.record_method(mo, _qualification_state);
// Everything found "above"??? this method in the hierarchy walk is set to // Everything found "above"??? this method in the hierarchy walk is set to
// disqualified // disqualified
set_qualification_state(DISQUALIFIED); set_qualification_state(DISQUALIFIED);
return mark;
} }
// Represents a location corresponding to a vtable slot for methods that // Represents a location corresponding to a vtable slot for methods that
@ -660,11 +695,19 @@ class FindMethodsByErasedSig : public HierarchyVisitor<FindMethodsByErasedSig> {
Symbol* _method_signature; Symbol* _method_signature;
StatefulMethodFamily* _family; StatefulMethodFamily* _family;
bool _cur_class_is_interface; bool _cur_class_is_interface;
// Free lists, used as an optimization
GrowableArray<StateRestorerScope*> _free_scopes;
GrowableArray<StateRestorer*> _free_restorers;
public: public:
FindMethodsByErasedSig(Symbol* name, Symbol* signature, bool is_interf) : FindMethodsByErasedSig() : _free_scopes(6), _free_restorers(6) {};
_method_name(name), _method_signature(signature), _family(NULL),
_cur_class_is_interface(is_interf) {} void prepare(Symbol* name, Symbol* signature, bool is_interf) {
reset();
_method_name = name;
_method_signature = signature;
_family = NULL;
_cur_class_is_interface = is_interf;
}
void get_discovered_family(MethodFamily** family) { void get_discovered_family(MethodFamily** family) {
if (_family != NULL) { if (_family != NULL) {
@ -674,15 +717,25 @@ class FindMethodsByErasedSig : public HierarchyVisitor<FindMethodsByErasedSig> {
} }
} }
void* new_node_data(InstanceKlass* cls) { return new PseudoScope(); } void* new_node_data() {
if (!_free_scopes.is_empty()) {
StateRestorerScope* free_scope = _free_scopes.pop();
assert(free_scope->is_empty(), "StateRestorerScope::_marks array not empty");
return free_scope;
}
return new StateRestorerScope(&_free_restorers);
}
void free_node_data(void* node_data) { void free_node_data(void* node_data) {
PseudoScope::cast(node_data)->destroy(); StateRestorerScope* scope = StateRestorerScope::cast(node_data);
scope->restore_state();
// Reuse scopes
_free_scopes.push(scope);
} }
// Find all methods on this hierarchy that match this // Find all methods on this hierarchy that match this
// method's erased (name, signature) // method's erased (name, signature)
bool visit() { bool visit() {
PseudoScope* scope = PseudoScope::cast(current_data()); StateRestorerScope* scope = StateRestorerScope::cast(current_data());
InstanceKlass* iklass = current_class(); InstanceKlass* iklass = current_class();
Method* m = iklass->find_method(_method_name, _method_signature); Method* m = iklass->find_method(_method_name, _method_signature);
@ -702,8 +755,7 @@ class FindMethodsByErasedSig : public HierarchyVisitor<FindMethodsByErasedSig> {
} }
if (iklass->is_interface()) { if (iklass->is_interface()) {
StateRestorer* restorer = _family->record_method_and_dq_further(m); _family->record_method_and_dq_further(scope, m);
scope->add_mark(restorer);
} else { } else {
// This is the rule that methods in classes "win" (bad word) over // This is the rule that methods in classes "win" (bad word) over
// methods in interfaces. This works because of single inheritance. // methods in interfaces. This works because of single inheritance.
@ -724,16 +776,20 @@ static void create_defaults_and_exceptions(
GrowableArray<EmptyVtableSlot*>* slots, InstanceKlass* klass, TRAPS); GrowableArray<EmptyVtableSlot*>* slots, InstanceKlass* klass, TRAPS);
static void generate_erased_defaults( static void generate_erased_defaults(
FindMethodsByErasedSig* visitor,
InstanceKlass* klass, EmptyVtableSlot* slot, bool is_intf, TRAPS) { InstanceKlass* klass, EmptyVtableSlot* slot, bool is_intf, TRAPS) {
// the visitor needs to be initialized or re-initialized before use
// - this facilitates reusing the same visitor instance on multiple
// generation passes as an optimization
visitor->prepare(slot->name(), slot->signature(), is_intf);
// sets up a set of methods with the same exact erased signature // sets up a set of methods with the same exact erased signature
FindMethodsByErasedSig visitor(slot->name(), slot->signature(), is_intf); visitor->run(klass);
visitor.run(klass);
MethodFamily* family; MethodFamily* family;
visitor.get_discovered_family(&family); visitor->get_discovered_family(&family);
if (family != NULL) { if (family != NULL) {
family->determine_target(klass, CHECK); family->determine_target_or_set_exception_message(klass, CHECK);
slot->bind_family(family); slot->bind_family(family);
} }
} }
@ -788,6 +844,7 @@ void DefaultMethods::generate_default_methods(
find_empty_vtable_slots(&empty_slots, klass, mirandas, CHECK); find_empty_vtable_slots(&empty_slots, klass, mirandas, CHECK);
if (empty_slots.length() > 0) { if (empty_slots.length() > 0) {
FindMethodsByErasedSig findMethodsByErasedSig;
for (int i = 0; i < empty_slots.length(); ++i) { for (int i = 0; i < empty_slots.length(); ++i) {
EmptyVtableSlot* slot = empty_slots.at(i); EmptyVtableSlot* slot = empty_slots.at(i);
LogTarget(Debug, defaultmethods) lt; LogTarget(Debug, defaultmethods) lt;
@ -798,7 +855,7 @@ void DefaultMethods::generate_default_methods(
slot->print_on(&ls); slot->print_on(&ls);
ls.cr(); ls.cr();
} }
generate_erased_defaults(klass, slot, klass->is_interface(), CHECK); generate_erased_defaults(&findMethodsByErasedSig, klass, slot, klass->is_interface(), CHECK);
} }
log_debug(defaultmethods)("Creating defaults and overpasses..."); log_debug(defaultmethods)("Creating defaults and overpasses...");
create_defaults_and_exceptions(&empty_slots, klass, CHECK); create_defaults_and_exceptions(&empty_slots, klass, CHECK);
@ -898,12 +955,12 @@ static void create_defaults_and_exceptions(GrowableArray<EmptyVtableSlot*>* slot
GrowableArray<Method*> defaults; GrowableArray<Method*> defaults;
BytecodeConstantPool bpool(klass->constants()); BytecodeConstantPool bpool(klass->constants());
BytecodeBuffer* buffer = NULL; // Lazily create a reusable buffer
for (int i = 0; i < slots->length(); ++i) { for (int i = 0; i < slots->length(); ++i) {
EmptyVtableSlot* slot = slots->at(i); EmptyVtableSlot* slot = slots->at(i);
if (slot->is_bound()) { if (slot->is_bound()) {
MethodFamily* method = slot->get_binding(); MethodFamily* method = slot->get_binding();
BytecodeBuffer buffer;
LogTarget(Debug, defaultmethods) lt; LogTarget(Debug, defaultmethods) lt;
if (lt.is_enabled()) { if (lt.is_enabled()) {
@ -926,11 +983,16 @@ static void create_defaults_and_exceptions(GrowableArray<EmptyVtableSlot*>* slot
defaults.push(selected); defaults.push(selected);
} }
} else if (method->throws_exception()) { } else if (method->throws_exception()) {
int max_stack = assemble_method_error(&bpool, &buffer, if (buffer == NULL) {
buffer = new BytecodeBuffer();
} else {
buffer->clear();
}
int max_stack = assemble_method_error(&bpool, buffer,
method->get_exception_name(), method->get_exception_message(), CHECK); method->get_exception_name(), method->get_exception_message(), CHECK);
AccessFlags flags = accessFlags_from( AccessFlags flags = accessFlags_from(
JVM_ACC_PUBLIC | JVM_ACC_SYNTHETIC | JVM_ACC_BRIDGE); JVM_ACC_PUBLIC | JVM_ACC_SYNTHETIC | JVM_ACC_BRIDGE);
Method* m = new_method(&bpool, &buffer, slot->name(), slot->signature(), Method* m = new_method(&bpool, buffer, slot->name(), slot->signature(),
flags, max_stack, slot->size_of_parameters(), flags, max_stack, slot->size_of_parameters(),
ConstMethod::OVERPASS, CHECK); ConstMethod::OVERPASS, CHECK);
// We push to the methods list: // We push to the methods list: