mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +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
|
@ -64,7 +64,8 @@ class ObjArrayKlass : public ArrayKlass {
|
|||
|
||||
// Dispatched operation
|
||||
bool can_be_primary_super_slow() const;
|
||||
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);
|
||||
DEBUG_ONLY(bool is_objArray_klass_slow() const { return true; })
|
||||
int oop_size(oop obj) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue