mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8200466: Revisit the setting of _transitive_interfaces in InstanceKlass
Delay the setting of _transitive_interfaces until after initialize_supers() in fill_instance_klass(). Reviewed-by: iklam, coleenp
This commit is contained in:
parent
7dc011ccca
commit
aedb6040c6
10 changed files with 35 additions and 18 deletions
|
@ -98,7 +98,8 @@ class ArrayKlass: public Klass {
|
|||
return static_cast<const ArrayKlass*>(k);
|
||||
}
|
||||
|
||||
GrowableArray<Klass*>* compute_secondary_supers(int num_extra_slots);
|
||||
GrowableArray<Klass*>* compute_secondary_supers(int num_extra_slots,
|
||||
Array<Klass*>* transitive_interfaces);
|
||||
bool compute_is_subtype_of(Klass* k);
|
||||
|
||||
// Sizing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue