Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8334220: Optimize Klass layout after JDK-8180450 #19958

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/hotspot/share/oops/klass.hpp
Original file line number Diff line number Diff line change
@@ -159,11 +159,6 @@ class Klass : public Metadata {
// Provide access the corresponding instance java.lang.ClassLoader.
ClassLoaderData* _class_loader_data;

// Bitmap and hash code used by hashed secondary supers.
uintx _bitmap;
uint8_t _hash_slot;

static uint8_t compute_hash_slot(Symbol* s);

int _vtable_len; // vtable length. This field may be read very often when we
// have lots of itable dispatches (e.g., lambdas and streams).
@@ -173,6 +168,10 @@ class Klass : public Metadata {

JFR_ONLY(DEFINE_TRACE_ID_FIELD;)

// Bitmap and hash code used by hashed secondary supers.
uintx _bitmap;
uint8_t _hash_slot;

private:
// This is an index into FileMapHeader::_shared_path_table[], to
// associate this class with the JAR file where it's loaded from during
@@ -392,6 +391,7 @@ class Klass : public Metadata {
void set_next_sibling(Klass* s);

private:
static uint8_t compute_hash_slot(Symbol* s);
static void hash_insert(Klass* klass, GrowableArray<Klass*>* secondaries, uintx& bitmap);
static uintx hash_secondary_supers(Array<Klass*>* secondaries, bool rewrite);