Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions src/hotspot/share/jvmci/vmStructs_jvmci.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,8 @@
\
declare_constant(InstanceKlassFlags::_misc_has_nonstatic_concrete_methods) \
declare_constant(InstanceKlassFlags::_misc_declares_nonstatic_concrete_methods) \
declare_constant(KlassFlags::_misc_is_hidden_class) \
declare_constant(KlassFlags::_misc_is_value_based_class) \
declare_constant(KlassFlags::_misc_has_finalizer) \
declare_constant(KlassFlags::_misc_is_cloneable_fast) \
\
Expand Down
2 changes: 2 additions & 0 deletions src/hotspot/share/oops/klass.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ class Klass : public Metadata {
// Keep it away from the beginning of a Klass to avoid cacheline
// contention that may happen when a nearby object is modified.
AccessFlags _access_flags; // Access flags. The class/interface distinction is stored here.
// Some flags created by the JVM, not in the class file itself,
// are in _misc_flags below.

JFR_ONLY(DEFINE_TRACE_ID_FIELD;)

Expand Down